[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
54/63: bootstrap: Add sed-boot0.
From: |
guix-commits |
Subject: |
54/63: bootstrap: Add sed-boot0. |
Date: |
Sun, 24 Nov 2019 06:09:08 -0500 (EST) |
janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit 1630a997fedc90993e158d215fd3ca85f9b1f1ec
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 ec0a102..ef1b432 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2716,11 +2716,27 @@ 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)
+ ("sed" ,sed-boot0)
,@(%bootstrap-inputs+toolchain)))
(define* (boot-triplet #:optional (system (%current-system)))
- 44/63: bootstrap: Add hello-mesboot., (continued)
- 44/63: bootstrap: Add hello-mesboot., guix-commits, 2019/11/24
- 45/63: bootstrap: binutils-mesboot: Scheme-only bootstrap., guix-commits, 2019/11/24
- 46/63: bootstrap: glibc-headers-mesboot: Scheme-only bootstrap., guix-commits, 2019/11/24
- 47/63: bootstrap: glibc-mesboot: Scheme-only bootstrap., guix-commits, 2019/11/24
- 48/63: bootstrap: gcc-mesboot1-wrapper: Scheme-only bootstrap., guix-commits, 2019/11/24
- 49/63: bootstrap: gcc-mesboot: Scheme-only bootstrap., guix-commits, 2019/11/24
- 50/63: bootstrap: gcc-mesboot-wrapper: Scheme-only bootstrap., guix-commits, 2019/11/24
- 52/63: bootstrap: Remove m4-bootstrap., guix-commits, 2019/11/24
- 51/63: bootstrap: Add coreutils-mesboot., guix-commits, 2019/11/24
- 53/63: bootstrap: %bootstrap-inputs+toolchain: Scheme-only bootstrap., guix-commits, 2019/11/24
- 54/63: bootstrap: Add sed-boot0.,
guix-commits <=
- 55/63: bootstrap: Remove %bootstrap-coreutils&co, %bootstrap-bash., guix-commits, 2019/11/24
- 56/63: gnu: Add ed-1.4., guix-commits, 2019/11/24
- 57/63: bootstrap: Add ed-boot0., guix-commits, 2019/11/24
- 58/63: bootstrap: Add patch-boot0., guix-commits, 2019/11/24
- 59/63: bootstrap: Add bzip2-boot0., guix-commits, 2019/11/24
- 60/63: bootstrap: Add tar-boot0., guix-commits, 2019/11/24
- 61/63: bootstrap: Typo., guix-commits, 2019/11/24
- 62/63: bootstrap: Add coreutils-boot0., guix-commits, 2019/11/24
- 63/63: bootstrap: ACL: disable tests. FIXME: LD_PRELOAD., guix-commits, 2019/11/24