mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
guix gc: Add `--requisites'.
* guix/scripts/gc.scm (show-help, %options): Add `--requisites'. (guix-gc): Handle it. * doc/guix.texi (Invoking guix gc): Document `--requisites'. * NEWS: Update.
This commit is contained in:
parent
3f1e69395c
commit
8e59fdd53b
3 changed files with 19 additions and 0 deletions
4
NEWS
4
NEWS
|
@ -32,6 +32,10 @@ See the manual for details.
|
|||
This option instructs to fall back to local builds when the substituter fails
|
||||
to download a substitute.
|
||||
|
||||
*** New ‘--requisites’ option for “guix gc”
|
||||
|
||||
See the manual for details.
|
||||
|
||||
** Bugs fixed
|
||||
*** “guix --help” now works when using Guile 2.0.5
|
||||
*** Binary substituter multi-threading and pipe issues fixed
|
||||
|
|
|
@ -722,6 +722,13 @@ In addition, the references among existing store files can be queried:
|
|||
List the references (respectively, the referrers) of store files given
|
||||
as arguments.
|
||||
|
||||
@item --requisites
|
||||
@itemx -R
|
||||
List the requisites of the store files passed as arguments. Requisites
|
||||
include the store files themselves, their references, and the references
|
||||
of these, recursively. In other words, the returned list is the
|
||||
@dfn{transitive closure} of the store files.
|
||||
|
||||
@end table
|
||||
|
||||
|
||||
|
|
|
@ -50,6 +50,8 @@ (define (show-help)
|
|||
(newline)
|
||||
(display (_ "
|
||||
--references list the references of PATHS"))
|
||||
(display (_ "
|
||||
-R, --requisites list the requisites of PATHS"))
|
||||
(display (_ "
|
||||
--referrers list the referrers of PATHS"))
|
||||
(newline)
|
||||
|
@ -128,6 +130,10 @@ (define %options
|
|||
(lambda (opt name arg result)
|
||||
(alist-cons 'action 'list-references
|
||||
(alist-delete 'action result))))
|
||||
(option '(#\R "requisites") #f #f
|
||||
(lambda (opt name arg result)
|
||||
(alist-cons 'action 'list-requisites
|
||||
(alist-delete 'action result))))
|
||||
(option '("referrers") #f #f
|
||||
(lambda (opt name arg result)
|
||||
(alist-cons 'action 'list-referrers
|
||||
|
@ -189,6 +195,8 @@ (define (list-relatives relatives)
|
|||
(delete-paths store paths))
|
||||
((list-references)
|
||||
(list-relatives references))
|
||||
((list-requisites)
|
||||
(list-relatives requisites))
|
||||
((list-referrers)
|
||||
(list-relatives referrers))
|
||||
((list-dead)
|
||||
|
|
Loading…
Reference in a new issue