[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/08: packages: Add '%hydra-supported-systems'.
From: |
Ludovic Courtès |
Subject: |
03/08: packages: Add '%hydra-supported-systems'. |
Date: |
Fri, 01 May 2015 15:39:58 +0000 |
civodul pushed a commit to branch core-updates
in repository guix.
commit abcbda48c20da3d621e8170f8de30a575f080b51
Author: Ludovic Courtès <address@hidden>
Date: Fri May 1 16:05:40 2015 +0200
packages: Add '%hydra-supported-systems'.
* build-aux/hydra/gnu-system.scm (%hydra-supported-systems): Remove.
* guix/packages.scm (%hydra-supported-systems): New variable.
---
build-aux/hydra/gnu-system.scm | 4 ----
guix/packages.scm | 6 ++++++
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/build-aux/hydra/gnu-system.scm b/build-aux/hydra/gnu-system.scm
index 9a47b4f..c612ff1 100644
--- a/build-aux/hydra/gnu-system.scm
+++ b/build-aux/hydra/gnu-system.scm
@@ -210,10 +210,6 @@ valid."
#f)))))
-(define %hydra-supported-systems
- ;; This is the list of system types for which build slaves are available.
- '("x86_64-linux" "i686-linux" "mips64el-linux"))
-
;;;
;;; Hydra entry point.
;;;
diff --git a/guix/packages.scm b/guix/packages.scm
index 0e4cce1..a979f31 100644
--- a/guix/packages.scm
+++ b/guix/packages.scm
@@ -95,6 +95,7 @@
package-grafts
%supported-systems
+ %hydra-supported-systems
supported-package?
&package-error
@@ -210,6 +211,11 @@ corresponds to the arguments expected by
`set-path-environment-variable'."
;; expect all packages to build successfully here.
'("x86_64-linux" "i686-linux" "armhf-linux" "mips64el-linux"))
+(define %hydra-supported-systems
+ ;; This is the list of system types for which build slaves are available.
+ (delete "armhf-linux" %supported-systems))
+
+
;; A package.
(define-record-type* <package>
package make-package
- branch core-updates updated (9e63a38 -> 868ef9a), Ludovic Courtès, 2015/05/01
- 01/08: Merge branch 'master' into core-updates, Ludovic Courtès, 2015/05/01
- 02/08: gnu: ganv: Set the RUNPATH of binaries to $libdir., Ludovic Courtès, 2015/05/01
- 04/08: list-packages: Add status link only for systems supported on Hydra., Ludovic Courtès, 2015/05/01
- 03/08: packages: Add '%hydra-supported-systems'.,
Ludovic Courtès <=
- 05/08: gnu: mariadb: Remove now unneeded workaround., Ludovic Courtès, 2015/05/01
- 06/08: check-available-binaries: Use %HYDRA-SUPPORTED-SYSTEMS., Ludovic Courtès, 2015/05/01
- 08/08: bash completion: Complete long options with no short variant., Ludovic Courtès, 2015/05/01
- 07/08: gnu: polkit-qt: Add $libdir to RUNPATH., Ludovic Courtès, 2015/05/01