2013-07-15 23:06:14 +02:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2018-12-03 16:22:43 +01:00
|
|
|
;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org>
|
2013-07-15 23:06:14 +02:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
;;;
|
2018-12-03 16:22:43 +01:00
|
|
|
;;; Check whether important binaries are available.
|
2013-07-15 23:06:14 +02:00
|
|
|
;;;
|
|
|
|
|
|
|
|
(use-modules (guix store)
|
2016-03-03 22:59:49 +01:00
|
|
|
(guix grafts)
|
2013-07-15 23:06:14 +02:00
|
|
|
(guix packages)
|
|
|
|
(guix derivations)
|
|
|
|
(gnu packages emacs)
|
|
|
|
(gnu packages make-bootstrap)
|
|
|
|
(srfi srfi-1)
|
2015-07-21 22:28:20 +02:00
|
|
|
(srfi srfi-26)
|
|
|
|
(ice-9 format))
|
2013-07-15 23:06:14 +02:00
|
|
|
|
2015-01-14 18:20:01 +01:00
|
|
|
(with-store store
|
2015-02-24 23:00:29 +01:00
|
|
|
(parameterize ((%graft? #f))
|
|
|
|
(let* ((native (append-map (lambda (system)
|
|
|
|
(map (cut package-derivation store <> system)
|
|
|
|
(list %bootstrap-tarballs emacs)))
|
2015-05-01 17:38:09 +02:00
|
|
|
%hydra-supported-systems))
|
2015-02-24 23:00:29 +01:00
|
|
|
(cross (map (cut package-cross-derivation store
|
|
|
|
%bootstrap-tarballs <>)
|
2017-05-08 15:41:32 +02:00
|
|
|
'("mips64el-linux-gnu"
|
|
|
|
"arm-linux-gnueabihf")))
|
2015-02-24 23:00:29 +01:00
|
|
|
(total (append native cross)))
|
2013-07-15 23:06:14 +02:00
|
|
|
|
2017-05-08 15:36:01 +02:00
|
|
|
(set-build-options store
|
|
|
|
#:use-substitutes? #t
|
|
|
|
#:substitute-urls %default-substitute-urls)
|
2015-07-21 22:28:20 +02:00
|
|
|
(let* ((total (map derivation->output-path total))
|
|
|
|
(available (substitutable-paths store total))
|
|
|
|
(missing (lset-difference string=? total available)))
|
|
|
|
(if (null? missing)
|
2016-04-27 15:00:49 +02:00
|
|
|
(format (current-error-port)
|
|
|
|
"~a packages found substitutable on~{ ~a~}~%"
|
|
|
|
(length total) %hydra-supported-systems)
|
2015-07-21 22:28:20 +02:00
|
|
|
(format (current-error-port)
|
|
|
|
"~a packages are not substitutable:~%~{ ~a~%~}~%"
|
|
|
|
(length missing) missing))
|
|
|
|
(exit (null? missing))))))
|