diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-03-04 17:04:35 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-03-04 17:23:27 +0100 |
commit | 6d0b9d03ced244093c026b3433ec06643d78236c (patch) | |
tree | feda4f852f446f47307285db5305917c3a752980 /guix | |
parent | 0e309f1e5bc78dfc1366f40e4071b2fd0979178f (diff) | |
download | gnu-guix-6d0b9d03ced244093c026b3433ec06643d78236c.tar gnu-guix-6d0b9d03ced244093c026b3433ec06643d78236c.tar.gz |
tests: Remove dependency on 'glibc-utf8-locales' for profile tests.
This fixes a regression introduced in commit 536c3ee.
* guix/profiles.scm (ca-certificate-bundle): When MANIFEST is empty,
make a trivial derivation.
* guix/scripts/package.scm (guix-package)[process-actions]: Pass
#:ca-certificate-bundle? to 'profile-generation'.
* tests/packages.scm ("--search-paths with pattern"): Likewise.
* tests/profiles.scm ("profile-derivation"): Likewise.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/profiles.scm | 10 | ||||
-rw-r--r-- | guix/scripts/package.scm | 3 |
2 files changed, 9 insertions, 4 deletions
diff --git a/guix/profiles.scm b/guix/profiles.scm index 5ceba25def..d62674923f 100644 --- a/guix/profiles.scm +++ b/guix/profiles.scm @@ -464,9 +464,13 @@ MANIFEST. Single-file bundles are required by programs such as Git and Lynx." (string-append result "/ca-certificates.crt"))))) - (gexp->derivation "ca-certificate-bundle" build - #:modules '((guix build utils)) - #:local-build? #t)) + ;; Don't depend on 'glibc-utf8-locales' and its dependencies when there's + ;; nothing to do. + (if (null? (manifest-entries manifest)) + (gexp->derivation "ca-certificate-bundle" #~(mkdir #$output)) + (gexp->derivation "ca-certificate-bundle" build + #:modules '((guix build utils)) + #:local-build? #t))) (define* (profile-derivation manifest #:key diff --git a/guix/scripts/package.scm b/guix/scripts/package.scm index c27207f29a..a24c657ef6 100644 --- a/guix/scripts/package.scm +++ b/guix/scripts/package.scm @@ -829,7 +829,8 @@ more information.~%")) (let* ((prof-drv (run-with-store (%store) (profile-derivation new - #:info-dir? (not bootstrap?)))) + #:info-dir? (not bootstrap?) + #:ca-certificate-bundle? (not bootstrap?)))) (prof (derivation->output-path prof-drv))) (show-manifest-transaction (%store) manifest transaction #:dry-run? dry-run?) |