[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
58/70: bootstrap: Add sed-boot0.
From: |
guix-commits |
Subject: |
58/70: bootstrap: Add sed-boot0. |
Date: |
Sun, 15 Dec 2019 08:36:49 -0500 (EST) |
janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit ade30c423328ac5cd1f42e6009d9d2b73ca5c6d1
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 fb48bd5..4abd724 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2821,12 +2821,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)))
- 47/70: bootstrap: binutils-mesboot: Use Gash instead of coreutils&co., (continued)
- 47/70: bootstrap: binutils-mesboot: Use Gash instead of coreutils&co., guix-commits, 2019/12/15
- 41/70: bootstrap: Add sed-mesboot., guix-commits, 2019/12/15
- 50/70: bootstrap: glibc-mesboot: Use Gash instead of coreutils&co., guix-commits, 2019/12/15
- 52/70: bootstrap: gcc-mesboot: Use Gash instead of coreutils&co., guix-commits, 2019/12/15
- 25/70: bootstrap: tcc-boot: Use Gash instead of coretutils&co., guix-commits, 2019/12/15
- 39/70: bootstrap: Add make-mesboot., guix-commits, 2019/12/15
- 59/70: bootstrap: Remove %bootstrap-coreutils&co, %bootstrap-bash., guix-commits, 2019/12/15
- 61/70: bootstrap: Add ed-boot0., guix-commits, 2019/12/15
- 65/70: bootstrap: Typo., guix-commits, 2019/12/15
- 57/70: bootstrap: Add gawk-boot0., guix-commits, 2019/12/15
- 58/70: bootstrap: Add sed-boot0.,
guix-commits <=
- 29/70: bootstrap: binutils-mesboot0: Use Gash instead of coretutils&co., guix-commits, 2019/12/15
- 56/70: bootstrap: %bootstrap-inputs+toolchain: Use Gash instead of coreutils&co., guix-commits, 2019/12/15
- 34/70: bootstrap: gcc-mesboot0: Use Gash instead of coretutils&co., guix-commits, 2019/12/15
- 40/70: bootstrap: Add gawk-mesboot., guix-commits, 2019/12/15
- 43/70: bootstrap: Add bash-mesboot., guix-commits, 2019/12/15
- 49/70: bootstrap: glibc-mesboot: Use Gash instead of coreutils&co., guix-commits, 2019/12/15
- 53/70: bootstrap: gcc-mesboot-wrapper: Use Gash instead of coreutils&co., guix-commits, 2019/12/15
- 42/70: bootstrap: Add gcc-core-mesboot1., guix-commits, 2019/12/15
- 55/70: bootstrap: Remove m4-mesboot., guix-commits, 2019/12/15
- 54/70: bootstrap: Add coreutils-mesboot., guix-commits, 2019/12/15