guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

07/07: guix package: '--show' ignores deprecated packages.


From: guix-commits
Subject: 07/07: guix package: '--show' ignores deprecated packages.
Date: Sat, 21 Sep 2019 10:49:03 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 660dbe65641851aa99b810e4ae065a5f72dc37d0
Author: Ludovic Courtès <address@hidden>
Date:   Fri Sep 20 23:02:30 2019 +0200

    guix package: '--show' ignores deprecated packages.
    
    * guix/scripts/package.scm (process-query) <'show>: Remove superseded
    packages.
    * tests/guix-package-aliases.sh: Add test.
---
 guix/scripts/package.scm      | 3 ++-
 tests/guix-package-aliases.sh | 3 +++
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/guix/scripts/package.scm b/guix/scripts/package.scm
index 21737f4..f03741a 100644
--- a/guix/scripts/package.scm
+++ b/guix/scripts/package.scm
@@ -764,7 +764,8 @@ processed, #f otherwise."
       (('show requested-name)
        (let-values (((name version)
                      (package-name->name+version requested-name)))
-         (match (find-packages-by-name name version)
+         (match (remove package-superseded
+                        (find-packages-by-name name version))
            (()
             (leave (G_ "~a~@[@~a~]: package not found~%") name version))
            (packages
diff --git a/tests/guix-package-aliases.sh b/tests/guix-package-aliases.sh
index 9c038b9..4beed2e 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]