[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
37/63: gnu: commencement: glibc-mesboot: Use Gash instead of coreutils&c
From: |
guix-commits |
Subject: |
37/63: gnu: commencement: glibc-mesboot: Use Gash instead of coreutils&co. |
Date: |
Mon, 17 Feb 2020 16:01:01 -0500 (EST) |
janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit 4364ebcc1f09980dc177e55d9fc131628fb8b90a
Author: Jan Nieuwenhuizen <address@hidden>
AuthorDate: Fri Nov 22 22:16:22 2019 +0100
gnu: commencement: glibc-mesboot: Use Gash instead of coreutils&co.
* gnu/packages/commencement.scm (glibc-mesboot): Use Gash instead of
coreutils&co.
---
gnu/packages/commencement.scm | 25 ++++++++++---------------
1 file changed, 10 insertions(+), 15 deletions(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 9a20add..c6b05d4 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2490,19 +2490,10 @@ SHELL := " shell "
(package
(inherit glibc-headers-mesboot)
(name "glibc-mesboot")
- (native-inputs `(("binutils" ,binutils-mesboot)
- ("libc" ,glibc-mesboot0)
- ("headers" ,glibc-headers-mesboot)
- ("gcc" ,gcc-mesboot1)
-
- ("bash" ,%bootstrap-coreutils&co)
- ("coreutils" ,%bootstrap-coreutils&co)
- ("diffutils" ,diffutils-mesboot)
- ("kernel-headers" ,%bootstrap-linux-libre-headers)
- ("make" ,make-mesboot)))
-
+ (native-inputs `(("headers" ,glibc-headers-mesboot)
+ ,@(%boot-mesboot3-inputs)))
(arguments
- `(#:validate-runpath? #f ; fails when using --enable-shared
+ `(#:validate-runpath? #f ; fails when using --enable-shared
,@(substitute-keyword-arguments (package-arguments
glibc-headers-mesboot)
((#:make-flags make-flags)
`(let ((bash (assoc-ref %build-inputs "bash")))
@@ -2514,9 +2505,13 @@ SHELL := " shell "
(let* ((kernel-headers (assoc-ref %build-inputs
"kernel-headers"))
(out (assoc-ref outputs "out"))
(install-flags (cons "install" make-flags)))
- (apply invoke "make" install-flags)
- (copy-recursively kernel-headers out)
- #t))))))))))
+ (and (apply invoke "make" install-flags)
+ (copy-recursively kernel-headers out)
+ #t)))))))))))
+
+(define (%boot-mesboot4-inputs)
+ `(("libc" ,glibc-mesboot)
+ ,@(alist-delete "libc" (%boot-mesboot3-inputs))))
(define gcc-mesboot
(package
- 43/63: gnu: commencement: %bootstrap-inputs+toolchain: Use Gash instead of coreutils&co., (continued)
- 43/63: gnu: commencement: %bootstrap-inputs+toolchain: Use Gash instead of coreutils&co., guix-commits, 2020/02/17
- 13/63: gnu: commencement: tcc-boot: Use Gash instead of coretutils&co., guix-commits, 2020/02/17
- 15/63: gnu: commencement: Add patch-mesboot., guix-commits, 2020/02/17
- 18/63: gnu: commencement: gcc-core-mesboot0: Use Gash instead of coretutils&co., guix-commits, 2020/02/17
- 20/63: gnu: commencement: mesboot-headers: Use Gash instead of coretutils&co., guix-commits, 2020/02/17
- 27/63: gnu: commencement: Add make-mesboot., guix-commits, 2020/02/17
- 28/63: gnu: commencement: Add gawk-mesboot., guix-commits, 2020/02/17
- 31/63: gnu: commencement: Add bash-mesboot., guix-commits, 2020/02/17
- 32/63: gnu: commencement: Add gcc-mesboot1: Use Gash instead of coreutils&co., guix-commits, 2020/02/17
- 35/63: gnu: commencement: binutils-mesboot: Use Gash instead of coreutils&co., guix-commits, 2020/02/17
- 37/63: gnu: commencement: glibc-mesboot: Use Gash instead of coreutils&co.,
guix-commits <=
- 30/63: gnu: commencement: Add gcc-core-mesboot1., guix-commits, 2020/02/17
- 38/63: gnu: commencement: gcc-mesboot1-wrapper: Use Gash instead of coreutils&co., guix-commits, 2020/02/17
- 39/63: gnu: commencement: gcc-mesboot: Use Gash instead of coreutils&co., guix-commits, 2020/02/17
- 41/63: gnu: commencement: Add coreutils-mesboot., guix-commits, 2020/02/17
- 42/63: gnu: commencement: Remove m4-mesboot., guix-commits, 2020/02/17
- 49/63: gnu: commencement: Add coreutils-boot0., guix-commits, 2020/02/17
- 54/63: gnu: commencement: gnu-make-mesboot: Rename from make-mesboot., guix-commits, 2020/02/17
- 53/63: gnu: commencement: gnu-make-mesboot0: Rename from make-mesboot0., guix-commits, 2020/02/17
- 57/63: gnu: commencement: mes-boot: Update to 0.22., guix-commits, 2020/02/17
- 52/63: gnu: bootstrap: Remove %bootstrap-coreutils&co, %bootstrap-bash., guix-commits, 2020/02/17