~ruther/guix-local

abcbda48c20da3d621e8170f8de30a575f080b51 — Ludovic Courtès 11 years ago ea7f334
packages: Add '%hydra-supported-systems'.

* build-aux/hydra/gnu-system.scm (%hydra-supported-systems): Remove.
* guix/packages.scm (%hydra-supported-systems): New variable.
2 files changed, 6 insertions(+), 4 deletions(-)

M build-aux/hydra/gnu-system.scm
M guix/packages.scm
M build-aux/hydra/gnu-system.scm => build-aux/hydra/gnu-system.scm +0 -4
@@ 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.
;;;

M guix/packages.scm => guix/packages.scm +6 -0
@@ 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