[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/08: bootstrap: Add tar-boot0.
From: |
guix-commits |
Subject: |
05/08: bootstrap: Add tar-boot0. |
Date: |
Sat, 23 Nov 2019 07:08:44 -0500 (EST) |
janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit 3a07ca9ec7140f147c923498b7311e425279e8ae
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 | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index c558065..f4c93ba 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2781,6 +2781,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)
@@ -2789,6 +2804,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)))
- branch wip-bootstrap updated (d3fc856 -> a69ccf6), guix-commits, 2019/11/23
- 01/08: gnu: Add ed-1.4., guix-commits, 2019/11/23
- 02/08: bootstrap: Add ed-boot0., guix-commits, 2019/11/23
- 03/08: bootstrap: Add patch-boot0., guix-commits, 2019/11/23
- 05/08: bootstrap: Add tar-boot0.,
guix-commits <=
- 04/08: bootstrap: Add bzip2-boot0., guix-commits, 2019/11/23
- 06/08: bootstrap: Typo., guix-commits, 2019/11/23
- 07/08: bootstrap: Add coreutils-boot0., guix-commits, 2019/11/23
- 08/08: bootstrap: ACL: disable tests. FIXME: LD_PRELOAD., guix-commits, 2019/11/23