[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
153/211: bootstrap: Remove dependency on %bootstrap-make, %bootstrap-dif
From: |
Jan Nieuwenhuizen |
Subject: |
153/211: bootstrap: Remove dependency on %bootstrap-make, %bootstrap-diffutils. |
Date: |
Sat, 8 Sep 2018 11:09:48 -0400 (EDT) |
janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit 012a75a9c214decf759720a4deffbde4529b2291
Author: Jan Nieuwenhuizen <address@hidden>
Date: Tue Aug 28 01:09:14 2018 +0200
bootstrap: Remove dependency on %bootstrap-make, %bootstrap-diffutils.
* gnu/packages/bootstrap.scm (%bootstrap-inputs): Remove %bootstrap-make,
%bootstrap-diffutils.
* gnu/packages/make-bootstrap.scm (%bootstrap-tarballs): Remove
%make-bootstrap-tarball, %diffutils-bootstrap-tarball.
* gnu/packages/commencement.scm (diffutils-mesboot): Replace %bootstrap-make
with make-mesboot.
(binutils-mesboot0): Likewise. Replace %bootstrap-diffutils with
diffutils-mesboot.
(gcc-core-mesboot): Likewise.
(glibc-mesboot): Likewise.
(gcc-mesboot0): Likewise.
(binutils-mesboot): Likewise.
(gcc-mesboot): Likewise.
---
gnu/packages/bootstrap.scm | 4 +---
gnu/packages/commencement.scm | 28 +++++++++++++++-------------
gnu/packages/make-bootstrap.scm | 4 +---
3 files changed, 17 insertions(+), 19 deletions(-)
diff --git a/gnu/packages/bootstrap.scm b/gnu/packages/bootstrap.scm
index 69eb004..9fad739 100644
--- a/gnu/packages/bootstrap.scm
+++ b/gnu/packages/bootstrap.scm
@@ -735,9 +735,7 @@ exec ~a/bin/.gcc-wrapped -B~a/lib \
;; The initial, pre-built inputs. From now on, we can start building our
;; own packages.
`(,@(match (%current-system)
- ("i686-linux" `(("diffutils" ,%bootstrap-diffutils)
- ("linux-libre-headers" ,%bootstrap-linux-libre-headers)
- ("make" ,%bootstrap-make)
+ ("i686-linux" `(("linux-libre-headers" ,%bootstrap-linux-libre-headers)
("mescc-tools-seed" ,%mescc-tools-seed)
("mes-seed" ,%mes-seed)
("srfi-43" ,%srfi-43 )
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index f48c039..5c4dc9c 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -627,10 +627,11 @@
("bash" ,%bootstrap-coreutils&co)
("coreutils" ,%bootstrap-coreutils&co)
- ("make" ,%bootstrap-make)))
+ ("make" ,make-mesboot)))
(arguments
`(#:implicit-inputs? #f
#:guile ,%bootstrap-guile
+ #:parallel-build? #f
;;FIXME: why doesn't this work?
;;#:make-flags '("PROGRAMS=\"cmp diff\"")
#:tests? #f ; check is naive, also checks non-built PROGRAMS
@@ -674,8 +675,8 @@
(native-inputs `(("tcc" ,tcc-boot)
("coreutils" ,%bootstrap-coreutils&co)
- ("diffutils" ,%bootstrap-diffutils)
- ("make" ,%bootstrap-make)))
+ ("diffutils" ,diffutils-mesboot)
+ ("make" ,make-mesboot)))
(supported-systems '("i686-linux"))
(arguments
`(#:implicit-inputs? #f
@@ -751,8 +752,8 @@
("tcc" ,tcc-boot)
("coreutils" ,%bootstrap-coreutils&co)
- ("diffutils" ,%bootstrap-diffutils)
- ("make" ,%bootstrap-make)))
+ ("diffutils" ,diffutils-mesboot)
+ ("make" ,make-mesboot)))
(outputs '("out"))
(arguments
`(#:implicit-inputs? #f
@@ -873,9 +874,9 @@ ac_cv_c_float_format='IEEE (little-endian)'
("gcc" ,gcc-core-mesboot)
("coreutils" ,%bootstrap-coreutils&co)
- ("diffutils" ,%bootstrap-diffutils)
+ ("diffutils" ,diffutils-mesboot)
("kernel-headers" ,%bootstrap-linux-libre-headers)
- ("make" ,%bootstrap-make)))
+ ("make" ,make-mesboot)))
(outputs '("out"))
(arguments
`(#:implicit-inputs? #f
@@ -964,9 +965,9 @@ ac_cv_c_float_format='IEEE (little-endian)'
("libc" ,glibc-mesboot)
("coreutils" ,%bootstrap-coreutils&co)
- ("diffutils" ,%bootstrap-diffutils)
+ ("diffutils" ,diffutils-mesboot)
("kernel-headers" ,%bootstrap-linux-libre-headers)
- ("make" ,%bootstrap-make)))
+ ("make" ,make-mesboot)))
(outputs '("out"))
(arguments
`(#:implicit-inputs? #f
@@ -1060,13 +1061,14 @@ ac_cv_c_float_format='IEEE (little-endian)'
("gcc" ,gcc-mesboot0)
("coreutils" ,%bootstrap-coreutils&co)
- ("diffutils" ,%bootstrap-diffutils)
+ ("diffutils" ,diffutils-mesboot)
("kernel-headers" ,%bootstrap-linux-libre-headers)
- ("make" ,%bootstrap-make)))
+ ("make" ,make-mesboot)))
(arguments
`(#:implicit-inputs? #f
#:guile ,%bootstrap-guile
#:parallel-build? #f
+ #:parallel-tests? #f
#:configure-flags '("--enable-deterministic-archives"
"--disable-nls"
"--disable-shared"
@@ -1171,9 +1173,9 @@ ac_cv_c_float_format='IEEE (little-endian)'
("libc" ,glibc-mesboot)
("coreutils" ,%bootstrap-coreutils&co)
- ("diffutils" ,%bootstrap-diffutils)
+ ("diffutils" ,diffutils-mesboot)
("kernel-headers" ,%bootstrap-linux-libre-headers)
- ("make" ,%bootstrap-make)))
+ ("make" ,make-mesboot)))
(arguments
`(#:implicit-inputs? #f
#:guile ,%bootstrap-guile
diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm
index 804f226..2062f86 100644
--- a/gnu/packages/make-bootstrap.scm
+++ b/gnu/packages/make-bootstrap.scm
@@ -828,9 +828,7 @@ for `sh' in $PATH, and without nscd, and with static NSS
modules."
#t)))
(inputs `(("guile-tarball" ,%guile-bootstrap-tarball)
,@(match (%current-system)
- ("i686-linux" `(("diffutils-tarball"
,%diffutils-bootstrap-tarball)
- ("make-tarball" ,%make-bootstrap-tarball)
- ("mescc-tools-seed" ,(@ (gnu packages
bootstrap) %mescc-tools-seed))
+ ("i686-linux" `(("mescc-tools-seed" ,(@ (gnu packages
bootstrap) %mescc-tools-seed))
("mes-seed" ,(@ (gnu packages bootstrap)
%mes-seed))
("srfi-43" ,(@ (gnu packages bootstrap)
%srfi-43))
("tinycc-seed" ,(@ (gnu packages bootstrap)
%tinycc-seed))))
- 136/211: gnu: tcc-boot0: Use gnu-build-system., (continued)
- 136/211: gnu: tcc-boot0: Use gnu-build-system., Jan Nieuwenhuizen, 2018/09/08
- 108/211: gnu: Add gcc-mesboot 4.7.4. WIP, Jan Nieuwenhuizen, 2018/09/08
- 111/211: gnu: m4-mesboot: Package with boostrap-guile., Jan Nieuwenhuizen, 2018/09/08
- 139/211: gnu: Add %bootstrap-make., Jan Nieuwenhuizen, 2018/09/08
- 114/211: gnu: gcc-core-mesboot: Package with bootstrap-guile., Jan Nieuwenhuizen, 2018/09/08
- 128/211: gnu: gcc-mesboot: Revise dependencies., Jan Nieuwenhuizen, 2018/09/08
- 77/211: Revert "gnu: gcc-boot: Update to 3.0.", Jan Nieuwenhuizen, 2018/09/08
- 157/211: Revert "gnu: Add %make-static, %make-static-stripped, %make-bootstrap-tarball.", Jan Nieuwenhuizen, 2018/09/08
- 150/211: gnu: Add make-mesboot 3.79., Jan Nieuwenhuizen, 2018/09/08
- 119/211: gnu: %mes-seed: Update for mes 0.16.1., Jan Nieuwenhuizen, 2018/09/08
- 153/211: bootstrap: Remove dependency on %bootstrap-make, %bootstrap-diffutils.,
Jan Nieuwenhuizen <=
- 137/211: gnu: tcc-boot: Use gnu-build-system., Jan Nieuwenhuizen, 2018/09/08
- 188/211: gnu: binutils-mesboot: Cleanup., Jan Nieuwenhuizen, 2018/09/08
- 184/211: gnu: mesboot-headers: Cleanup., Jan Nieuwenhuizen, 2018/09/08
- 169/211: bootstrap: Evaluate %bootstrap-inputs+toolchain at build time., Jan Nieuwenhuizen, 2018/09/08
- 165/211: Revert "gnu: make-boot0: Set LOADLIBES for i686-linux.", Jan Nieuwenhuizen, 2018/09/08
- 120/211: gnu: mes-boot: Update to 0.16.1; revise dependencies., Jan Nieuwenhuizen, 2018/09/08
- 123/211: gnu: binutils-mesboot0: Revise dependencies., Jan Nieuwenhuizen, 2018/09/08
- 142/211: gnu: Add %linux-libre-headers-stripped, %linux-libre-headers-bootstrap-tarball., Jan Nieuwenhuizen, 2018/09/08
- 155/211: Revert "gnu: Add %diffutils-static, %diffutils-static-stripped, %diffutils-bootstrap-tarball.", Jan Nieuwenhuizen, 2018/09/08
- 130/211: gnu: %tinycc-seed: Update for mes 0.17., Jan Nieuwenhuizen, 2018/09/08