guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: zstd-1.4.9: Fix i686-linux and arm/aarch64-l


From: guix-commits
Subject: branch master updated: gnu: zstd-1.4.9: Fix i686-linux and arm/aarch64-linux builds.
Date: Wed, 10 Mar 2021 21:08:12 -0500

This is an automated email from the git hooks/post-receive script.

lle_bout pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 2bcfb94  gnu: zstd-1.4.9: Fix i686-linux and arm/aarch64-linux builds.
2bcfb94 is described below

commit 2bcfb944bdd2f476ef8d34802fed436e4fdda0ab
Author: Léo Le Bouter <lle-bout@zaclys.net>
AuthorDate: Thu Mar 11 02:58:28 2021 +0100

    gnu: zstd-1.4.9: Fix i686-linux and arm/aarch64-linux builds.
    
    It's only a graft added for security so disabling tests on there seems
    acceptable.
    
    See: <https://lists.gnu.org/archive/html/guix-devel/2021-03/msg00130.html>.
    
    * gnu/packages/compression.scm (zstd-1.4.9)[arguments]: Substitute keyword
    arguments of 'zstd' to disable tests.
---
 gnu/packages/compression.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index 571088d..8e2a3a7 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -1513,7 +1513,10 @@ speed.")
        (uri (string-append 
"https://github.com/facebook/zstd/releases/download/";
                            "v" version "/zstd-" version ".tar.gz"))
        (sha256
-        (base32 "14yj7309gsvg39rki4xqnd6w5idmqi0655v1fc0mk1m2kvhp9b19"))))))
+        (base32 "14yj7309gsvg39rki4xqnd6w5idmqi0655v1fc0mk1m2kvhp9b19"))))
+    (arguments
+     (substitute-keyword-arguments (package-arguments zstd)
+       ((#:tests? _ #t) #f)))))
 
 (define-public pzstd
   (package



reply via email to

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