[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/16: DRAFT bootstrap: %bootstrap-mes: Support ARM.
From: |
guix-commits |
Subject: |
08/16: DRAFT bootstrap: %bootstrap-mes: Support ARM. |
Date: |
Sun, 20 Dec 2020 05:14:53 -0500 (EST) |
janneke pushed a commit to branch wip-arm-bootstrap
in repository guix.
commit 5e6b5429309622e0f14cbba7b3c1fd01c29bc117
Author: Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Tue Dec 15 11:34:45 2020 +0100
DRAFT bootstrap: %bootstrap-mes: Support ARM.
XXX TODO: Rebase onto core-updates, release GNU Mes 0.23, rebuild.
Built with
2372945fe8a55eaf9bbe8ad9c8690d1599516f78
DRAFT bootstrap: mes-minimal: Support ARM, update to mes-0.22.115.
* gnu/packages/bootstrap.scm (%bootstrap-mes)[inputs]: Add tarball for
armhf-linux.
[supported-systems]: Add armhf-linux, aarch64-linux.
---
gnu/packages/bootstrap.scm | 18 +++++++++++++-----
1 file changed, 13 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/bootstrap.scm b/gnu/packages/bootstrap.scm
index 656c8a1..9b1a286 100644
--- a/gnu/packages/bootstrap.scm
+++ b/gnu/packages/bootstrap.scm
@@ -843,14 +843,22 @@ exec ~a/bin/.gcc-wrapped -B~a/lib \
(origin
(method url-fetch)
(uri (map
- (cute string-append <>
- "/i686-linux/20190815/"
- "mes-minimal-stripped-0.19-i686-linux.tar.xz")
+ (cute string-append <> (%current-system) "/"
+ (match (%current-system)
+ ((or "armhf-linux" "aarch64-linux")
+
"20201217/mes-minimal-stripped-0.22-115-gdacaed9fe-armhf-linux.tar.xz")
+ ((or "i686-linux" "x86_64-linux")
+
"20190815/mes-minimal-stripped-0.19-i686-linux.tar.xz")))
%bootstrap-base-urls))
(sha256
(base32
- "1q4xjpx6nbn44kxnilpgl12bhpmwy2bblzwszc2ci7xkf400jcpv")))))))
- (supported-systems '("i686-linux" "x86_64-linux"))
+ (match (%current-system)
+ ((or "armhf-linux" "aarch64-linux")
+ "0daz658r9psmqxjkayvr8ymql6h4gf11gwdd4k3mdv7czc5ak399")
+ ((or "i686-linux" "x86_64-linux")
+
"1q4xjpx6nbn44kxnilpgl12bhpmwy2bblzwszc2ci7xkf400jcpv")))))))))
+ (supported-systems '("armhf-linux" "aarch64-linux"
+ "i686-linux" "x86_64-linux"))
(synopsis "Bootstrap binaries of Mes")
(description synopsis)
(home-page #f)
- branch wip-arm-bootstrap created (now 500e3f7), guix-commits, 2020/12/20
- 02/16: gnu: Add nyacc-1.00.2., guix-commits, 2020/12/20
- 01/16: gnu: mescc-tools: Update to 0.7.0., guix-commits, 2020/12/20
- 03/16: gnu: mes: Update to nyacc-1.00.2., guix-commits, 2020/12/20
- 05/16: bootstrap: mescc-tools: Support ARM, update to 0.7.0., guix-commits, 2020/12/20
- 04/16: DRAFT gnu: Add mes-next., guix-commits, 2020/12/20
- 06/16: DRAFT bootstrap: mes-minimal: Support ARM, update to mes-0.22.115., guix-commits, 2020/12/20
- 07/16: DRAFT bootstrap: %bootstrap-mescc-tools: Support ARM., guix-commits, 2020/12/20
- 10/16: DRAFT commencement: bootstrap-mes-rewired: Support ARM., guix-commits, 2020/12/20
- 11/16: DRAFT commencement: mes-boot: Support ARM., guix-commits, 2020/12/20
- 08/16: DRAFT bootstrap: %bootstrap-mes: Support ARM.,
guix-commits <=
- 12/16: DRAFT commencement: tcc-boot0: Support ARM, update to 0.9.26-1133-gb906ff86., guix-commits, 2020/12/20
- 09/16: commencement: gash-boot: Build fix for ARM., guix-commits, 2020/12/20
- 13/16: commencement: gzip-mesboot: Support ARM., guix-commits, 2020/12/20
- 14/16: commencement: make-mesboot0: Support ARM., guix-commits, 2020/12/20
- 15/16: commencement: bzip2-mesboot: Support ARM., guix-commits, 2020/12/20
- 16/16: DRAFT commencement: tcc-boot: Support ARM., guix-commits, 2020/12/20