[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/16: DRAFT bootstrap: mes-minimal: Support ARM, update to mes-0.22.115
From: |
guix-commits |
Subject: |
06/16: DRAFT bootstrap: mes-minimal: Support ARM, update to mes-0.22.115. |
Date: |
Mon, 21 Dec 2020 05:06:56 -0500 (EST) |
janneke pushed a commit to branch wip-arm-bootstrap
in repository guix.
commit 2372945fe8a55eaf9bbe8ad9c8690d1599516f78
Author: Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Sun Dec 13 22:49:47 2020 +0100
DRAFT bootstrap: mes-minimal: Support ARM, update to mes-0.22.115.
XXX TODO: Inherit from mes instead of mes-next.
* gnu/packages/make-bootstrap.scm (%mes-minimal): Inherit from mes-next;
update to mes-0.22.115.
[arguments]: Support armhf-linux, aarch64-linux.
---
gnu/packages/make-bootstrap.scm | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm
index 195ea22..39c293c 100644
--- a/gnu/packages/make-bootstrap.scm
+++ b/gnu/packages/make-bootstrap.scm
@@ -632,12 +632,14 @@ for `sh' in $PATH, and without nscd, and with static NSS
modules."
;; A minimal Mes without documentation.
(let ((triplet "i686-unknown-linux-gnu"))
(package
- (inherit mes-0.19)
+ (inherit mes-next)
(name "mes-minimal")
(native-inputs
`(("guile" ,guile-2.2)))
(arguments
- `(#:system "i686-linux"
+ `(#:system ,(match (%current-system)
+ ((or "i686-linux" "x86_64-linux") "i686-linux")
+ ((or "armhf-linux" "aarch64-linux") "armhf-linux"))
#:strip-binaries? #f
#:configure-flags '("--mes")
#:phases
@@ -649,8 +651,6 @@ for `sh' in $PATH, and without nscd, and with static NSS
modules."
(share (string-append out "/share")))
(delete-file-recursively (string-append out "/lib/guile"))
(delete-file-recursively (string-append share "/guile"))
- (delete-file-recursively (string-append share
"/mes/scaffold"))
-
(for-each delete-file
(find-files
(string-append share "/mes/lib")
- 01/16: gnu: mescc-tools: Update to 0.7.0., (continued)
- 01/16: gnu: mescc-tools: Update to 0.7.0., guix-commits, 2020/12/21
- 02/16: gnu: Add nyacc-1.00.2., guix-commits, 2020/12/21
- 04/16: DRAFT gnu: Add mes-next., guix-commits, 2020/12/21
- 03/16: gnu: mes: Update to nyacc-1.00.2., guix-commits, 2020/12/21
- 05/16: bootstrap: mescc-tools: Support ARM, update to 0.7.0., guix-commits, 2020/12/21
- 13/16: commencement: gzip-mesboot: Support ARM., guix-commits, 2020/12/21
- 16/16: DRAFT commencement: tcc-boot: Support ARM., guix-commits, 2020/12/21
- 10/16: DRAFT commencement: bootstrap-mes-rewired: Support ARM., guix-commits, 2020/12/21
- 07/16: DRAFT bootstrap: %bootstrap-mescc-tools: Support ARM., guix-commits, 2020/12/21
- 08/16: DRAFT bootstrap: %bootstrap-mes: Support ARM., guix-commits, 2020/12/21
- 06/16: DRAFT bootstrap: mes-minimal: Support ARM, update to mes-0.22.115.,
guix-commits <=
- 09/16: commencement: gash-boot: Build fix for ARM., guix-commits, 2020/12/21
- 12/16: DRAFT commencement: tcc-boot0: Support ARM, update to 0.9.26-1136-g423e7d22., guix-commits, 2020/12/21
- 14/16: commencement: make-mesboot0: Support ARM., guix-commits, 2020/12/21
- 11/16: DRAFT commencement: mes-boot: Support ARM., guix-commits, 2020/12/21
- 15/16: commencement: bzip2-mesboot: Support ARM., guix-commits, 2020/12/21