guix-commits
[Top][All Lists]
Advanced

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

97/107: gnu: gthumb: Update to 3.10.0.


From: guix-commits
Subject: 97/107: gnu: gthumb: Update to 3.10.0.
Date: Tue, 12 May 2020 10:53:36 -0400 (EDT)

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

commit c61af1b92846caf285bb48f2d8ecaf3e50c011d3
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 79814d5..dd25fe0 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -9556,7 +9556,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/"
@@ -9564,7 +9564,7 @@ functionality.")
                                   "gthumb-" version ".tar.xz"))
               (sha256
                (base32
-                "15wqks35ks5dm7zj046dfd45vvrilan2ayfy2sxiprv7q74cip2q"))))
+                "0j7cxp4hhkvkckyvll6pmqkv5rwrknlzq9j1my0grb01b8wzhw9y"))))
     (build-system meson-build-system)
     (arguments
      `(#:glib-or-gtk? #t
@@ -9575,11 +9575,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]