nls: Add package files for translation.
[jackhill/guix/guix.git] / build-aux / check-final-inputs-self-contained.scm
CommitLineData
81f61c17 1;;; GNU Guix --- Functional package management for GNU
58caebf0 2;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
81f61c17
LC
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19;;;
20;;; Check whether important binaries are available at hydra.gnu.org.
21;;;
22
23(use-modules (guix store)
24 (guix packages)
25 (guix derivations)
26 (guix ui)
bdb36958 27 (gnu packages commencement)
81f61c17
LC
28 (ice-9 match)
29 (srfi srfi-1)
30 (srfi srfi-26))
31
81f61c17
LC
32(define (final-inputs store system)
33 "Return the list of outputs directories of the final inputs for SYSTEM."
34 (append-map (match-lambda
35 ((name package)
36 (let ((drv (package-derivation store package system)))
37 ;; Libc's 'debug' output refers to gcc-cross-boot0, but it's
38 ;; hard to avoid, so we tolerate it. This should be the
39 ;; only exception.
40 (filter-map (match-lambda
41 (("debug" . directory)
42 (if (string=? "glibc" (package-name package))
43 #f
44 directory))
45 ((_ . directory) directory))
46 (derivation->output-paths drv)))))
47 %final-inputs))
48
49(define (assert-valid-substitute substitute)
50 "Make sure SUBSTITUTE does not refer to any bootstrap inputs, and bail out
51if it does."
52 (let ((references (substitutable-references substitute)))
53 (when (any (cut string-contains <> "boot") references)
54 (leave (_ "'~a' refers to bootstrap inputs: ~s~%")
55 (substitutable-path substitute) references))))
56
57(define (test-final-inputs store system)
58 "Check whether the final inputs for SYSTEM are clean---i.e., they don't
59refer to the bootstrap tools."
60 (format #t "checking final inputs for '~a'...~%" system)
61 (let* ((inputs (final-inputs store system))
62 (available (substitutable-path-info store inputs)))
63 (for-each (lambda (dir)
64 (unless (find (lambda (substitute)
65 (string=? (substitutable-path substitute)
66 dir))
67 available)
68 (leave (_ "~a (system: ~a) has no substitute~%")
69 dir system)))
70 inputs)
71
72 (for-each assert-valid-substitute available)))
73
74;; Entry point.
75(with-store store
43da8f01
LC
76 (parameterize ((%graft? #f))
77 (set-build-options store #:use-substitutes? #t)
81f61c17 78
43da8f01
LC
79 (for-each (cut test-final-inputs store <>)
80 %supported-systems)))
81f61c17 81