[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
36/70: bootstrap: Add grep-mesboot.
From: |
guix-commits |
Subject: |
36/70: bootstrap: Add grep-mesboot. |
Date: |
Sun, 15 Dec 2019 08:36:45 -0500 (EST) |
janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit f648b7cf5add568f34cfd5802575abde559bab3c
Author: Jan Nieuwenhuizen <address@hidden>
Date: Fri Nov 22 20:32:10 2019 +0100
bootstrap: Add grep-mesboot.
* gnu/packages/commencement.scm (grep-mesboot): New variable.
---
gnu/packages/commencement.scm | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 9f7bd8b..6dc9271 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -1768,6 +1768,45 @@ ac_cv_c_float_format='IEEE (little-endian)'
(install-file "src/tar" bin)
#t))))))))
+(define grep-mesboot
+ ;; The initial grep.
+ (package
+ (inherit grep)
+ (name "grep-mesboot")
+ (version "2.0")
+ (source (bootstrap-origin
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://gnu/grep/grep-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "1w862l80lgc5mxvpiy4cfwk761d6xxavn0m3xd2l7xs2kmzvp6lq")))))
+ (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
+ #:phases
+ (modify-phases %standard-phases
+ (add-before 'configure 'patch-configure
+ (lambda _
+ (let* ((bash (assoc-ref %build-inputs "bash"))
+ (shell (string-append bash "/bin/bash")))
+ (substitute* "configure"
+ ((" [|][|] ./config.status") " || sh ./config.status")))))
+ (replace 'install
+ (lambda _
+ (let* ((out (assoc-ref %outputs "out"))
+ (bin (string-append out "/bin")))
+ (install-file "grep" bin)
+ (symlink "grep" (string-append bin "/egrep"))
+ (symlink "grep" (string-append bin "/fgrep"))
+ #t))))))))
+
(define binutils-mesboot
(package
(inherit binutils-mesboot0)
- 44/70: bootstrap: Add gcc-mesboot1: Use Gash instead of coreutils&co., (continued)
- 44/70: bootstrap: Add gcc-mesboot1: Use Gash instead of coreutils&co., guix-commits, 2019/12/15
- 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 <=
- 35/70: bootstrap: Add tar-mesboot., guix-commits, 2019/12/15
- 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