[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
17/57: bootstrap: Add patch-mesboot.
From: |
guix-commits |
Subject: |
17/57: bootstrap: Add patch-mesboot. |
Date: |
Mon, 16 Dec 2019 13:20:08 -0500 (EST) |
janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit e383d409e708f4238ef148bd012cdc284c452916
Author: Jan Nieuwenhuizen <address@hidden>
Date: Sun Oct 6 14:57:54 2019 +0200
bootstrap: Add patch-mesboot.
* gnu/packages/commencement.scm (patch-mesboot): New variable.
---
gnu/packages/commencement.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index b0f8da1..9dbccd8 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -1105,6 +1105,42 @@ $MES -e '(mescc)' module/mescc.scm -- \"$@\"
(install-file "diff" bin)
#t))))))))
+(define patch-mesboot
+ ;; The initial patch.
+ (package
+ (inherit patch)
+ (name "patch-mesboot")
+ (version "2.5.9")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://gnu/patch/patch-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "12nv7jx3gxfp50y11nxzlnmqqrpicjggw6pcsq0wyavkkm3cddgc"))))
+ (supported-systems '("i686-linux" "x86_64-linux"))
+ (inputs '())
+ (propagated-inputs '())
+ (native-inputs (%boot-tcc0-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 '("AR=tcc -ar" "CC=tcc" "LD-tcc")
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'scripted-patch
+ (lambda _
+ ;; avoid another segfault
+ (substitute* "pch.c"
+ (("while [(]p_end >= 0[)]" all)
+ "p_end = -1;\nwhile (0)"))
+ #t))
+ ;; FIXME: no compressing gzip yet
+ (delete 'compress-documentation))))))
+
(define binutils-mesboot0
(package
(inherit binutils)
- 01/57: gnu: gash: Update to 0.2.0., (continued)
- 01/57: gnu: gash: Update to 0.2.0., guix-commits, 2019/12/16
- 02/57: gnu: Add gash-core-utils., guix-commits, 2019/12/16
- 07/57: bootstrap: Add gash-core-utils-boot., guix-commits, 2019/12/16
- 10/57: bootstrap: tcc-boot0: Use Gash instead of coretutils&co., guix-commits, 2019/12/16
- 13/57: bootstrap: Add bzip2-mesboot., guix-commits, 2019/12/16
- 15/57: bootstrap: tcc-boot: Use Gash instead of coretutils&co., guix-commits, 2019/12/16
- 18/57: bootstrap: Add sed-mesboot0., guix-commits, 2019/12/16
- 03/57: bootstrap: Add janneke's guix package url., guix-commits, 2019/12/16
- 06/57: bootstrap: Add gash-boot., guix-commits, 2019/12/16
- 11/57: bootstrap: Add gzip-mesboot., guix-commits, 2019/12/16
- 17/57: bootstrap: Add patch-mesboot.,
guix-commits <=
- 14/57: bootstrap: Add bash-mesboot0., guix-commits, 2019/12/16
- 24/57: bootstrap: gcc-mesboot0: Use Gash instead of coretutils&co., guix-commits, 2019/12/16
- 23/57: bootstrap: glibc-mesboot0: Use Gash instead of coretutils&co., guix-commits, 2019/12/16
- 25/57: bootstrap: Add tar-mesboot., guix-commits, 2019/12/16
- 27/57: bootstrap: Add binutils-mesboot1., guix-commits, 2019/12/16
- 28/57: bootstrap: Add coreutils-mesboot0., guix-commits, 2019/12/16
- 29/57: bootstrap: Add make-mesboot., guix-commits, 2019/12/16
- 33/57: bootstrap: Add bash-mesboot., guix-commits, 2019/12/16
- 36/57: bootstrap: Add hello-mesboot., guix-commits, 2019/12/16
- 39/57: bootstrap: glibc-mesboot: Use Gash instead of coreutils&co., guix-commits, 2019/12/16