diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-05-01 15:45:41 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-05-01 17:27:54 +0200 |
commit | e30c2be10da8929e42aafc7770257e84de49ffbb (patch) | |
tree | b231b51f23698b095a096a52614ae179162591c5 /tests | |
parent | 6d1a5e5ffdbb7d15ffad7918213d96ee8c6e9164 (diff) | |
download | patches-e30c2be10da8929e42aafc7770257e84de49ffbb.tar patches-e30c2be10da8929e42aafc7770257e84de49ffbb.tar.gz |
packages: Remove support for PACKAGE-VERSION deprecated syntax.
This syntax had been deprecated since 2016-02-28.
* gnu/packages.scm (%find-package): Remove #:fallback? parameter and handling.
* tests/guix-build.sh: Remove test for "time-1.7" syntax.
* doc/guix.texi (Invoking guix lint): Update 'guix lint' output in example.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/guix-build.sh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/guix-build.sh b/tests/guix-build.sh index 9494e7371f..880a582777 100644 --- a/tests/guix-build.sh +++ b/tests/guix-build.sh @@ -185,7 +185,6 @@ test "`guix build superseded -d`" = "`guix build bar -d`" # Parsing package names and versions. guix build -n time # PASS guix build -n time@1.7 # PASS, version found -guix build -n time-1.7 # PASS, deprecated version syntax if guix build -n time@3.2; # FAIL, version not found then false; else true; fi if guix build -n something-that-will-never-exist; # FAIL |