[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
65/70: bootstrap: Add bzip2-boot0.
From: |
guix-commits |
Subject: |
65/70: bootstrap: Add bzip2-boot0. |
Date: |
Wed, 11 Dec 2019 13:04:50 -0500 (EST) |
janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit af6712d8d237620783753ed198e5eaee921025cc
Author: Jan Nieuwenhuizen <address@hidden>
Date: Sat Nov 23 09:11:57 2019 +0100
bootstrap: Add bzip2-boot0.
* gnu/packages/commencement.scm (bzip2-boot0): New variable.
(%boot0-inputs): Add it.
---
gnu/packages/commencement.scm | 16 +++++++++++++++-
1 file changed, 15 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 1f4522b..25efeec 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2760,6 +2760,19 @@ exec " gcc "/bin/" program
(native-inputs '()) ; no need for 'pkg-config'
(inputs (%bootstrap-inputs+toolchain))))
+(define bzip2-boot0
+ (package
+ (inherit bzip2)
+ (name "bzip2-boot0")
+ (native-inputs `())
+ (inputs
+ `(("make" ,gnu-make-boot0)
+ ,@(%bootstrap-inputs+toolchain)))
+ (arguments
+ `(#:guile ,%bootstrap-guile
+ #:implicit-inputs? #f
+ ,@(package-arguments bzip2)))))
+
(define diffutils-boot0
(package
(inherit diffutils)
@@ -2862,11 +2875,12 @@ exec " gcc "/bin/" program
,@(package-arguments sed)))))
(define (%boot0-inputs)
- `(("make" ,gnu-make-boot0)
+ `(("bzip2" ,bzip2-boot0)
("diffutils" ,diffutils-boot0)
("findutils" ,findutils-boot0)
("file" ,file-boot0)
("gawk" ,gawk-boot0)
+ ("make" ,gnu-make-boot0)
("patch" ,patch-boot0)
("sed" ,sed-boot0)
,@(%bootstrap-inputs+toolchain)))
- 34/70: bootstrap: glibc-mesboot0: Use Gash instead of coretutils&co., (continued)
- 34/70: bootstrap: glibc-mesboot0: Use Gash instead of coretutils&co., guix-commits, 2019/12/11
- 40/70: bootstrap: Add make-mesboot., guix-commits, 2019/12/11
- 45/70: bootstrap: Add gcc-mesboot1: Use Gash instead of coreutils&co., guix-commits, 2019/12/11
- 48/70: bootstrap: Add hello-mesboot., guix-commits, 2019/12/11
- 43/70: bootstrap: Add gcc-core-mesboot1., guix-commits, 2019/12/11
- 51/70: bootstrap: glibc-mesboot: Use Gash instead of coreutils&co., guix-commits, 2019/12/11
- 64/70: bootstrap: Add patch-boot0., guix-commits, 2019/12/11
- 61/70: bootstrap: Remove %bootstrap-coreutils&co, %bootstrap-bash., guix-commits, 2019/12/11
- 54/70: bootstrap: gcc-mesboot: Use Gash instead of coreutils&co., guix-commits, 2019/12/11
- 62/70: gnu: Add ed-1.4., guix-commits, 2019/12/11
- 65/70: bootstrap: Add bzip2-boot0.,
guix-commits <=
- 68/70: bootstrap: Add coreutils-boot0., guix-commits, 2019/12/11
- 32/70: bootstrap: Add gawk-mesboot0., guix-commits, 2019/12/11
- 38/70: bootstrap: Add binutils-mesboot1., guix-commits, 2019/12/11
- 42/70: bootstrap: Add sed-mesboot., guix-commits, 2019/12/11
- 46/70: bootstrap: Add gcc-mesboot1: Use Gash instead of coreutils&co., guix-commits, 2019/12/11
- 52/70: bootstrap: glibc-mesboot: Use Gash instead of coreutils&co., guix-commits, 2019/12/11
- 56/70: bootstrap: Add coreutils-mesboot., guix-commits, 2019/12/11
- 60/70: bootstrap: Add sed-boot0., guix-commits, 2019/12/11
- 22/70: bootstrap: Add gzip-mesboot., guix-commits, 2019/12/11
- 16/70: bootstrap: Add gash-boot., guix-commits, 2019/12/11