[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
25/181: gnu: gnome-settings-daemon: Update to 42.2.
From: |
guix-commits |
Subject: |
25/181: gnu: gnome-settings-daemon: Update to 42.2. |
Date: |
Tue, 13 Sep 2022 02:25:11 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit 587829ae26922e9c70d6a388b18c65c78909850e
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Mon Aug 22 21:31:35 2022 -0400
gnu: gnome-settings-daemon: Update to 42.2.
* gnu/packages/gnome.scm (gnome-settings-daemon): Update to 42.2.
[arguments]: Use gexps.
[phases]{set-baobab-file-name}: Use search-input-file.
[native-inputs]: Delete labels. Replace intltool with gettext-minimal. Add
perl.
[inputs]: Sort lexicographically. Replace gsettings-desktop-schemas with
gsettings-desktop-schemas-next, libgweather with libgweather4-with-libsoup2.
---
gnu/packages/gnome.scm | 103 ++++++++++++++++++++++++-------------------------
1 file changed, 50 insertions(+), 53 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 41d84e2fba..22c7c435aa 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -5664,7 +5664,7 @@ services for numerous locations.")
(define-public gnome-settings-daemon
(package
(name "gnome-settings-daemon")
- (version "41.0")
+ (version "42.2")
(source
(origin
(method url-fetch)
@@ -5673,71 +5673,68 @@ services for numerous locations.")
name "-" version ".tar.xz"))
(sha256
(base32
- "111qcvlqjpasnswdniy5n53wyrs1y7a91qx1w4nsppnizdhn7jp6"))
+ "005b1dvrfcyr6n4srl6c0lzr95c18prps4xm1lf2ghcfm8a9fi4w"))
(patches (search-patches "gnome-settings-daemon-gc.patch"))))
(build-system meson-build-system)
(arguments
- `(#:glib-or-gtk? #t
- #:meson ,meson-0.60
- #:configure-flags
- (list (string-append "-Dudev_dir="
- (assoc-ref %outputs "out") "/lib/udev")
- "-Dsystemd=false"
- ;; Otherwise, the RUNPATH will lack the final path component.
- (string-append "-Dc_link_args=-Wl,-rpath="
- (assoc-ref %outputs "out")
- "/lib/gnome-settings-daemon-3.0"))
-
- #:phases (modify-phases %standard-phases
- (add-before 'configure 'set-baobab-file-name
- (lambda* (#:key inputs #:allow-other-keys)
- ;; Hard-code the file name of Baobab instead of looking
- ;; it up in $PATH. This ensures users get the "Examine"
- ;; button in the low disk space notification of GDM even
- ;; if they don't have GNOME in their main profile.
- (let ((baobab (assoc-ref inputs "baobab")))
- (substitute* "plugins/housekeeping/gsd-disk-space.c"
- (("g_find_program_in_path \\(DISK_SPACE_ANALYZER\\)")
- (string-append "g_strdup (\"" baobab
- "/bin/baobab\")")))))))
-
- ;; Color management test can't reach the colord system service.
- #:tests? #f))
+ (list
+ #:glib-or-gtk? #t
+ #:configure-flags
+ #~(list (string-append "-Dudev_dir=" #$output "/lib/udev")
+ "-Dsystemd=false"
+ ;; Otherwise, the RUNPATH will lack the final path component.
+ (string-append "-Dc_link_args=-Wl,-rpath=" #$output
+ "/lib/gnome-settings-daemon-3.0"))
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'configure 'set-baobab-file-name
+ (lambda* (#:key inputs #:allow-other-keys)
+ ;; Hard-code the file name of Baobab instead of looking
+ ;; it up in $PATH. This ensures users get the "Examine"
+ ;; button in the low disk space notification of GDM even
+ ;; if they don't have GNOME in their main profile.
+ (substitute* "plugins/housekeeping/gsd-disk-space.c"
+ (("g_find_program_in_path \\(DISK_SPACE_ANALYZER\\)")
+ (format #f "g_strdup (~s)"
+ (search-input-file inputs "bin/baobab")))))))
+ ;; Color management test can't reach the colord system service.
+ #:tests? #f))
(native-inputs
- `(("glib:bin" ,glib "bin") ; for glib-mkenums
- ("pkg-config" ,pkg-config)
- ("intltool" ,intltool)
- ("xsltproc" ,libxslt)
- ("libxml2" ,libxml2) ;for XML_CATALOG_FILES
- ("docbook-xml" ,docbook-xml-4.2)
- ("docbook-xsl" ,docbook-xsl)))
+ (list docbook-xml-4.2
+ docbook-xsl
+ gettext-minimal
+ `(,glib "bin") ;for glib-mkenums
+ libxml2 ;for XML_CATALOG_FILES
+ libxslt
+ perl
+ pkg-config))
(inputs
(list alsa-lib
baobab
colord
- libgudev
- upower
- polkit
- pulseaudio
- libcanberra
- libx11
- libxtst
- lcms
- libnotify
+ cups
+ gcr
geoclue
geocode-glib-with-libsoup2
- libgweather
gnome-desktop
- nss
- cups
- gsettings-desktop-schemas
- libwacom
+ gsettings-desktop-schemas-next
+ lcms
+ libcanberra
+ libgudev
+ libgweather4-with-libsoup2
+ libnotify
(librsvg-for-system)
- xf86-input-wacom
- wayland
+ libwacom
+ libx11
+ libxtst
+ modem-manager
network-manager
- gcr
- modem-manager))
+ nss
+ polkit
+ pulseaudio
+ upower
+ wayland
+ xf86-input-wacom))
(home-page "https://www.gnome.org")
(synopsis "GNOME settings daemon")
(description
- 07/181: gnu: libdazzle: Update to 3.44.0., (continued)
- 07/181: gnu: libdazzle: Update to 3.44.0., guix-commits, 2022/09/13
- 09/181: gnu: egl-wayland: Update to 1.1.10., guix-commits, 2022/09/13
- 12/181: gnu: gtk: Update to 4.8.0 and use gexps., guix-commits, 2022/09/13
- 13/181: gnu: gcr: Update to 3.41.1, delete trailing #t and input labels., guix-commits, 2022/09/13
- 11/181: gnu: Add gi-docgen., guix-commits, 2022/09/13
- 18/181: gnu: libqmi: Update to 1.30.8., guix-commits, 2022/09/13
- 16/181: gnu: libhandy: Update to 1.7.90., guix-commits, 2022/09/13
- 19/181: gnu: modem-manager: Update to 1.18.10 and remove input labels., guix-commits, 2022/09/13
- 20/181: gnu: geoclue: Update to 2.6.0 and remove input labels., guix-commits, 2022/09/13
- 24/181: gnu: Add gsettings-desktop-schemas-next., guix-commits, 2022/09/13
- 25/181: gnu: gnome-settings-daemon: Update to 42.2.,
guix-commits <=
- 21/181: gnu: geocode-glib: Update to 3.26.4 and build with libsoup 3., guix-commits, 2022/09/13
- 23/181: gnu: network-manager: Update to 1.40.0, use gexps and remove input labels., guix-commits, 2022/09/13
- 26/181: gnu: umockdev: Update to 0.17.13., guix-commits, 2022/09/13
- 14/181: gnu: Add python-libevdev., guix-commits, 2022/09/13
- 38/181: gnu: accountsservice: Propagate glib., guix-commits, 2022/09/13
- 32/181: gnu: ibus: Update to 1.5.27, use gexps and remove input labels., guix-commits, 2022/09/13
- 37/181: gnu: mutter: Update to 42.4, use gexps and remove input labels., guix-commits, 2022/09/13
- 33/181: gnu: evolution-data-server: Update to 3.44.4 and remove input labels., guix-commits, 2022/09/13
- 40/181: gnu: gdm: Use gexps and new style inputs., guix-commits, 2022/09/13
- 46/181: gnu: gjs: Update to 1.72.2., guix-commits, 2022/09/13