[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/10: guix build: Transformations operate on single objects.
From: |
Ludovic Courtès |
Subject: |
03/10: guix build: Transformations operate on single objects. |
Date: |
Mon, 01 Feb 2016 09:12:59 +0000 |
civodul pushed a commit to branch master
in repository guix.
commit 629a064f3244e8cd13114842969de7e3b6b02f46
Author: Ludovic Courtès <address@hidden>
Date: Sun Jan 31 20:18:52 2016 +0100
guix build: Transformations operate on single objects.
* guix/scripts/build.scm (transform-package-source): Return a procedure
that expects a single object rather than a list of packages.
(options->transformation): Rewrite to precompute the list of applicable
transformations and to return a procedure that expects a single object
rather than a list of objects.
(options->derivations): Adjust accordingly.
* tests/scripts-build.scm: New file.
* Makefile.am (SCM_TESTS): Add it.
---
Makefile.am | 1 +
guix/scripts/build.scm | 77 +++++++++++++++++++++++++----------------------
tests/scripts-build.scm | 65 +++++++++++++++++++++++++++++++++++++++
3 files changed, 107 insertions(+), 36 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index 6784da0..dea26c8 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -243,6 +243,7 @@ SCM_TESTS = \
tests/file-systems.scm \
tests/system.scm \
tests/services.scm \
+ tests/scripts-build.scm \
tests/containers.scm \
tests/import-utils.scm
diff --git a/guix/scripts/build.scm b/guix/scripts/build.scm
index 7ca2c6e..77f7a0c 100644
--- a/guix/scripts/build.scm
+++ b/guix/scripts/build.scm
@@ -41,6 +41,7 @@
set-build-options-from-command-line
set-build-options-from-command-line*
show-build-options-help
+ options->transformation
guix-build))
@@ -484,39 +485,29 @@ build."
(set-guile-for-build (default-guile))
(gexp->derivation "gexp" gexp
#:system system))))))
- (transform store (options->things-to-build opts)))))
+ (map (cut transform store <>)
+ (options->things-to-build opts)))))
(define (transform-package-source sources)
- "Return a transformation procedure that uses replaces package sources with
-the matching URIs given in SOURCES."
+ "Return a transformation procedure that replaces package sources with the
+matching URIs given in SOURCES."
(define new-sources
(map (lambda (uri)
(cons (package-name->name+version (basename uri))
uri))
sources))
- (lambda (store packages)
- (let loop ((packages packages)
- (sources new-sources)
+ (lambda (store obj)
+ (let loop ((sources new-sources)
(result '()))
- (match packages
- (()
- (unless (null? sources)
- (warning (_ "sources do not match any package:~{ ~a~}~%")
- (match sources
- (((name . uri) ...)
- uri))))
- (reverse result))
- (((? package? p) tail ...)
+ (match obj
+ ((? package? p)
(let ((source (assoc-ref sources (package-name p))))
- (loop tail
- (alist-delete (package-name p) sources)
- (cons (if source
- (package-with-source store p source)
- p)
- result))))
- ((thing tail ...)
- (loop tail sources result))))))
+ (if source
+ (package-with-source store p source)
+ p)))
+ (_
+ obj)))))
(define %transformations
;; Transformations that can be applied to things to build. The car is the
@@ -526,19 +517,33 @@ the matching URIs given in SOURCES."
`((with-source . ,transform-package-source)))
(define (options->transformation opts)
- "Return a procedure that, when passed a list of things to build (packages,
-derivations, etc.), applies the transformations specified by OPTS."
- (apply compose
- (map (match-lambda
- ((key . transform)
- (let ((args (filter-map (match-lambda
- ((k . arg)
- (and (eq? k key) arg)))
- opts)))
- (if (null? args)
- (lambda (store things) things)
- (transform args)))))
- %transformations)))
+ "Return a procedure that, when passed an object to build (package,
+derivation, etc.), applies the transformations specified by OPTS."
+ (define applicable
+ ;; List of applicable transformations as symbol/procedure pairs.
+ (filter-map (match-lambda
+ ((key . transform)
+ (match (filter-map (match-lambda
+ ((k . arg)
+ (and (eq? k key) arg)))
+ opts)
+ (() #f)
+ (args (cons key (transform args))))))
+ %transformations))
+
+ (lambda (store obj)
+ (fold (match-lambda*
+ (((name . transform) obj)
+ (let ((new (transform store obj)))
+ (when (eq? new obj)
+ (warning (_ "transformation '~a' had no effect on ~a~%")
+ name
+ (if (package? obj)
+ (package-full-name obj)
+ obj)))
+ new)))
+ obj
+ applicable)))
(define (show-build-log store file urls)
"Show the build log for FILE, falling back to remote logs from URLS if
diff --git a/tests/scripts-build.scm b/tests/scripts-build.scm
new file mode 100644
index 0000000..75dc119
--- /dev/null
+++ b/tests/scripts-build.scm
@@ -0,0 +1,65 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2016 Ludovic Courtès <address@hidden>
+;;;
+;;; 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/>.
+
+(define-module (test-scripts-build)
+ #:use-module (guix tests)
+ #:use-module (guix store)
+ #:use-module (guix packages)
+ #:use-module (guix scripts build)
+ #:use-module (guix ui)
+ #:use-module (srfi srfi-64))
+
+
+(test-begin "scripts-build")
+
+(test-assert "options->transformation, no transformations"
+ (let ((p (dummy-package "foo"))
+ (t (options->transformation '())))
+ (with-store store
+ (eq? (t store p) p))))
+
+(test-assert "options->transformation, with-source"
+ ;; Our pseudo-package is called 'guix.scm' so the 'guix.scm' source should
+ ;; be applicable.
+ (let* ((p (dummy-package "guix.scm"))
+ (s (search-path %load-path "guix.scm"))
+ (t (options->transformation `((with-source . ,s)))))
+ (with-store store
+ (let ((new (t store p)))
+ (and (not (eq? new p))
+ (string=? (package-source new)
+ (add-to-store store "guix.scm" #t
+ "sha256" s)))))))
+
+(test-assert "options->transformation, with-source, no matches"
+ ;; When a transformation in not applicable, a warning must be raised.
+ (let* ((p (dummy-package "foobar"))
+ (s (search-path %load-path "guix.scm"))
+ (t (options->transformation `((with-source . ,s)))))
+ (with-store store
+ (let* ((port (open-output-string))
+ (new (parameterize ((guix-warning-port port))
+ (t store p))))
+ (and (eq? new p)
+ (string-contains (get-output-string port)
+ "had no effect"))))))
+
+(test-end)
+
+
+(exit (= (test-runner-fail-count (test-runner-current)) 0))
- branch master updated (e3f755f -> 47c0f92), Ludovic Courtès, 2016/02/01
- 02/10: install: Make it clear that we refer to the root by label., Ludovic Courtès, 2016/02/01
- 01/10: build: Use the right section and source for man pages., Ludovic Courtès, 2016/02/01
- 06/10: guix package: Support package transformation options., Ludovic Courtès, 2016/02/01
- 07/10: build: Really enable Guile warnings., Ludovic Courtès, 2016/02/01
- 08/10: build: Remove semicolons from Guile warnings., Ludovic Courtès, 2016/02/01
- 05/10: guix build: Separate transformation options., Ludovic Courtès, 2016/02/01
- 04/10: doc: Add subsections to 'Invoking guix build'., Ludovic Courtès, 2016/02/01
- 03/10: guix build: Transformations operate on single objects.,
Ludovic Courtès <=
- 09/10: build-system/python: Use 'ensure-keyword-arguments'., Ludovic Courtès, 2016/02/01
- 10/10: guix build: Add '--with-input'., Ludovic Courtès, 2016/02/01