guix-commits
[Top][All Lists]
Advanced

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

98/108: gnu: gthumb: Update to 3.10.0.


From: guix-commits
Subject: 98/108: gnu: gthumb: Update to 3.10.0.
Date: Sat, 25 Apr 2020 15:23:05 -0400 (EDT)

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

commit fd52777d8f7dbe497f14da3d6e3f87b2a4338406
Author: Kei Kebreau <address@hidden>
AuthorDate: Thu Apr 23 18:59:31 2020 -0400

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

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 2770a7f..6422de6 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -9542,7 +9542,7 @@ functionality.")
 (define-public gthumb
   (package
     (name "gthumb")
-    (version "3.8.2")
+    (version "3.10.0")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnome/sources/gthumb/"
@@ -9550,7 +9550,7 @@ functionality.")
                                   "gthumb-" version ".tar.xz"))
               (sha256
                (base32
-                "15wqks35ks5dm7zj046dfd45vvrilan2ayfy2sxiprv7q74cip2q"))))
+                "0j7cxp4hhkvkckyvll6pmqkv5rwrknlzq9j1my0grb01b8wzhw9y"))))
     (build-system meson-build-system)
     (arguments
      `(#:glib-or-gtk? #t
@@ -9561,11 +9561,18 @@ functionality.")
                             "/lib/gthumb/extensions")
              (string-append "-Dcpp_link_args=-Wl,-rpath="
                             (assoc-ref %outputs "out")
-                            "/lib/gthumb/extensions"))))
+                            "/lib/gthumb/extensions"))
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'skip-gtk-update-icon-cache
+           ;; Don't create 'icon-theme.cache'.
+           (lambda _
+             (substitute* "postinstall.py"
+               (("gtk-update-icon-cache") "true"))
+             #t)))))
     (native-inputs
      `(("pkg-config" ,pkg-config)
        ("glib:bin" ,glib "bin")                   ; for glib-compile-resources
-       ("gtk+:bin" ,gtk+ "bin")                   ; for gtk-update-icon-cache
        ("desktop-file-utils" ,desktop-file-utils) ; for update-desktop-database
        ("intltool" ,intltool)
        ("itstool" ,itstool)))



reply via email to

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