[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
35/70: bootstrap: Add tar-mesboot.
From: |
guix-commits |
Subject: |
35/70: bootstrap: Add tar-mesboot. |
Date: |
Sun, 15 Dec 2019 08:36:45 -0500 (EST) |
janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit 0a3fc77d3d851cf63a0058134e1d54ba3f655de1
Author: Jan Nieuwenhuizen <address@hidden>
Date: Fri Nov 22 20:09:17 2019 +0100
bootstrap: Add tar-mesboot.
* gnu/packages/commencement.scm (tar-mesboot): New variable.
---
gnu/packages/commencement.scm | 57 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 57 insertions(+)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index d76d23c..9f7bd8b 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -1711,6 +1711,63 @@ ac_cv_c_float_format='IEEE (little-endian)'
("libc" ,glibc-mesboot0)
,@(alist-delete "gcc" (%boot-mesboot-core-inputs))))
+(define tar-mesboot
+ ;; Initial tar with support for xz compression.
+ (package
+ (inherit tar)
+ (name "tar-mesboot")
+ (version "1.22")
+ (source (bootstrap-origin
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://gnu/tar/tar-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "19nvix64y95n5v6rr5g9g3fn08zz85cb5anzd7csfv4a4sz9lw4y")))))
+ (supported-systems '("i686-linux" "x86_64-linux"))
+ (inputs '())
+ (propagated-inputs '())
+ (native-inputs (%boot-mesboot0-inputs))
+ (arguments
+ `(#:implicit-inputs? #f
+ #:guile ,%bootstrap-guile
+ #:parallel-build? #f
+ #:tests? #f ; check is naive, also checks non-built PROGRAMS
+ #:strip-binaries? #f ; no strip yet
+ #:configure-flags '("--build=i686-unknown-linux-gnu"
+ "--host=i686-unknown-linux-gnu"
+ "--disable-nls")
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'configure
+ (lambda* (#:key configure-flags #:allow-other-keys)
+ (let* ((out (assoc-ref %outputs "out"))
+ (bash (assoc-ref %build-inputs "bash"))
+ (shell (string-append bash "/bin/bash")))
+ (setenv "CONFIG_SHELL" shell)
+ (setenv "SHELL" shell)
+ (setenv "LIBS" "-lc -lnss_files -lnss_dns -lresolv")
+ (setenv "gl_cv_func_rename_dest_works" "yes")
+ (format (current-error-port)
+ "running ./configure ~a\n" (string-join
configure-flags))
+ (apply invoke (cons "./configure" configure-flags)))))
+ (add-after 'unpack 'scripted-patch
+ (lambda _
+ (let* ((bash (assoc-ref %build-inputs "bash"))
+ (shell (string-append bash "/bin/bash")))
+ (substitute* "configure"
+ ((" /bin/sh") shell)))
+ (substitute* "Makefile.in"
+ (("^SUBDIRS = doc") "SUBDIRS ="))
+ #t))
+ (replace 'install
+ (lambda _
+ (let* ((out (assoc-ref %outputs "out"))
+ (bin (string-append out "/bin")))
+ (install-file "src/tar" bin)
+ #t))))))))
+
(define binutils-mesboot
(package
(inherit binutils-mesboot0)
- 48/70: bootstrap: glibc-headers-mesboot: Use Gash instead of coreutils&co., (continued)
- 48/70: bootstrap: glibc-headers-mesboot: Use Gash instead of coreutils&co., guix-commits, 2019/12/15
- 16/70: bootstrap: Add gash-boot., guix-commits, 2019/12/15
- 33/70: bootstrap: glibc-mesboot0: Use Gash instead of coretutils&co., guix-commits, 2019/12/15
- 37/70: bootstrap: Add binutils-mesboot1., guix-commits, 2019/12/15
- 38/70: bootstrap: Add coreutils-mesboot0., guix-commits, 2019/12/15
- 45/70: bootstrap: Add xz-mesboot., guix-commits, 2019/12/15
- 46/70: bootstrap: Add hello-mesboot., guix-commits, 2019/12/15
- 51/70: bootstrap: gcc-mesboot1-wrapper: Use Gash instead of coreutils&co., guix-commits, 2019/12/15
- 30/70: bootstrap: gcc-core-mesboot0: Use Gash instead of coretutils&co., guix-commits, 2019/12/15
- 36/70: bootstrap: Add grep-mesboot., guix-commits, 2019/12/15
- 35/70: bootstrap: Add tar-mesboot.,
guix-commits <=
- 47/70: bootstrap: binutils-mesboot: Use Gash instead of coreutils&co., guix-commits, 2019/12/15
- 41/70: bootstrap: Add sed-mesboot., guix-commits, 2019/12/15
- 50/70: bootstrap: glibc-mesboot: Use Gash instead of coreutils&co., guix-commits, 2019/12/15
- 52/70: bootstrap: gcc-mesboot: Use Gash instead of coreutils&co., guix-commits, 2019/12/15
- 25/70: bootstrap: tcc-boot: Use Gash instead of coretutils&co., guix-commits, 2019/12/15
- 39/70: bootstrap: Add make-mesboot., guix-commits, 2019/12/15
- 59/70: bootstrap: Remove %bootstrap-coreutils&co, %bootstrap-bash., guix-commits, 2019/12/15
- 61/70: bootstrap: Add ed-boot0., guix-commits, 2019/12/15
- 65/70: bootstrap: Typo., guix-commits, 2019/12/15
- 57/70: bootstrap: Add gawk-boot0., guix-commits, 2019/12/15