aboutsummaryrefslogtreecommitdiff
path: root/tests/guix-package-aliases.sh
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2019-09-20 23:02:30 +0200
committerLudovic Courtès <ludo@gnu.org>2019-09-21 16:48:36 +0200
commit660dbe65641851aa99b810e4ae065a5f72dc37d0 (patch)
tree5fb36722e205ce363a8350b41ac4992d187786d3 /tests/guix-package-aliases.sh
parentaeb51370da7c854e8167066df9b138e15d7363e6 (diff)
downloadguix-660dbe65641851aa99b810e4ae065a5f72dc37d0.tar
guix-660dbe65641851aa99b810e4ae065a5f72dc37d0.tar.gz
guix package: '--show' ignores deprecated packages.
* guix/scripts/package.scm (process-query) <'show>: Remove superseded packages. * tests/guix-package-aliases.sh: Add test.
Diffstat (limited to 'tests/guix-package-aliases.sh')
-rw-r--r--tests/guix-package-aliases.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/guix-package-aliases.sh b/tests/guix-package-aliases.sh
index 9c038b99a5..4beed2e5b7 100644
--- a/tests/guix-package-aliases.sh
+++ b/tests/guix-package-aliases.sh
@@ -62,3 +62,6 @@ guix search '\<board\>' game | grep '^name: gnubg'
guix show --version
guix show guile
guix show python@3 | grep "^name: python"
+
+# "python@2" exists but is deprecated; make sure it doesn't show up.
+if guix show python@2; then false; else true; fi