[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
35/54: bootstrap: Add coreutils-mesboot0.
From: |
guix-commits |
Subject: |
35/54: bootstrap: Add coreutils-mesboot0. |
Date: |
Fri, 22 Nov 2019 18:17:53 -0500 (EST) |
janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit 9febf0536d426e9b46a71bf7e5968ced82e0a90b
Author: Jan Nieuwenhuizen <address@hidden>
Date: Fri Nov 22 20:49:50 2019 +0100
bootstrap: Add coreutils-mesboot0.
* gnu/packages/commencement.scm (coreutils-mesboot0): New variable.
---
gnu/packages/commencement.scm | 44 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 69af7e8..e53d969 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -1599,6 +1599,50 @@ ac_cv_c_float_format='IEEE (little-endian)'
(setenv "CONFIG_SHELL" shell)
#t)))))))))
+(define coreutils-mesboot0
+ (package
+ (inherit coreutils)
+ (name "coreutils-mesboot0")
+ ;; The latest .gz release of Coreutils is 8.13; which does not build with
gcc-2.95.3:
+ ;; randperm.c: In function `sparse_swap':
+ ;; randperm.c:117: invalid lvalue in unary `&'
+ (version "5.0") ; 2003-04
+ (source (bootstrap-origin
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://gnu/coreutils/coreutils-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "10wq6k66i8adr4k08p0xmg87ff4ypiazvwzlmi7myib27xgffz62")))))
+ (native-inputs `(("bash" ,bash-mesboot0)
+ ("binutils" ,binutils-mesboot0)
+ ("diffutils" ,diffutils-mesboot)
+ ("gawk" ,gawk-mesboot0)
+ ("gcc" ,gcc-mesboot0)
+ ("gzip" ,gzip-mesboot0)
+ ("libc" ,glibc-mesboot0)
+ ("make" ,make-mesboot0)
+ ("sed" ,sed-mesboot0)
+ ("tar" ,tar-mesboot)
+
+ ("gash" ,%bootstrap-gash)
+ ("guile" ,%bootstrap-guile)
+ ("kernel-headers" ,%bootstrap-linux-libre-headers)))
+ (supported-systems '("i686-linux" "x86_64-linux"))
+ (inputs '())
+ (propagated-inputs '())
+ (arguments
+ `(#:implicit-inputs? #f
+ #:tests? #f ; WARNING: `perl' is needed, ...
+ #:parallel-build? #f
+ #:strip-binaries? #f ; strip: unrecognized option `--only-keep-debug'
+ #:guile ,%bootstrap-guile
+ #:configure-flags
+ '("--disable-doc"
+ "LIBS=-lc -lnss_files -lnss_dns -lresolv"
+ "gl_cv_func_rename_dest_works=yes")))))
+
(define binutils-mesboot
(package
(inherit binutils-mesboot0)
- 20/54: bootstrap: tcc-boot: Scheme-only bootstrap., (continued)
- 20/54: bootstrap: tcc-boot: Scheme-only bootstrap., guix-commits, 2019/11/22
- 41/54: bootstrap: Add gcc-mesboot1: Scheme-only bootstrap., guix-commits, 2019/11/22
- 53/54: bootstrap: Add sed-boot0., guix-commits, 2019/11/22
- 50/54: bootstrap: Add coreutils-mesboot., guix-commits, 2019/11/22
- 54/54: bootstrap: Remove %bootstrap-coreutils&co, %bootstrap-bash., guix-commits, 2019/11/22
- 36/54: bootstrap: Add make-mesboot., guix-commits, 2019/11/22
- 44/54: bootstrap: binutils-mesboot: Scheme-only bootstrap., guix-commits, 2019/11/22
- 25/54: bootstrap: gcc-core-mesboot0: Scheme-only bootstrap., guix-commits, 2019/11/22
- 29/54: bootstrap: mesboot-headers: Scheme-only bootstrap., guix-commits, 2019/11/22
- 34/54: bootstrap: Add binutils-mesboot1., guix-commits, 2019/11/22
- 35/54: bootstrap: Add coreutils-mesboot0.,
guix-commits <=
- 45/54: bootstrap: glibc-headers-mesboot: Scheme-only bootstrap., guix-commits, 2019/11/22
- 39/54: bootstrap: Add gcc-core-mesboot1., guix-commits, 2019/11/22
- 51/54: bootstrap: Remove m4-bootstrap., guix-commits, 2019/11/22
- 52/54: bootstrap: %bootstrap-inputs+toolchain: Scheme-only bootstrap., guix-commits, 2019/11/22