guix-commits
[Top][All Lists]
Advanced

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

branch wip-bootstrap updated: gnu: commencement: Build file without bzip


From: guix-commits
Subject: branch wip-bootstrap updated: gnu: commencement: Build file without bzip2.
Date: Mon, 17 Feb 2020 16:04:13 -0500

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

janneke pushed a commit to branch wip-bootstrap
in repository guix.

The following commit(s) were added to refs/heads/wip-bootstrap by this push:
     new 0fd6429  gnu: commencement: Build file without bzip2.
0fd6429 is described below

commit 0fd6429dd6126d1f8170e35fa5c9ab817fc1a80f
Author: Jan Nieuwenhuizen <address@hidden>
AuthorDate: Mon Feb 17 21:56:05 2020 +0100

    gnu: commencement: Build file without bzip2.
    
    * gnu/packages/commencement.scm (file): New variable.  Use it instead of 
(gnu
    packages file), removing failing bzip2 extension.
---
 gnu/packages/commencement.scm | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 4e92db7..95cd4e1 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -32,7 +32,6 @@
   #:use-module (gnu packages c)
   #:use-module (gnu packages gcc)
   #:use-module (gnu packages m4)
-  #:use-module (gnu packages file)
   #:use-module (gnu packages gawk)
   #:use-module (gnu packages bison)
   #:use-module (gnu packages flex)
@@ -2582,6 +2581,12 @@ exec " gcc "/bin/" program
                        ,flags)))
              (package-arguments findutils))))))
 
+(define file
+  (package
+    (inherit (@ (gnu packages file) file))
+    (arguments
+     `(#:configure-flags '("--disable-bzlib")))))
+
 (define file-boot0
   (package
     (inherit file)
@@ -2594,9 +2599,9 @@ exec " gcc "/bin/" program
      `(#:tests? #f                      ; merge test fails
        #:implicit-inputs? #f
        #:guile ,%bootstrap-guile
-       #:configure-flags '("--disable-bzlib")
        #:strip-binaries? #f
-       #:validate-runpath? #f))))
+       #:validate-runpath? #f
+       ,@(package-arguments file)))))
 
 (define gawk-boot0
   (package



reply via email to

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