guix package: '-A' no longer lists deprecated packages.
Fixes a regression introduced in
0ea939fb79
.
* guix/scripts/package.scm (process-query) <'list-available>: Change
#:superseded? to #:deprecated? since that's what
'fold-available-packages' passes.
This commit is contained in:
parent
389ae5181e
commit
35ef5bc866
|
@ -739,9 +739,9 @@ processed, #f otherwise."
|
||||||
(available (fold-available-packages
|
(available (fold-available-packages
|
||||||
(lambda* (name version result
|
(lambda* (name version result
|
||||||
#:key outputs location
|
#:key outputs location
|
||||||
supported? superseded?
|
supported? deprecated?
|
||||||
#:allow-other-keys)
|
#:allow-other-keys)
|
||||||
(if (and supported? (not superseded?))
|
(if (and supported? (not deprecated?))
|
||||||
(if regexp
|
(if regexp
|
||||||
(if (regexp-exec regexp name)
|
(if (regexp-exec regexp name)
|
||||||
(cons `(,name ,version
|
(cons `(,name ,version
|
||||||
|
|
Loading…
Reference in New Issue