guix build: Transformation options match packages by spec.

This allows us to combine several transformations on a given package, in
particular '--with-git-url' and '--with-branch'.

Previously transformations would ignore each other since they would all
take (specification->package SOURCE) as their replacement source,
compare it by identity, which doesn't work if a previous transformation
has already changed SOURCE.

* guix/scripts/build.scm (evaluate-replacement-specs): Adjust to produce
an alist as expected by 'package-input-rewriting/spec', with a package
spec as the first element of each pair.
(evaluate-git-replacement-specs): Likewise.
(transform-package-inputs):  Adjust accordingly and use
'package-input-rewriting/spec'.
(transform-package-inputs/graft): Likewise.
(transform-package-source-branch, transform-package-source-commit): Use
'package-input-rewriting/spec'.
(transform-package-source-git-url): Likewise, and adjust the
REPLACEMENTS alist accordingly.
(options->transformation): Iterate over OPTS instead of over
%TRANSFORMATIONS.  Invoke transformations one by one.
* tests/scripts-build.scm ("options->transformation, with-input"):
Adjust test to compare packages by name rather than by identity.
("options->transformation, with-git-url + with-branch"): New test.
This commit is contained in:
Ludovic Courtès 2019-03-13 10:11:54 +01:00 committed by Ludovic Courtès
parent 0c0ff42a24
commit 14328b81a2
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
3 changed files with 97 additions and 53 deletions

View File

@ -7807,16 +7807,20 @@ care!
@cindex Git, using the latest commit @cindex Git, using the latest commit
@cindex latest commit, building @cindex latest commit, building
Build @var{package} from the latest commit of the @code{master} branch of the Build @var{package} from the latest commit of the @code{master} branch of the
Git repository at @var{url}. Git repository at @var{url}. Git sub-modules of the repository are fetched,
recursively.
For example, the following commands builds the GNU C Library (glibc) straight For example, the following command builds the NumPy Python library against the
from its Git repository instead of building the currently-packaged release: latest commit of the master branch of Python itself:
@example @example
guix build glibc \ guix build python-numpy \
--with-git-url=glibc=git://sourceware.org/git/glibc.git --with-git-url=python=https://github.com/python/cpython
@end example @end example
This option can also be combined with @code{--with-branch} or
@code{--with-commit} (see below).
@cindex continuous integration @cindex continuous integration
Obviously, since it uses the latest commit of the given branch, the result of Obviously, since it uses the latest commit of the given branch, the result of
such a command varies over time. Nevertheless it is a convenient way to such a command varies over time. Nevertheless it is a convenient way to
@ -7829,11 +7833,11 @@ consecutive accesses to the same repository. You may want to clean it up once
in a while to save disk space. in a while to save disk space.
@item --with-branch=@var{package}=@var{branch} @item --with-branch=@var{package}=@var{branch}
Build @var{package} from the latest commit of @var{branch}. The @code{source} Build @var{package} from the latest commit of @var{branch}. If the
field of @var{package} must be an origin with the @code{git-fetch} method @code{source} field of @var{package} is an origin with the @code{git-fetch}
(@pxref{origin Reference}) or a @code{git-checkout} object; the repository URL method (@pxref{origin Reference}) or a @code{git-checkout} object, the
is taken from that @code{source}. Git sub-modules of the repository are repository URL is taken from that @code{source}. Otherwise you have to use
fetched, recursively. @code{--with-git-url} to specify the URL of the Git repository.
For instance, the following command builds @code{guile-sqlite3} from the For instance, the following command builds @code{guile-sqlite3} from the
latest commit of its @code{master} branch, and then builds @code{guix} (which latest commit of its @code{master} branch, and then builds @code{guix} (which

View File

@ -226,18 +226,21 @@ matching URIs given in SOURCES."
obj))))) obj)))))
(define (evaluate-replacement-specs specs proc) (define (evaluate-replacement-specs specs proc)
"Parse SPECS, a list of strings like \"guile=guile@2.1\", and invoke PROC on "Parse SPECS, a list of strings like \"guile=guile@2.1\" and return a list
each package pair specified by SPECS. Return the resulting list. Raise an of package spec/procedure pairs as expected by 'package-input-rewriting/spec'.
error if an element of SPECS uses invalid syntax, or if a package it refers to PROC is called with the package to be replaced and its replacement according
could not be found." to SPECS. Raise an error if an element of SPECS uses invalid syntax, or if a
package it refers to could not be found."
(define not-equal (define not-equal
(char-set-complement (char-set #\=))) (char-set-complement (char-set #\=)))
(map (lambda (spec) (map (lambda (spec)
(match (string-tokenize spec not-equal) (match (string-tokenize spec not-equal)
((old new) ((spec new)
(proc (specification->package old) (cons spec
(specification->package new))) (let ((new (specification->package new)))
(lambda (old)
(proc old new)))))
(x (x
(leave (G_ "invalid replacement specification: ~s~%") spec)))) (leave (G_ "invalid replacement specification: ~s~%") spec))))
specs)) specs))
@ -248,8 +251,10 @@ dependencies according to REPLACEMENT-SPECS. REPLACEMENT-SPECS is a list of
strings like \"guile=guile@2.1\" meaning that, any dependency on a package strings like \"guile=guile@2.1\" meaning that, any dependency on a package
called \"guile\" must be replaced with a dependency on a version 2.1 of called \"guile\" must be replaced with a dependency on a version 2.1 of
\"guile\"." \"guile\"."
(let* ((replacements (evaluate-replacement-specs replacement-specs cons)) (let* ((replacements (evaluate-replacement-specs replacement-specs
(rewrite (package-input-rewriting replacements))) (lambda (old new)
new)))
(rewrite (package-input-rewriting/spec replacements)))
(lambda (store obj) (lambda (store obj)
(if (package? obj) (if (package? obj)
(rewrite obj) (rewrite obj)
@ -260,13 +265,12 @@ called \"guile\" must be replaced with a dependency on a version 2.1 of
dependencies according to REPLACEMENT-SPECS. REPLACEMENT-SPECS is a list of dependencies according to REPLACEMENT-SPECS. REPLACEMENT-SPECS is a list of
strings like \"gnutls=gnutls@3.5.4\" meaning that packages are built using the strings like \"gnutls=gnutls@3.5.4\" meaning that packages are built using the
current 'gnutls' package, after which version 3.5.4 is grafted onto them." current 'gnutls' package, after which version 3.5.4 is grafted onto them."
(define (replacement-pair old new) (define (set-replacement old new)
(cons old (package (inherit old) (replacement new)))
(package (inherit old) (replacement new))))
(let* ((replacements (evaluate-replacement-specs replacement-specs (let* ((replacements (evaluate-replacement-specs replacement-specs
replacement-pair)) set-replacement))
(rewrite (package-input-rewriting replacements))) (rewrite (package-input-rewriting/spec replacements)))
(lambda (store obj) (lambda (store obj)
(if (package? obj) (if (package? obj)
(rewrite obj) (rewrite obj)
@ -295,11 +299,13 @@ replacement package. Raise an error if an element of SPECS uses invalid
syntax, or if a package it refers to could not be found." syntax, or if a package it refers to could not be found."
(map (lambda (spec) (map (lambda (spec)
(match (string-tokenize spec %not-equal) (match (string-tokenize spec %not-equal)
((name branch-or-commit) ((spec branch-or-commit)
(let* ((old (specification->package name)) (define (replace old)
(source (package-source old)) (let* ((source (package-source old))
(url (package-git-url old))) (url (package-git-url old)))
(cons old (proc old url branch-or-commit)))) (proc old url branch-or-commit)))
(cons spec replace))
(x (x
(leave (G_ "invalid replacement specification: ~s~%") spec)))) (leave (G_ "invalid replacement specification: ~s~%") spec))))
specs)) specs))
@ -318,7 +324,7 @@ strings like \"guile-next=stable-3.0\" meaning that packages are built using
(let* ((replacements (evaluate-git-replacement-specs replacement-specs (let* ((replacements (evaluate-git-replacement-specs replacement-specs
replace)) replace))
(rewrite (package-input-rewriting replacements))) (rewrite (package-input-rewriting/spec replacements)))
(lambda (store obj) (lambda (store obj)
(if (package? obj) (if (package? obj)
(rewrite obj) (rewrite obj)
@ -340,7 +346,7 @@ strings like \"guile-next=cabba9e\" meaning that packages are built using
(let* ((replacements (evaluate-git-replacement-specs replacement-specs (let* ((replacements (evaluate-git-replacement-specs replacement-specs
replace)) replace))
(rewrite (package-input-rewriting replacements))) (rewrite (package-input-rewriting/spec replacements)))
(lambda (store obj) (lambda (store obj)
(if (package? obj) (if (package? obj)
(rewrite obj) (rewrite obj)
@ -351,22 +357,20 @@ strings like \"guile-next=cabba9e\" meaning that packages are built using
according to REPLACEMENT-SPECS. REPLACEMENT-SPECS is a list of strings like according to REPLACEMENT-SPECS. REPLACEMENT-SPECS is a list of strings like
\"guile-json=https://gitthing.com/…\" meaning that packages are built using \"guile-json=https://gitthing.com/…\" meaning that packages are built using
a checkout of the Git repository at the given URL." a checkout of the Git repository at the given URL."
;; FIXME: Currently this cannot be combined with '--with-branch' or
;; '--with-commit' because they all transform "from scratch".
(define replacements (define replacements
(map (lambda (spec) (map (lambda (spec)
(match (string-tokenize spec %not-equal) (match (string-tokenize spec %not-equal)
((name url) ((spec url)
(let* ((old (specification->package name)) (cons spec
(new (package (lambda (old)
(inherit old) (package
(source (git-checkout (url url) (inherit old)
(recursive? #t)))))) (source (git-checkout (url url)
(cons old new))))) (recursive? #t)))))))))
replacement-specs)) replacement-specs))
(define rewrite (define rewrite
(package-input-rewriting replacements)) (package-input-rewriting/spec replacements))
(lambda (store obj) (lambda (store obj)
(if (package? obj) (if (package? obj)
@ -430,16 +434,22 @@ a checkout of the Git repository at the given URL."
"Return a procedure that, when passed an object to build (package, "Return a procedure that, when passed an object to build (package,
derivation, etc.), applies the transformations specified by OPTS." derivation, etc.), applies the transformations specified by OPTS."
(define applicable (define applicable
;; List of applicable transformations as symbol/procedure pairs. ;; List of applicable transformations as symbol/procedure pairs in the
;; order in which they appear on the command line.
(filter-map (match-lambda (filter-map (match-lambda
((key . transform) ((key . value)
(match (filter-map (match-lambda (match (any (match-lambda
((k . arg) ((k . proc)
(and (eq? k key) arg))) (and (eq? k key) proc)))
opts) %transformations)
(() #f) (#f
(args (cons key (transform args)))))) #f)
%transformations)) (transform
;; XXX: We used to pass TRANSFORM a list of several
;; arguments, but we now pass only one, assuming that
;; transform composes well.
(cons key (transform (list value)))))))
(reverse opts)))
(lambda (store obj) (lambda (store obj)
(fold (match-lambda* (fold (match-lambda*

View File

@ -139,12 +139,15 @@
(and (not (eq? new p)) (and (not (eq? new p))
(match (package-inputs new) (match (package-inputs new)
((("foo" dep1) ("bar" dep2) ("baz" dep3)) ((("foo" dep1) ("bar" dep2) ("baz" dep3))
(and (eq? dep1 busybox) (and (string=? (package-full-name dep1)
(eq? dep2 findutils) (package-full-name busybox))
(string=? (package-full-name dep2)
(package-full-name findutils))
(string=? (package-name dep3) "chbouib") (string=? (package-name dep3) "chbouib")
(match (package-native-inputs dep3) (match (package-native-inputs dep3)
((("x" dep)) ((("x" dep))
(eq? dep findutils))))))))))) (string=? (package-full-name dep)
(package-full-name findutils))))))))))))
(test-assert "options->transformation, with-graft" (test-assert "options->transformation, with-graft"
(let* ((p (dummy-package "guix.scm" (let* ((p (dummy-package "guix.scm"
@ -186,4 +189,31 @@
((("x" dep3)) ((("x" dep3))
(map package-source (list dep1 dep3)))))))))))) (map package-source (list dep1 dep3))))))))))))
(test-equal "options->transformation, with-git-url + with-branch"
;; Combine the two options and make sure the 'with-branch' transformation
;; comes after the 'with-git-url' transformation.
(let ((source (git-checkout (url "https://example.org")
(branch "BRANCH")
(recursive? #t))))
(list source source))
(let* ((p (dummy-package "guix.scm"
(inputs `(("foo" ,grep)
("bar" ,(dummy-package "chbouib"
(native-inputs `(("x" ,grep)))))))))
(t (options->transformation
(reverse '((with-git-url
. "grep=https://example.org")
(with-branch . "grep=BRANCH"))))))
(with-store store
(let ((new (t store p)))
(and (not (eq? new p))
(match (package-inputs new)
((("foo" dep1) ("bar" dep2))
(and (string=? (package-name dep1) "grep")
(string=? (package-name dep2) "chbouib")
(match (package-native-inputs dep2)
((("x" dep3))
(map package-source (list dep1 dep3))))))))))))
(test-end) (test-end)