[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
15/63: gnu: commencement: Add patch-mesboot.
From: |
guix-commits |
Subject: |
15/63: gnu: commencement: Add patch-mesboot. |
Date: |
Mon, 17 Feb 2020 16:00:54 -0500 (EST) |
janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit beefbede6c01a4e2acbaaf8fdfddb401ff179db7
Author: Jan Nieuwenhuizen <address@hidden>
AuthorDate: Sun Oct 6 14:57:54 2019 +0200
gnu: commencement: 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 9fcb69f..d930063 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -1097,6 +1097,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)
- 22/63: gnu: commencement: gcc-mesboot0: Use Gash instead of coretutils&co., (continued)
- 22/63: gnu: commencement: gcc-mesboot0: Use Gash instead of coretutils&co., guix-commits, 2020/02/17
- 23/63: gnu: commencement: Add tar-mesboot., guix-commits, 2020/02/17
- 25/63: gnu: commencement: Add binutils-mesboot1., guix-commits, 2020/02/17
- 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 <=
- 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, 2020/02/17
- 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