guix-commits
[Top][All Lists]
Advanced

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

14/17: gnu: qiv: Update to 2.3.2.


From: guix-commits
Subject: 14/17: gnu: qiv: Update to 2.3.2.
Date: Wed, 3 Nov 2021 06:20:49 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 57b7e1cfd070c1fc58eccb8c8b35700cfcd7b127
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Wed Nov 3 04:05:06 2021 +0100

    gnu: qiv: Update to 2.3.2.
    
    * gnu/packages/image-viewers.scm (qiv): Update to 2.3.2.
    [source]: Add a snippet.
    [arguments]: Don't explicitly return #t from phases.
---
 gnu/packages/image-viewers.scm | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/image-viewers.scm b/gnu/packages/image-viewers.scm
index 4f87b63..477f681 100644
--- a/gnu/packages/image-viewers.scm
+++ b/gnu/packages/image-viewers.scm
@@ -808,14 +808,21 @@ with tiling window managers.  Features include:
 (define-public qiv
   (package
     (name "qiv")
-    (version "2.3.1")
+    (version "2.3.2")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "http://spiegl.de/qiv/download/qiv-";
                            version ".tgz"))
        (sha256
-        (base32 "1rlf5h67vhj7n1y7jqkm9k115nfnzpwngj3kzqsi2lg676srclv7"))))
+        (base32 "1mc0f2nnas4q0d7zc9r6g4z93i32xlx0p9hl4fn5zkyml24a1q28"))
+       (modules '((guix build utils)))
+       (snippet
+        '(begin
+           ;; Fix a typo.  This can probably be removed on the next update.
+           (substitute* "Makefile"
+             (("\\$\\(PREFIX\\)/man")
+              "$(PREFIX)/share/man"))))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)
@@ -846,8 +853,7 @@ with tiling window managers.  Features include:
              ;; There must be a running X server and make install doesn't 
start one.
              ;; Therefore we must do it.
              (system "Xvfb :1 &")
-             (setenv "DISPLAY" ":1")
-             #t)))
+             (setenv "DISPLAY" ":1"))))
        #:tests? #f                      ; there is no check target
        #:make-flags
        (list



reply via email to

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