[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
40/54: bootstrap: Add bash-mesboot.
From: |
guix-commits |
Subject: |
40/54: bootstrap: Add bash-mesboot. |
Date: |
Fri, 22 Nov 2019 18:17:56 -0500 (EST) |
janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit 744632750c2bc8946f1bfe9168362ce928e2a267
Author: Jan Nieuwenhuizen <address@hidden>
Date: Fri Nov 22 21:22:14 2019 +0100
bootstrap: Add bash-mesboot.
* gnu/packages/commencement.scm (bash-mesboot): New variable.
---
gnu/packages/commencement.scm | 84 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 84 insertions(+)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index e46a99b..8b57d87 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -1784,6 +1784,90 @@ ac_cv_c_float_format='IEEE (little-endian)'
(string-append "SHELL = " shell)))
#t))))))))
+(define bash-mesboot
+ (package-with-bootstrap-guile
+ (package
+ (inherit bash-mesboot0)
+ (version "4.4")
+ (name "bash-mesboot")
+ (source (bootstrap-origin
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://gnu/bash/bash-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "1jyz6snd63xjn6skk7za6psgidsd53k05cr3lksqybi0q6936syq")))))
+ (inputs '())
+ (propagated-inputs '())
+ (native-inputs `(("bash" ,bash-mesboot0)
+ ("binutils" ,binutils-mesboot0)
+ ("gawk" ,gawk-mesboot0)
+ ("gcc" ,gcc-mesboot0)
+ ("gzip" ,gzip-mesboot0)
+ ("libc" ,glibc-mesboot0)
+ ("make" ,make-mesboot0)
+ ;; ("patch" ,patch-mesboot0)
+ ;; ("sed" ,sed-mesboot0)
+ ;; ("tar" ,tar-mesboot0)
+
+ ("gash" ,%bootstrap-gash)
+ ("guile" ,%bootstrap-guile)
+ ("kernel-headers" ,%bootstrap-linux-libre-headers)))
+ (outputs '("out"))
+ (arguments
+ `(#:implicit-inputs? #f
+ #:guile ,%bootstrap-guile
+ #:parallel-build? #f
+ #:configure-flags '("--build=i686-unknown-linux-gnu"
+ "--host=i686-unknown-linux-gnu"
+
+ "--without-bash-malloc"
+ "--disable-readline"
+ "--disable-history"
+ "--disable-help-builtin"
+ "--disable-progcomp"
+ "--disable-net-redirections"
+ "--disable-nls"
+
+ ;; Pretend 'dlopen' is missing so we don't build
loadable
+ ;; modules and related code.
+ "ac_cv_func_dlopen=no")
+ #:make-flags '("bash")
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'scripted-patch
+ (lambda _
+ (substitute* "shell.c"
+ ((";;") ";"))
+ #t))
+ (add-before 'configure 'setenv
+ (lambda _
+ (setenv "AWK" "gawk")
+ (setenv "LIBS" "-lc -lnss_files -lnss_dns -lresolv")
+ (setenv "gl_cv_func_rename_dest_works" "yes")
+ #t))
+ (add-after 'configure 'configure-fixups
+ (lambda _
+ (let ((config.h (open-file "config.h" "a")))
+ (display (string-append "
+#define enable_hostname_completion(on_or_off) 0
+")
+ config.h)
+ (close config.h))
+ #t))
+ (replace 'check
+ (lambda _
+ (invoke "./bash" "--version")))
+ (replace 'install
+ (lambda _
+ (let* ((out (assoc-ref %outputs "out"))
+ (bin (string-append out "/bin")))
+ (mkdir-p bin)
+ (copy-file "bash" (string-append bin "/bash"))
+ (copy-file "bash" (string-append bin "/sh"))
+ #t)))))))))
+
(define gmp-boot
(package
(inherit gmp)
- 31/54: bootstrap: gcc-mesboot0: Scheme-only bootstrap., (continued)
- 31/54: bootstrap: gcc-mesboot0: Scheme-only bootstrap., guix-commits, 2019/11/22
- 23/54: bootstrap: Add sed-mesboot0., guix-commits, 2019/11/22
- 21/54: bootstrap: diffuils-mesboot: Scheme-only bootstrap., guix-commits, 2019/11/22
- 18/54: bootstrap: Add bzip2-mesboot0., guix-commits, 2019/11/22
- 28/54: Revert "bootstrap: Add bash-mesboot1.", guix-commits, 2019/11/22
- 32/54: bootstrap: Add tar-mesboot., guix-commits, 2019/11/22
- 30/54: bootstrap: glibc-mesboot0: Scheme-only bootstrap., guix-commits, 2019/11/22
- 27/54: bootstrap: Add bash-mesboot1., guix-commits, 2019/11/22
- 33/54: bootstrap: Add grep-mesboot., guix-commits, 2019/11/22
- 26/54: bootstrap: Add gawk-mesboot0., guix-commits, 2019/11/22
- 40/54: bootstrap: Add bash-mesboot.,
guix-commits <=
- 38/54: bootstrap: Add sed-mesboot., guix-commits, 2019/11/22
- 49/54: bootstrap: gcc-mesboot-wrapper: Scheme-only bootstrap., guix-commits, 2019/11/22
- 42/54: bootstrap: Add xz-mesboot., guix-commits, 2019/11/22
- 48/54: bootstrap: gcc-mesboot: Scheme-only bootstrap., guix-commits, 2019/11/22
- 43/54: bootstrap: Add hello-mesboot., guix-commits, 2019/11/22
- 47/54: bootstrap: gcc-mesboot1-wrapper: Scheme-only bootstrap., guix-commits, 2019/11/22
- 46/54: bootstrap: glibc-mesboot: Scheme-only bootstrap., guix-commits, 2019/11/22
- 37/54: bootstrap: Add gawk-mesboot., guix-commits, 2019/11/22
- 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