mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
guix-package: Add `--list-available'.
* guix-package.in (show-help, %options): Add `--list-available'. (guix-package)[process-query]: Add support for `--list-available'. * doc/guix.texi (Invoking guix-package): Document it. * tests/guix-package.sh: Add test. * guix/ui.scm (location->string): New procedure. * guix/utils.scm: Export <location>.
This commit is contained in:
parent
ba326ce41b
commit
64fc89b6ec
5 changed files with 54 additions and 3 deletions
|
@ -257,6 +257,15 @@ is installed (for instance, @code{out} for the default output,
|
|||
@code{include} for its headers, etc.), and the path of this package in
|
||||
the store.
|
||||
|
||||
@item --list-available[=@var{regexp}]
|
||||
@itemx -A [@var{regexp}]
|
||||
List packages currently available in the software distribution. When
|
||||
@var{regexp} is specified, list only installed packages whose name
|
||||
matches @var{regexp}.
|
||||
|
||||
For each package, print the following items separated by tabs: its name,
|
||||
its version string, and the source location of its definition.
|
||||
|
||||
@end table
|
||||
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@ exec ${GUILE-@GUILE@} -L "@guilemoduledir@" -l "$0" \
|
|||
#:use-module (srfi srfi-26)
|
||||
#:use-module (srfi srfi-34)
|
||||
#:use-module (srfi srfi-37)
|
||||
#:autoload (distro) (find-packages-by-name)
|
||||
#:use-module (distro)
|
||||
#:use-module (distro packages guile)
|
||||
#:export (guix-package))
|
||||
|
||||
|
@ -204,6 +204,9 @@ Install, remove, or upgrade PACKAGES in a single transaction.\n"))
|
|||
(display (_ "
|
||||
-I, --list-installed[=REGEXP]
|
||||
list installed packages matching REGEXP"))
|
||||
(display (_ "
|
||||
-A, --list-available[=REGEXP]
|
||||
list available packages matching REGEXP"))
|
||||
(newline)
|
||||
(display (_ "
|
||||
-h, --help display this help and exit"))
|
||||
|
@ -242,6 +245,10 @@ Report bugs to: ~a.~%") "@PACKAGE_BUGREPORT@"))
|
|||
(option '(#\I "list-installed") #f #t
|
||||
(lambda (opt name arg result)
|
||||
(cons `(query list-installed ,(or arg ""))
|
||||
result)))
|
||||
(option '(#\A "list-available") #f #t
|
||||
(lambda (opt name arg result)
|
||||
(cons `(query list-available ,(or arg ""))
|
||||
result)))))
|
||||
|
||||
|
||||
|
@ -385,7 +392,29 @@ Report bugs to: ~a.~%") "@PACKAGE_BUGREPORT@"))
|
|||
(regexp-exec regexp name))
|
||||
(format #t "~a\t~a\t~a\t~a~%"
|
||||
name (or version "?") output path))))
|
||||
installed)))
|
||||
installed)
|
||||
#t))
|
||||
(('list-available regexp)
|
||||
(let* ((regexp (and regexp (make-regexp regexp)))
|
||||
(available (fold-packages
|
||||
(lambda (p r)
|
||||
(let ((n (package-name p)))
|
||||
(if regexp
|
||||
(if (regexp-exec regexp n)
|
||||
(cons p r)
|
||||
r)
|
||||
(cons p r))))
|
||||
'())))
|
||||
(for-each (lambda (p)
|
||||
(format #t "~a\t~a\t~a~%"
|
||||
(package-name p)
|
||||
(package-version p)
|
||||
(location->string (package-location p))))
|
||||
(sort available
|
||||
(lambda (p1 p2)
|
||||
(string<? (package-name p1)
|
||||
(package-name p2)))))
|
||||
#t))
|
||||
(_ #f))))
|
||||
|
||||
(setlocale LC_ALL "")
|
||||
|
|
11
guix/ui.scm
11
guix/ui.scm
|
@ -23,12 +23,14 @@ (define-module (guix ui)
|
|||
#:use-module (guix packages)
|
||||
#:use-module (srfi srfi-26)
|
||||
#:use-module (srfi srfi-34)
|
||||
#:use-module (ice-9 match)
|
||||
#:export (_
|
||||
N_
|
||||
leave
|
||||
show-version-and-exit
|
||||
call-with-error-handling
|
||||
with-error-handling))
|
||||
with-error-handling
|
||||
location->string))
|
||||
|
||||
;;; Commentary:
|
||||
;;;
|
||||
|
@ -80,4 +82,11 @@ (define-syntax with-error-handling
|
|||
(lambda ()
|
||||
body ...)))))
|
||||
|
||||
(define (location->string loc)
|
||||
"Return a human-friendly, GNU-standard representation of LOC."
|
||||
(match loc
|
||||
(#f (_ "<unknown location>"))
|
||||
(($ <location> file line column)
|
||||
(format #f "~a:~a:~a" file line column))))
|
||||
|
||||
;;; ui.scm ends here
|
||||
|
|
|
@ -47,6 +47,7 @@ (define-module (guix utils)
|
|||
default-keyword-arguments
|
||||
substitute-keyword-arguments
|
||||
|
||||
<location>
|
||||
location
|
||||
location?
|
||||
location-file
|
||||
|
|
|
@ -57,4 +57,7 @@ test -f "$profile/bin/make" && ! test -f "$profile/bin/guile"
|
|||
# Make sure the `:' syntax works.
|
||||
guix-package -b -i "libsigsegv:lib" -n
|
||||
|
||||
# Check whether `--list-available' returns something sensible.
|
||||
guix-package -A 'gui.*e' | grep guile
|
||||
|
||||
rm "$profile" "$profile-"[0-9]*
|
||||
|
|
Loading…
Reference in a new issue