guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

30/60: gnu: gnome-control-center: Update to 3.34.2.


From: guix-commits
Subject: 30/60: gnu: gnome-control-center: Update to 3.34.2.
Date: Sat, 25 Jan 2020 14:47:09 -0500 (EST)

kkebreau pushed a commit to branch wip-gnome3.34
in repository guix.

commit 028bedf71fb008574a46672b43bbf55cff0a91b7
Author: Kei Kebreau <address@hidden>
AuthorDate: Tue Dec 17 18:48:17 2019 -0500

    gnu: gnome-control-center: Update to 3.34.2.
    
    * gnu/packages/gnome.scm (gnome-control-center): Update to 3.34.2.
    [arguments]: Add 'skip-gtk-update-icon-cache' phase.
    [native-inputs]: Remove gtk+:bin.
---
 gnu/packages/gnome.scm | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index a8fbc04..85f6aa3 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -7061,7 +7061,7 @@ devices using the GNOME desktop.")
 (define-public gnome-control-center
   (package
     (name "gnome-control-center")
-    (version "3.32.2")
+    (version "3.34.2")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnome/sources/" name "/"
@@ -7069,7 +7069,7 @@ devices using the GNOME desktop.")
                                   name "-" version ".tar.xz"))
               (sha256
                (base32
-                "03np0mhfl9kkdw4cb711pda0cli9zgh2bq2gqn2zwbdi3qnhk9gs"))))
+                "054igagvmyzpaa5nwzz98gv7bk7l5dwp6g813707132si3szlpx8"))))
     (build-system meson-build-system)
     (arguments
      '(#:glib-or-gtk? #t
@@ -7110,10 +7110,15 @@ devices using the GNOME desktop.")
                  (("DATADIR \"/gnome/gnome-version.xml\"")
                   (string-append "\"" gnome-desktop
                                  "/share/gnome/gnome-version.xml\"")))
-               #t))))))
+               #t)))
+         (add-after 'unpack 'skip-gtk-update-icon-cache
+           ;; Don't create 'icon-theme.cache'.
+           (lambda _
+             (substitute* "build-aux/meson/meson_post_install.py"
+               (("gtk-update-icon-cache") (which "true")))
+             #t)))))
     (native-inputs
      `(("glib:bin" ,glib "bin") ; for glib-mkenums, etc.
-       ("gtk+:bin" ,gtk+ "bin") ; for gtk-update-icon-cache
        ("intltool" ,intltool)
        ("pkg-config" ,pkg-config)
        ("xsltproc" ,libxslt)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]