[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: maint: Require "emacs-no-x" instead of "emacs" on armhf-linux.
From: |
guix-commits |
Subject: |
02/02: maint: Require "emacs-no-x" instead of "emacs" on armhf-linux. |
Date: |
Tue, 27 Apr 2021 16:29:38 -0400 (EDT) |
civodul pushed a commit to branch version-1.3.0
in repository guix.
commit 42ac8da474ff71fcbbfc6569a3a7e6f7e6e123e6
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Tue Apr 27 22:22:15 2021 +0200
maint: Require "emacs-no-x" instead of "emacs" on armhf-linux.
* etc/release-manifest.scm (%base-packages/armhf): New variable.
(%base-manifest): Use it.
---
etc/release-manifest.scm | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/etc/release-manifest.scm b/etc/release-manifest.scm
index ffc3b16..4375c9b 100644
--- a/etc/release-manifest.scm
+++ b/etc/release-manifest.scm
@@ -49,6 +49,14 @@ TARGET."
'("bootstrap-tarballs" "gcc-toolchain" "nss-certs"
"openssh" "emacs" "vim" "python" "guile" "guix")))
+(define %base-packages/armhf
+ ;; XXX: Relax requirements for armhf-linux for lack of enough build power.
+ (map (lambda (package)
+ (if (string=? (package-name package) "emacs")
+ (specification->package "emacs-no-x")
+ package))
+ %base-packages))
+
(define %base-packages/hurd
;; XXX: For now we are less demanding of "i586-gnu".
(map specification->package
@@ -102,6 +110,10 @@ TARGET."
(map (cut package->manifest-entry* <> system)
(cond ((string=? system "i586-gnu")
%base-packages/hurd)
+ ((string=? system "armhf-linux")
+ ;; FIXME: Drop special case when ci.guix.gnu.org
+ ;; has more ARMv7 build power.
+ %base-packages/armhf)
((string=? system "powerpc64le-linux")
;; FIXME: Drop 'bootstrap-tarballs' until
;; <https://bugs.gnu.org/48055> is fixed.