[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
27/63: gnu: commencement: Add make-mesboot.
From: |
guix-commits |
Subject: |
27/63: gnu: commencement: Add make-mesboot. |
Date: |
Mon, 17 Feb 2020 16:00:58 -0500 (EST) |
janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit 1329e8673b80f2938acc1be3bd96b15675266235
Author: Jan Nieuwenhuizen <address@hidden>
AuthorDate: Fri Nov 22 20:52:44 2019 +0100
gnu: commencement: Add make-mesboot.
* gnu/packages/commencement.scm (make-mesboot): New variable.
---
gnu/packages/commencement.scm | 66 +++++++++++++++++++++----------------------
1 file changed, 33 insertions(+), 33 deletions(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 85ce6d6..f7ab3e7 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -1788,6 +1788,39 @@ ac_cv_c_float_format='IEEE (little-endian)'
"ac_cv_func_gethostbyname=no"
"gl_cv_func_rename_dest_works=yes")))))
+(define make-mesboot
+ (package
+ (inherit gnu-make)
+ (name "make-mesboot")
+ (version "3.82")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://gnu/make/make-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "1rs2f9hmvy3q6zkl15jnlmnpgffm0bhw5ax0h5c7q604wqrip69x"))))
+ (native-inputs (%boot-mesboot0-inputs))
+ (supported-systems '("i686-linux" "x86_64-linux"))
+ (inputs '())
+ (propagated-inputs '())
+ (arguments
+ `(#:implicit-inputs? #f
+ #:parallel-build? #f
+ #:guile ,%bootstrap-guile
+ #:configure-flags '("LIBS=-lc -lnss_files -lnss_dns -lresolv")
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda _
+ (invoke "./make" "--version")))
+ (replace 'install
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (bin (string-append out "/bin")))
+ (install-file "make" bin)
+ #t))))))))
+
(define binutils-mesboot
(package
(inherit binutils-mesboot0)
@@ -1811,39 +1844,6 @@ ac_cv_c_float_format='IEEE (little-endian)'
"--host=i686-unknown-linux-gnu"
"--with-sysroot=/"))))))
-(define make-mesboot
- (package
- (inherit make-mesboot0)
- (name "make-mesboot")
- (version "3.82")
- (source (origin
- (method url-fetch)
- (uri (string-append "mirror://gnu/make/make-"
- version ".tar.gz"))
- (sha256
- (base32
- "1rs2f9hmvy3q6zkl15jnlmnpgffm0bhw5ax0h5c7q604wqrip69x"))))
- (native-inputs `(("binutils" ,binutils-mesboot0)
- ("libc" ,glibc-mesboot0)
- ("gcc" ,gcc-mesboot0)
- ("make" ,make-mesboot0)
-
- ("bash" ,%bootstrap-coreutils&co)
- ("coreutils" ,%bootstrap-coreutils&co)
- ("kernel-headers" ,%bootstrap-linux-libre-headers)))
- (arguments
- (substitute-keyword-arguments (package-arguments make-mesboot0)
- ((#:configure-flags configure-flags)
- `(let ((out (assoc-ref %outputs "out")))
- `(,(string-append "--prefix=" out))))
- ((#:phases phases)
- `(modify-phases ,phases
- (delete 'configure-fixup)
- (add-before 'configure 'setenv
- (lambda _
- (setenv "LIBS" "-lc -lnss_files -lnss_dns -lresolv")
- #t))))))))
-
(define gmp-boot
(package
(inherit gmp)
- 26/63: gnu: commencement: Add coreutils-mesboot0., (continued)
- 26/63: gnu: commencement: Add coreutils-mesboot0., guix-commits, 2020/02/17
- 33/63: gnu: commencement: Add xz-mesboot., guix-commits, 2020/02/17
- 34/63: gnu: commencement: Add hello-mesboot., guix-commits, 2020/02/17
- 29/63: gnu: commencement: Add sed-mesboot., guix-commits, 2020/02/17
- 36/63: gnu: commencement: glibc-headers-mesboot: Use Gash instead of coreutils&co., guix-commits, 2020/02/17
- 43/63: gnu: commencement: %bootstrap-inputs+toolchain: Use Gash instead of coreutils&co., guix-commits, 2020/02/17
- 13/63: gnu: commencement: tcc-boot: Use Gash instead of coretutils&co., guix-commits, 2020/02/17
- 15/63: gnu: commencement: Add patch-mesboot., guix-commits, 2020/02/17
- 18/63: gnu: commencement: gcc-core-mesboot0: Use Gash instead of coretutils&co., guix-commits, 2020/02/17
- 20/63: gnu: commencement: mesboot-headers: Use Gash instead of coretutils&co., guix-commits, 2020/02/17
- 27/63: gnu: commencement: Add make-mesboot.,
guix-commits <=
- 28/63: gnu: commencement: Add gawk-mesboot., guix-commits, 2020/02/17
- 31/63: gnu: commencement: Add bash-mesboot., guix-commits, 2020/02/17
- 32/63: gnu: commencement: Add gcc-mesboot1: Use Gash instead of coreutils&co., guix-commits, 2020/02/17
- 35/63: gnu: commencement: binutils-mesboot: Use Gash instead of coreutils&co., guix-commits, 2020/02/17
- 37/63: gnu: commencement: glibc-mesboot: Use Gash instead of coreutils&co., guix-commits, 2020/02/17
- 30/63: gnu: commencement: Add gcc-core-mesboot1., guix-commits, 2020/02/17
- 38/63: gnu: commencement: gcc-mesboot1-wrapper: Use Gash instead of coreutils&co., guix-commits, 2020/02/17
- 39/63: gnu: commencement: gcc-mesboot: Use Gash instead of coreutils&co., guix-commits, 2020/02/17
- 41/63: gnu: commencement: Add coreutils-mesboot., guix-commits, 2020/02/17
- 42/63: gnu: commencement: Remove m4-mesboot., guix-commits, 2020/02/17