guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: packages: Add aarch64-linux to %supported-systems.


From: Efraim Flashner
Subject: 01/01: packages: Add aarch64-linux to %supported-systems.
Date: Tue, 23 May 2017 14:57:11 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 59d0f067ff9f830d9438d5337ee71120e9694410
Author: Efraim Flashner <address@hidden>
Date:   Tue May 23 21:51:36 2017 +0300

    packages: Add aarch64-linux to %supported-systems.
    
    * guix/packages.scm (%supported-systems): Add aarch64-linux.
    (%hydra-supported-systems): Remove aarch64-linux.
---
 guix/packages.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/guix/packages.scm b/guix/packages.scm
index 8ead950..f4967f9 100644
--- a/guix/packages.scm
+++ b/guix/packages.scm
@@ -3,6 +3,7 @@
 ;;; Copyright © 2014, 2015, 2017 Mark H Weaver <address@hidden>
 ;;; Copyright © 2015 Eric Bavier <address@hidden>
 ;;; Copyright © 2016 Alex Kost <address@hidden>
+;;; Copyright © 2017 Efraim Flashner <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -224,7 +225,7 @@ name of its URI."
 (define %supported-systems
   ;; This is the list of system types that are supported.  By default, we
   ;; expect all packages to build successfully here.
-  '("x86_64-linux" "i686-linux" "armhf-linux" "mips64el-linux"))
+  '("x86_64-linux" "i686-linux" "armhf-linux" "aarch64-linux" 
"mips64el-linux"))
 
 (define %hurd-systems
   ;; The GNU/Hurd systems for which support is being developed.
@@ -235,7 +236,7 @@ name of its URI."
   ;;
   ;; XXX: MIPS is temporarily unavailable on Hydra:
   ;; <https://lists.gnu.org/archive/html/guix-devel/2017-03/msg00790.html>.
-  (delete "mips64el-linux" %supported-systems))
+  (fold delete %supported-systems '("aarch64-linux" "mips64el-linux")))
 
 
 ;; A package.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]