[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
47/57: bootstrap: Add sed-boot0.
From: |
guix-commits |
Subject: |
47/57: bootstrap: Add sed-boot0. |
Date: |
Mon, 16 Dec 2019 13:20:14 -0500 (EST) |
janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit df50af1a7bfdd85c6da3e5939b077188e16c5e96
Author: Jan Nieuwenhuizen <address@hidden>
Date: Fri Nov 22 23:56:32 2019 +0100
bootstrap: Add sed-boot0.
linux-libre-headers depends on `sed -E', introduced in sed 4.1.5.
* gnu/packages/commencement.scm (sed-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 589608e..f0531da 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2791,12 +2791,28 @@ exec " gcc "/bin/" program
#:strip-binaries? #f
#:validate-runpath? #f))))
+(define sed-boot0
+ (package
+ (inherit sed)
+ (name "sed-boot0")
+ (source (bootstrap-origin (package-source sed)))
+ (native-inputs '())
+ (inputs
+ `(("make" ,gnu-make-boot0)
+ ,@(%bootstrap-inputs+toolchain)))
+ (arguments
+ `(#:implicit-inputs? #f
+ #:tests? #f
+ #:guile ,%bootstrap-guile
+ ,@(package-arguments sed)))))
+
(define (%boot0-inputs)
`(("make" ,gnu-make-boot0)
("diffutils" ,diffutils-boot0)
("findutils" ,findutils-boot0)
("file" ,file-boot0)
("gawk" ,gawk-boot0)
+ ("sed" ,sed-boot0)
,@(%bootstrap-inputs+toolchain)))
(define* (boot-triplet #:optional (system (%current-system)))
- 09/57: bootstrap: mes-boot: Use Gash instead of coretutils&co., (continued)
- 09/57: bootstrap: mes-boot: Use Gash instead of coretutils&co., guix-commits, 2019/12/16
- 12/57: bootstrap: make-mesboot0: Use Gash instead of coreutils&co., guix-commits, 2019/12/16
- 16/57: bootstrap: diffutils-mesboot: Use Gash instead of coretutils&co., guix-commits, 2019/12/16
- 22/57: bootstrap: mesboot-headers: Use Gash instead of coretutils&co., guix-commits, 2019/12/16
- 21/57: bootstrap: Add gawk-mesboot0., guix-commits, 2019/12/16
- 35/57: bootstrap: Add xz-mesboot., guix-commits, 2019/12/16
- 37/57: bootstrap: binutils-mesboot: Use Gash instead of coreutils&co., guix-commits, 2019/12/16
- 45/57: bootstrap: %bootstrap-inputs+toolchain: Use Gash instead of coreutils&co., guix-commits, 2019/12/16
- 50/57: bootstrap: Add tar-boot0., guix-commits, 2019/12/16
- 41/57: bootstrap: gcc-mesboot: Use Gash instead of coreutils&co., guix-commits, 2019/12/16
- 47/57: bootstrap: Add sed-boot0.,
guix-commits <=
- 38/57: bootstrap: glibc-headers-mesboot: Use Gash instead of coreutils&co., guix-commits, 2019/12/16
- 40/57: bootstrap: gcc-mesboot1-wrapper: Use Gash instead of coreutils&co., guix-commits, 2019/12/16
- 42/57: bootstrap: gcc-mesboot-wrapper: Use Gash instead of coreutils&co., guix-commits, 2019/12/16
- 48/57: bootstrap: Add patch-boot0., guix-commits, 2019/12/16
- 44/57: bootstrap: Remove m4-mesboot., guix-commits, 2019/12/16
- 46/57: bootstrap: Add gawk-boot0., guix-commits, 2019/12/16
- 54/57: bootstrap: %bootstrap-tarballs: Remove %bootstrap-binaries-tarball., guix-commits, 2019/12/16
- 53/57: bootstrap: coreutils-final: Inherit from coreutils-minimal., guix-commits, 2019/12/16
- 55/57: bootstrap: Remove %bootstrap-coreutils&co, %bootstrap-bash., guix-commits, 2019/12/16
- 56/57: bootstrap: gnu-make-mesboot0: Rename from make-mesboot0., guix-commits, 2019/12/16