[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
53/64: gnu: bootstrap: Remove %bootstrap-coreutils&co, %bootstrap-bash.
From: |
guix-commits |
Subject: |
53/64: gnu: bootstrap: Remove %bootstrap-coreutils&co, %bootstrap-bash. |
Date: |
Tue, 18 Feb 2020 01:18:15 -0500 (EST) |
janneke pushed a commit to branch core-updates
in repository guix.
commit d77860dbc8fc9fc494fec68da2b81fecd59db8a1
Author: Jan Nieuwenhuizen <address@hidden>
AuthorDate: Fri Nov 22 23:05:15 2019 +0100
gnu: bootstrap: Remove %bootstrap-coreutils&co, %bootstrap-bash.
* gnu/packages/bootstrap.scm (%bootstrap-inputs)[i686-linux,x86-linux]:
Remove
%bootstrap-coreutils&co, %bootstrap-bash.
---
gnu/packages/bootstrap.scm | 25 ++++++++++++-------------
1 file changed, 12 insertions(+), 13 deletions(-)
diff --git a/gnu/packages/bootstrap.scm b/gnu/packages/bootstrap.scm
index c097d93..0fbe8ef 100644
--- a/gnu/packages/bootstrap.scm
+++ b/gnu/packages/bootstrap.scm
@@ -809,19 +809,18 @@ exec ~a/bin/.gcc-wrapped -B~a/lib \
(define (%bootstrap-inputs)
;; The initial, pre-built inputs. From now on, we can start building our
;; own packages.
- `(,@(match (%current-system)
- ((or "i686-linux" "x86_64-linux")
- `(("linux-libre-headers" ,%bootstrap-linux-libre-headers)
- ("bootstrap-mescc-tools" ,%bootstrap-mescc-tools)
- ("mes" ,%bootstrap-mes)))
- (_
- `(("libc" ,%bootstrap-glibc)
- ("gcc" ,%bootstrap-gcc)
- ("binutils" ,%bootstrap-binutils))))
- ("coreutils&co" ,%bootstrap-coreutils&co)
-
- ;; In gnu-build-system.scm, we rely on the availability of Bash.
- ("bash" ,%bootstrap-coreutils&co)))
+ (match (%current-system)
+ ((or "i686-linux" "x86_64-linux")
+ `(("linux-libre-headers" ,%bootstrap-linux-libre-headers)
+ ("bootstrap-mescc-tools" ,%bootstrap-mescc-tools)
+ ("mes" ,%bootstrap-mes)))
+ (_
+ `(("libc" ,%bootstrap-glibc)
+ ("gcc" ,%bootstrap-gcc)
+ ("binutils" ,%bootstrap-binutils)
+ ("coreutils&co" ,%bootstrap-coreutils&co)
+ ;; In gnu-build-system.scm, we rely on the availability of Bash.
+ ("bash" ,%bootstrap-coreutils&co)))))
(define %bootstrap-inputs-for-tests
;; These are bootstrap inputs that are cheap to produce (no compilation
- 45/64: gnu: commencement: Add gawk-boot0., (continued)
- 45/64: gnu: commencement: Add gawk-boot0., guix-commits, 2020/02/18
- 36/64: gnu: commencement: glibc-headers-mesboot: Use Gash instead of coreutils&co., guix-commits, 2020/02/18
- 40/64: gnu: commencement: gcc-mesboot-wrapper: Use Gash instead of coreutils&co., guix-commits, 2020/02/18
- 41/64: gnu: commencement: Add coreutils-mesboot., guix-commits, 2020/02/18
- 61/64: Add (guix build gnu-bootstrap)., guix-commits, 2020/02/18
- 47/64: gnu: commencement: Add patch-boot0., guix-commits, 2020/02/18
- 44/64: gnu: commencement: file: Build file without bzip2., guix-commits, 2020/02/18
- 48/64: gnu: commencement: Add bzip2-boot0., guix-commits, 2020/02/18
- 49/64: gnu: commencement: Add tar-boot0., guix-commits, 2020/02/18
- 50/64: gnu: commencement: Add coreutils-boot0., guix-commits, 2020/02/18
- 53/64: gnu: bootstrap: Remove %bootstrap-coreutils&co, %bootstrap-bash.,
guix-commits <=
- 59/64: gnu: commencement: glibc-boot0: Remove gash, use bash-mesboot0 only., guix-commits, 2020/02/18
- 62/64: gnu: commencement: Simplify Gash and Gash-Utils., guix-commits, 2020/02/18
- 64/64: gnu: commencement: Fix '%boot-mesboot1-inputs'., guix-commits, 2020/02/18
- 63/64: gnu: commencement: Remove %bootstrap-guile+guild., guix-commits, 2020/02/18
- 37/64: gnu: commencement: glibc-mesboot: Use Gash instead of coreutils&co., guix-commits, 2020/02/18
- 52/64: gnu: commencement: %bootstrap-tarballs: Remove %bootstrap-binaries-tarball., guix-commits, 2020/02/18
- 60/64: gnu: Rename 'gash-core-utils' to 'gash-utils'., guix-commits, 2020/02/18
- 58/64: gnu: commencement: mes-boot: Update to 0.22., guix-commits, 2020/02/18
- 46/64: gnu: commencement: Add sed-boot0., guix-commits, 2020/02/18
- 43/64: gnu: commencement: %bootstrap-inputs+toolchain: Use Gash instead of coreutils&co., guix-commits, 2020/02/18