diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-03-19 17:30:44 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-03-19 18:14:22 +0100 |
commit | f6396d862f9f8ce0c0e6894ce30599773167af0c (patch) | |
tree | b7c3bd56c7799309136421bc587e7d1ebee5e967 /tests/guix-build.sh | |
parent | 8df672aad5dc8d93da750c96f472ba2155d51da1 (diff) | |
download | patches-f6396d862f9f8ce0c0e6894ce30599773167af0c.tar patches-f6396d862f9f8ce0c0e6894ce30599773167af0c.tar.gz |
gnu: Rename "guile-next" to "guile".
* gnu/packages/guile.scm (guile-next): Rename to...
(guile-2.2): ... this. Update users.
[name]: Change to "guile".
[synopsis]: Remove.
[properties]: Remove 'upstream-name', 'ftp-server', and
'ftp-directory'.
* gnu/packages/bioinformatics.scm (rcas-web): Update accordingly.
* gnu/packages/tls.scm (gnutls/guile-2.2): Likewise.
* tests/guix-build.sh: Use 'guile@2.2' instead of 'guile-next'.
* doc/guix.texi (Package Transformation Options): Update examples that
referred to "guile-next".
Diffstat (limited to 'tests/guix-build.sh')
-rw-r--r-- | tests/guix-build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/guix-build.sh b/tests/guix-build.sh index e1ec560641..ab911b7210 100644 --- a/tests/guix-build.sh +++ b/tests/guix-build.sh @@ -1,5 +1,5 @@ # GNU Guix --- Functional package management for GNU -# Copyright © 2012, 2013, 2014, 2016 Ludovic Courtès <ludo@gnu.org> +# Copyright © 2012, 2013, 2014, 2016, 2017 Ludovic Courtès <ludo@gnu.org> # # This file is part of GNU Guix. # @@ -160,7 +160,7 @@ rm -f "$result" guix build coreutils --target=mips64el-linux-gnu --dry-run --no-substitutes # Replacements. -drv1=`guix build guix --with-input=guile=guile-next -d` +drv1=`guix build guix --with-input=guile@2.0=guile@2.2 -d` drv2=`guix build guix -d` test "$drv1" != "$drv2" |