distro: Use the bootstrap Guile for the derivation of sources.

* distro/packages/base.scm (bootstrap-origin,
  package-with-bootstrap-guile): New procedures.
  (gnu-make-boot0, diffutils-boot0, findutils-boot0, binutils-boot0,
  gcc-boot0, linux-libre-headers-boot0, glibc-final, bash-final,
  guile-final): Use `package-with-bootstrap-guile'.
  (gcc-boot0-wrapped): Clear `source'.

* guix/ftp.scm (ftp-fetch): Add a #:guile keyword parameter.  Honor it.
* guix/http.scm (http-fetch): Likewise.
This commit is contained in:
Ludovic Courtès 2012-10-17 23:55:38 +02:00
parent d14ecda913
commit d6e8777688
3 changed files with 254 additions and 171 deletions

View File

@ -1424,6 +1424,46 @@ $out/bin/guile --version~%"
(home-page #f) (home-page #f)
(license "LGPLv3+")))) (license "LGPLv3+"))))
(define (bootstrap-origin source)
"Return a variant of SOURCE, an <origin> instance, whose method uses
%BOOTSTRAP-GUILE to do its job."
(define (boot fetch)
(lambda* (store url hash-algo hash #:optional name)
(fetch store url hash-algo hash
#:guile %bootstrap-guile)))
(let ((orig-method (origin-method source)))
(origin (inherit source)
(method (cond ((eq? orig-method http-fetch)
(boot http-fetch))
((eq? orig-method ftp-fetch)
(boot ftp-fetch))
(else orig-method))))))
(define package-with-bootstrap-guile
(memoize
(lambda (p)
"Return a variant of P such that all its origins are fetched with
%BOOTSTRAP-GUILE."
(define rewritten-input
(match-lambda
((name (? origin? o))
`(,name ,(bootstrap-origin o)))
((name (? package? p) sub-drvs ...)
`(,name ,(package-with-bootstrap-guile p) ,@sub-drvs))
(x x)))
(package (inherit p)
(source (match (package-source p)
((? origin? o) (bootstrap-origin o))
(s s)))
(inputs (map rewritten-input
(package-inputs p)))
(native-inputs (map rewritten-input
(package-native-inputs p)))
(propagated-inputs (map rewritten-input
(package-propagated-inputs p)))))))
(define (default-keyword-arguments args defaults) (define (default-keyword-arguments args defaults)
"Return ARGS augmented with any keyword/value from DEFAULTS for "Return ARGS augmented with any keyword/value from DEFAULTS for
keywords not already present in ARGS." keywords not already present in ARGS."
@ -1456,6 +1496,7 @@ previous value of the keyword argument."
(reverse before))))))) (reverse before)))))))
(define gnu-make-boot0 (define gnu-make-boot0
(package-with-bootstrap-guile
(package (inherit gnu-make) (package (inherit gnu-make)
(name "make-boot0") (name "make-boot0")
(location (source-properties->location (current-source-location))) (location (source-properties->location (current-source-location)))
@ -1474,9 +1515,10 @@ previous value of the keyword argument."
(copy-file "make" (copy-file "make"
(string-append bin "/make")))) (string-append bin "/make"))))
%standard-phases)))) %standard-phases))))
(inputs %bootstrap-inputs))) (inputs %bootstrap-inputs))))
(define diffutils-boot0 (define diffutils-boot0
(package-with-bootstrap-guile
(let ((p (package-with-explicit-inputs diffutils (let ((p (package-with-explicit-inputs diffutils
`(("make" ,gnu-make-boot0) `(("make" ,gnu-make-boot0)
,@%bootstrap-inputs) ,@%bootstrap-inputs)
@ -1484,15 +1526,16 @@ previous value of the keyword argument."
(package (inherit p) (package (inherit p)
(location (source-properties->location (current-source-location))) (location (source-properties->location (current-source-location)))
(arguments `(#:tests? #f ; the test suite needs diffutils (arguments `(#:tests? #f ; the test suite needs diffutils
,@(package-arguments p)))))) ,@(package-arguments p)))))))
(define findutils-boot0 (define findutils-boot0
(package-with-bootstrap-guile
(package-with-explicit-inputs findutils (package-with-explicit-inputs findutils
`(("make" ,gnu-make-boot0) `(("make" ,gnu-make-boot0)
("diffutils" ,diffutils-boot0) ; for tests ("diffutils" ,diffutils-boot0) ; for tests
,@%bootstrap-inputs) ,@%bootstrap-inputs)
(current-source-location) (current-source-location)
#:guile %bootstrap-guile)) #:guile %bootstrap-guile)))
(define %boot0-inputs (define %boot0-inputs
@ -1524,6 +1567,7 @@ identifier SYSTEM."
;; GCC-BOOT0 (below) is built without any reference to the target libc. ;; GCC-BOOT0 (below) is built without any reference to the target libc.
(define binutils-boot0 (define binutils-boot0
(package-with-bootstrap-guile
(package (inherit binutils) (package (inherit binutils)
(name "binutils-cross-boot0") (name "binutils-cross-boot0")
(arguments (arguments
@ -1533,9 +1577,10 @@ identifier SYSTEM."
,@(substitute-keyword-arguments (package-arguments binutils) ,@(substitute-keyword-arguments (package-arguments binutils)
((#:configure-flags cf) ((#:configure-flags cf)
`(list ,(string-append "--target=" (boot-triplet system)))))))) `(list ,(string-append "--target=" (boot-triplet system))))))))
(inputs %boot0-inputs))) (inputs %boot0-inputs))))
(define gcc-boot0 (define gcc-boot0
(package-with-bootstrap-guile
(package (inherit gcc-4.7) (package (inherit gcc-4.7)
(name "gcc-cross-boot0") (name "gcc-cross-boot0")
(arguments (arguments
@ -1624,9 +1669,10 @@ identifier SYSTEM."
;; Call it differently so that the builder can check whether ;; Call it differently so that the builder can check whether
;; the "libc" input is #f. ;; the "libc" input is #f.
("libc-native" ,@(assoc-ref %boot0-inputs "libc")) ("libc-native" ,@(assoc-ref %boot0-inputs "libc"))
,@(alist-delete "libc" %boot0-inputs))))) ,@(alist-delete "libc" %boot0-inputs))))))
(define linux-libre-headers-boot0 (define linux-libre-headers-boot0
(package-with-bootstrap-guile
(package (inherit linux-libre-headers) (package (inherit linux-libre-headers)
(arguments `(#:guile ,%bootstrap-guile (arguments `(#:guile ,%bootstrap-guile
#:implicit-inputs? #f #:implicit-inputs? #f
@ -1637,7 +1683,7 @@ identifier SYSTEM."
(current-source-location) (current-source-location)
#:guile %bootstrap-guile))) #:guile %bootstrap-guile)))
`(("perl" ,perl) `(("perl" ,perl)
,@%boot0-inputs))))) ,@%boot0-inputs))))))
(define %boot1-inputs (define %boot1-inputs
;; 2nd stage inputs. ;; 2nd stage inputs.
@ -1651,6 +1697,7 @@ identifier SYSTEM."
(define-public glibc-final (define-public glibc-final
;; The final libc, "cross-built". If everything went well, the resulting ;; The final libc, "cross-built". If everything went well, the resulting
;; store path has no dependencies. ;; store path has no dependencies.
(package-with-bootstrap-guile
(package (inherit glibc) (package (inherit glibc)
(arguments (arguments
(lambda (system) (lambda (system)
@ -1676,13 +1723,14 @@ identifier SYSTEM."
(propagated-inputs `(("linux-headers" ,linux-libre-headers-boot0))) (propagated-inputs `(("linux-headers" ,linux-libre-headers-boot0)))
(inputs `( ;; A native GCC is needed to build `cross-rpcgen'. (inputs `( ;; A native GCC is needed to build `cross-rpcgen'.
("native-gcc" ,@(assoc-ref %boot0-inputs "gcc")) ("native-gcc" ,@(assoc-ref %boot0-inputs "gcc"))
,@%boot1-inputs)))) ,@%boot1-inputs)))))
(define gcc-boot0-wrapped (define gcc-boot0-wrapped
;; Make the cross-tools GCC-BOOT0 and BINUTILS-BOOT0 available under the ;; Make the cross-tools GCC-BOOT0 and BINUTILS-BOOT0 available under the
;; non-cross names. ;; non-cross names.
(package (inherit gcc-4.7) (package (inherit gcc-4.7)
(name (string-append (package-name gcc-boot0) "-wrapped")) (name (string-append (package-name gcc-boot0) "-wrapped"))
(source #f)
(build-system trivial-build-system) (build-system trivial-build-system)
(arguments (arguments
(lambda (system) (lambda (system)
@ -1821,16 +1869,18 @@ store.")
,@(alist-delete "gcc" %boot2-inputs))) ,@(alist-delete "gcc" %boot2-inputs)))
(define-public bash-final (define-public bash-final
(package-with-bootstrap-guile
(package-with-explicit-inputs bash %boot3-inputs (package-with-explicit-inputs bash %boot3-inputs
(current-source-location) (current-source-location)
#:guile %bootstrap-guile)) #:guile %bootstrap-guile)))
(define-public guile-final (define-public guile-final
(package-with-bootstrap-guile
(package-with-explicit-inputs guile-2.0 (package-with-explicit-inputs guile-2.0
`(("bash" ,bash-final) `(("bash" ,bash-final)
,@(alist-delete "bash" %boot3-inputs)) ,@(alist-delete "bash" %boot3-inputs))
(current-source-location) (current-source-location)
#:guile %bootstrap-guile)) #:guile %bootstrap-guile)))
(define-public ld-wrapper (define-public ld-wrapper
;; The final `ld' wrapper, which uses the final Guile. ;; The final `ld' wrapper, which uses the final Guile.

View File

@ -17,7 +17,10 @@
;;; along with Guix. If not, see <ftp://www.gnu.org/licenses/>. ;;; along with Guix. If not, see <ftp://www.gnu.org/licenses/>.
(define-module (guix ftp) (define-module (guix ftp)
#:use-module (ice-9 match)
#:use-module (guix derivations) #:use-module (guix derivations)
#:use-module (guix packages)
#:use-module ((guix store) #:select (derivation-path?))
#:use-module (guix utils) #:use-module (guix utils)
#:export (ftp-fetch)) #:export (ftp-fetch))
@ -29,7 +32,7 @@
(define* (ftp-fetch store url hash-algo hash (define* (ftp-fetch store url hash-algo hash
#:optional name #:optional name
#:key (system (%current-system))) #:key (system (%current-system)) guile)
"Return the path of a fixed-output derivation in STORE that fetches URL, "Return the path of a fixed-output derivation in STORE that fetches URL,
which is expected to have hash HASH of type HASH-ALGO (a symbol). By which is expected to have hash HASH of type HASH-ALGO (a symbol). By
default, the file name is the base name of URL; optionally, NAME can specify default, the file name is the base name of URL; optionally, NAME can specify
@ -39,11 +42,24 @@ a different file name."
(use-modules (guix build ftp)) (use-modules (guix build ftp))
(ftp-fetch ,url %output))) (ftp-fetch ,url %output)))
(define guile-for-build
(match guile
((? package?)
(package-derivation store guile system))
((and (? string?) (? derivation-path?))
guile)
(#f ; the default
(let* ((distro (resolve-interface '(distro packages base)))
(guile (module-ref distro 'guile-final)))
(package-derivation store guile system)))))
(build-expression->derivation store (or name (basename url)) system (build-expression->derivation store (or name (basename url)) system
builder '() builder '()
#:hash-algo hash-algo #:hash-algo hash-algo
#:hash hash #:hash hash
#:modules '((guix ftp-client) #:modules '((guix ftp-client)
(guix build ftp) (guix build ftp)
(guix build utils)))) (guix build utils))
#:guile-for-build guile-for-build))
;;; ftp.scm ends here ;;; ftp.scm ends here

View File

@ -17,7 +17,10 @@
;;; along with Guix. If not, see <http://www.gnu.org/licenses/>. ;;; along with Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (guix http) (define-module (guix http)
#:use-module (ice-9 match)
#:use-module (guix derivations) #:use-module (guix derivations)
#:use-module (guix packages)
#:use-module ((guix store) #:select (derivation-path?))
#:use-module (guix utils) #:use-module (guix utils)
#:export (http-fetch)) #:export (http-fetch))
@ -29,7 +32,7 @@
(define* (http-fetch store url hash-algo hash (define* (http-fetch store url hash-algo hash
#:optional name #:optional name
#:key (system (%current-system))) #:key (system (%current-system)) guile)
"Return the path of a fixed-output derivation in STORE that fetches URL, "Return the path of a fixed-output derivation in STORE that fetches URL,
which is expected to have hash HASH of type HASH-ALGO (a symbol). By which is expected to have hash HASH of type HASH-ALGO (a symbol). By
default, the file name is the base name of URL; optionally, NAME can specify default, the file name is the base name of URL; optionally, NAME can specify
@ -39,8 +42,22 @@ a different file name."
(use-modules (guix build http)) (use-modules (guix build http))
(http-fetch ,url %output))) (http-fetch ,url %output)))
(define guile-for-build
(match guile
((? package?)
(package-derivation store guile system))
((and (? string?) (? derivation-path?))
guile)
(#f ; the default
(let* ((distro (resolve-interface '(distro packages base)))
(guile (module-ref distro 'guile-final)))
(package-derivation store guile system)))))
(build-expression->derivation store (or name (basename url)) system (build-expression->derivation store (or name (basename url)) system
builder '() builder '()
#:hash-algo hash-algo #:hash-algo hash-algo
#:hash hash #:hash hash
#:modules '((guix build http)))) #:modules '((guix build http))
#:guile-for-build guile-for-build))
;;; http.scm ends here