[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
64/70: bootstrap: Add tar-boot0.
From: |
guix-commits |
Subject: |
64/70: bootstrap: Add tar-boot0. |
Date: |
Sun, 15 Dec 2019 08:36:51 -0500 (EST) |
janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit 78c1b9be99c8960e864ad6e5d4839a8b7d6af84b
Author: Jan Nieuwenhuizen <address@hidden>
Date: Sat Nov 23 09:13:50 2019 +0100
bootstrap: Add tar-boot0.
* gnu/packages/commencement.scm (tar-boot0): New variable.
(%boot0-inputs): Add it.
---
gnu/packages/commencement.scm | 19 ++++++++++++++++++-
1 file changed, 18 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 8cea69d..3274da0 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2826,7 +2826,8 @@ exec " gcc "/bin/" program
`(("make" ,gnu-make-boot0)
,@(%bootstrap-inputs+toolchain)))
(arguments
- `(#:implicit-inputs? #f
+ `(#:tests? #f ; merge test fails
+ #:implicit-inputs? #f
#:guile ,%bootstrap-guile
#:strip-binaries? #f
#:validate-runpath? #f))))
@@ -2878,6 +2879,21 @@ exec " gcc "/bin/" program
#:guile ,%bootstrap-guile
,@(package-arguments sed)))))
+(define tar-boot0
+ (package
+ (inherit tar)
+ (name "tar-boot0")
+ (source (bootstrap-origin (package-source tar)))
+ (native-inputs '())
+ (inputs
+ `(("make" ,gnu-make-boot0)
+ ,@(%bootstrap-inputs+toolchain)))
+ (arguments
+ `(#:implicit-inputs? #f
+ #:tests? #f
+ #:guile ,%bootstrap-guile
+ ,@(package-arguments tar)))))
+
(define (%boot0-inputs)
`(("bzip2" ,bzip2-boot0)
("diffutils" ,diffutils-boot0)
@@ -2887,6 +2903,7 @@ exec " gcc "/bin/" program
("make" ,gnu-make-boot0)
("patch" ,patch-boot0)
("sed" ,sed-boot0)
+ ("tar" ,tar-boot0)
,@(%bootstrap-inputs+toolchain)))
(define* (boot-triplet #:optional (system (%current-system)))
- 54/70: bootstrap: Add coreutils-mesboot., (continued)
- 54/70: bootstrap: Add coreutils-mesboot., guix-commits, 2019/12/15
- 62/70: bootstrap: Add patch-boot0., guix-commits, 2019/12/15
- 70/70: bootstrap: %bootstrap-tarballs: Remove %bootstrap-binaries-tarball., guix-commits, 2019/12/15
- 19/70: bootstrap: mes-boot: Use Gash instead of coretutils&co., guix-commits, 2019/12/15
- 66/70: bootstrap: Add coreutils-boot0., guix-commits, 2019/12/15
- 63/70: bootstrap: Add bzip2-boot0., guix-commits, 2019/12/15
- 68/70: bootstrap: patch-boot0: Remove ed dependency., guix-commits, 2019/12/15
- 69/70: bootstrap: static-bash-for-bootstrap: Use static-bash., guix-commits, 2019/12/15
- 60/70: gnu: Add ed-1.4., guix-commits, 2019/12/15
- 67/70: bootstrap: coreutils-final: Inherit from coreutils-minimal., guix-commits, 2019/12/15
- 64/70: bootstrap: Add tar-boot0.,
guix-commits <=