guix-commits
[Top][All Lists]
Advanced

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

02/07: gnu: pigz: Update to 2.7.


From: guix-commits
Subject: 02/07: gnu: pigz: Update to 2.7.
Date: Sat, 21 May 2022 21:39:21 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit b247d7a46979c4ff63867de9243a186b6adaca7e
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun May 15 02:00:02 2022 +0200

    gnu: pigz: Update to 2.7.
    
    * gnu/packages/compression.scm (pigz): Update to 2.7.
    [arguments]: Run ‘make test’ rather than ‘tests’.  The latter tests
    the NOTHREAD build that's never installed, and broken.
    [native-inputs]: Add which.
---
 gnu/packages/compression.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index 123be4b2f1..778cf55a51 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -980,14 +980,14 @@ byte-for-byte identical output.")
 (define-public pigz
   (package
     (name "pigz")
-    (version "2.6")
+    (version "2.7")
     (source (origin
               (method url-fetch)
               (uri (string-append "http://zlib.net/pigz/";
                                   name "-" version ".tar.gz"))
               (sha256
                (base32
-                "0z9avc4mifwcpj3qdsf9m2rjw9jx03b2r9pj0c4xgla9fh6ppv9f"))))
+                "01y7n7lafp6maqnp4jrmasawnv67najh1bd7gjrmv3d08h1ydjdl"))))
     (build-system gnu-build-system)
     (arguments
      `(#:phases
@@ -1004,7 +1004,8 @@ byte-for-byte identical output.")
                       #t))))
        #:make-flags
        (list ,(string-append "CC=" (cc-for-target)))
-       #:test-target "tests"))
+       #:test-target "test"))
+    (native-inputs (list which))
     (inputs (list zlib))
     (home-page "https://zlib.net/pigz/";)
     (synopsis "Parallel implementation of gzip")



reply via email to

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