[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
48/57: bootstrap: Add patch-boot0.
From: |
guix-commits |
Subject: |
48/57: bootstrap: Add patch-boot0. |
Date: |
Mon, 16 Dec 2019 13:20:14 -0500 (EST) |
janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit 4a543bedb79049a278b964f04640582e342506aa
Author: Jan Nieuwenhuizen <address@hidden>
Date: Sat Nov 23 08:48:03 2019 +0100
bootstrap: Add patch-boot0.
* gnu/packages/commencement.scm (patch-boot0): New variable: patch without
lzip dependency (via ed).
(%boot0-inputs): Add it.
---
gnu/packages/commencement.scm | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index f0531da..067f579 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2791,6 +2791,22 @@ exec " gcc "/bin/" program
#:strip-binaries? #f
#:validate-runpath? #f))))
+(define patch-boot0
+ (package
+ (inherit patch)
+ (source (bootstrap-origin (package-source patch)))
+ (name "patch-boot0")
+ (native-inputs '())
+ (inputs
+ `(("make" ,gnu-make-boot0)
+ ,@(%bootstrap-inputs+toolchain)))
+ (arguments
+ `(#:tests? #f ; merge test fails
+ #:implicit-inputs? #f
+ #:guile ,%bootstrap-guile
+ #:strip-binaries? #f
+ #:validate-runpath? #f))))
+
(define sed-boot0
(package
(inherit sed)
@@ -2812,6 +2828,7 @@ exec " gcc "/bin/" program
("findutils" ,findutils-boot0)
("file" ,file-boot0)
("gawk" ,gawk-boot0)
+ ("patch" ,patch-boot0)
("sed" ,sed-boot0)
,@(%bootstrap-inputs+toolchain)))
- 21/57: bootstrap: Add gawk-mesboot0., (continued)
- 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, 2019/12/16
- 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 <=
- 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
- 32/57: bootstrap: Add gcc-core-mesboot1., guix-commits, 2019/12/16
- 51/57: bootstrap: Typo., guix-commits, 2019/12/16
- 52/57: bootstrap: Add coreutils-boot0., guix-commits, 2019/12/16
- 57/57: bootstrap: gnu-make-mesboot: Rename from make-mesboot., guix-commits, 2019/12/16