[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/15: gnu: bison-boot0: Remove bootstrap leaks.
From: |
Jan Nieuwenhuizen |
Subject: |
08/15: gnu: bison-boot0: Remove bootstrap leaks. |
Date: |
Mon, 10 Sep 2018 16:33:46 -0400 (EDT) |
janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit f9a76a79ca302e7f6e4e2c5cd58256c9bebe6db3
Author: Jan Nieuwenhuizen <address@hidden>
Date: Sun Sep 9 13:46:20 2018 +0200
gnu: bison-boot0: Remove bootstrap leaks.
* gnu/packages/commencement.scm (bison-boot0): Remove bootstrap leaks.
---
gnu/packages/commencement.scm | 37 ++++++++++++++++---------------------
1 file changed, 16 insertions(+), 21 deletions(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 0b6d737..e35bb42 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -358,27 +358,22 @@
;; This Bison is needed to build MiG so we need it early in the process.
;; It is also needed to rebuild Bash's parser, which is modified by
;; its CVE patches. Remove it when it's no longer needed.
- (let* ((m4 (package-with-bootstrap-guile
- (package-with-explicit-inputs m4 (%boot0-inputs)
- (current-source-location)
- #:guile %bootstrap-guile)))
- (bison (package (inherit bison)
- (propagated-inputs `(("m4" ,m4)))
- (inputs '()) ;remove Flex...
- (arguments
- '(#:tests? #f ;... and thus disable tests
-
- ;; Zero timestamps in liby.a; this must be done
- ;; explicitly here because the bootstrap Binutils don't
- ;; do that (default is "cru".)
- #:make-flags '("ARFLAGS=crD" "RANLIB=ranlib -D"
- "V=1"))))))
- (package
- (inherit (package-with-bootstrap-guile
- (package-with-explicit-inputs bison (%boot0-inputs)
- (current-source-location)
- #:guile %bootstrap-guile)))
- (native-inputs `(("perl" ,perl-boot0))))))
+ (package-with-bootstrap-guile
+ (package
+ (inherit bison)
+ (propagated-inputs `(("m4" ,m4-boot0)))
+ (inputs (%boot0-inputs)) ;remove Flex...
+ (native-inputs `(("perl" ,perl-boot0)))
+ (arguments
+ `(#:guile ,%bootstrap-guile
+ #:implicit-inputs? #f
+ #:tests? #f ;... and thus disable tests
+ ;; Zero timestamps in liby.a; this must be done
+ ;; explicitly here because the bootstrap Binutils don't
+ ;; do that (default is "cru".)
+ #:make-flags '("ARFLAGS=crD"
+ "RANLIB=ranlib -D"
+ "V=1"))))))
(define flex-boot0
;; This Flex is needed to build MiG.
- 13/15: gnu: Add Mes bootstrap seeds., (continued)
- 13/15: gnu: Add Mes bootstrap seeds., Jan Nieuwenhuizen, 2018/09/10
- 06/15: gnu: perl-boot0: Remove bootstrap leaks., Jan Nieuwenhuizen, 2018/09/10
- 02/15: bootstrap: %bootstrap-inputs+toolchain: Prepare for Mes bootstrap., Jan Nieuwenhuizen, 2018/09/10
- 01/15: bootstrap: %bootstrap-inputs: Prepare for Mes bootstrap., Jan Nieuwenhuizen, 2018/09/10
- 09/15: gnu: texinfo-boot0: Remove bootstrap leaks., Jan Nieuwenhuizen, 2018/09/10
- 15/15: bootstrap: Replace GNU toolchain seeds with Mes for i686-linux., Jan Nieuwenhuizen, 2018/09/10
- 12/15: gnu: Add linux-libre-headers-bootstrap-tarball., Jan Nieuwenhuizen, 2018/09/10
- 10/15: guix: package-from-tarball: Allow PROGRAM-TO-TEST to be #f., Jan Nieuwenhuizen, 2018/09/10
- 11/15: guix: copy-linux-headers: Prepare for Mes bootstrap., Jan Nieuwenhuizen, 2018/09/10
- 04/15: gnu: findutils-boot0: Remove bootstrap leaks., Jan Nieuwenhuizen, 2018/09/10
- 08/15: gnu: bison-boot0: Remove bootstrap leaks.,
Jan Nieuwenhuizen <=
- 14/15: bootstrap: Add Mes bootstrap., Jan Nieuwenhuizen, 2018/09/10