guix: Clean up --help messages.
* guix/scripts/import.scm (show-help): Add newline before a list of importers. * guix/scripts/lint.scm (show-help): Split a long description line. * guix/scripts/package.scm (show-help): Improve docstrings for --install and --remove options. * guix/scripts/system.scm (show-help): Format actions the same way as guix commands and importers are formatted.
This commit is contained in:
parent
dbdfe51598
commit
2a4e2e4b01
@ -86,6 +86,7 @@ rather than \\n."
|
|||||||
Run IMPORTER with ARGS.\n"))
|
Run IMPORTER with ARGS.\n"))
|
||||||
(newline)
|
(newline)
|
||||||
(display (_ "IMPORTER must be one of the importers listed below:\n"))
|
(display (_ "IMPORTER must be one of the importers listed below:\n"))
|
||||||
|
(newline)
|
||||||
(format #t "~{ ~a~%~}" importers)
|
(format #t "~{ ~a~%~}" importers)
|
||||||
(display (_ "
|
(display (_ "
|
||||||
-h, --help display this help and exit"))
|
-h, --help display this help and exit"))
|
||||||
|
@ -575,7 +575,8 @@ descriptions maintained upstream."
|
|||||||
|
|
||||||
(define (show-help)
|
(define (show-help)
|
||||||
(display (_ "Usage: guix lint [OPTION]... [PACKAGE]...
|
(display (_ "Usage: guix lint [OPTION]... [PACKAGE]...
|
||||||
Run a set of checkers on the specified package; if none is specified, run the checkers on all packages.\n"))
|
Run a set of checkers on the specified package; if none is specified,
|
||||||
|
run the checkers on all packages.\n"))
|
||||||
(display (_ "
|
(display (_ "
|
||||||
-c, --checkers=CHECKER1,CHECKER2...
|
-c, --checkers=CHECKER1,CHECKER2...
|
||||||
only run the specificed checkers"))
|
only run the specificed checkers"))
|
||||||
|
@ -422,15 +422,17 @@ ENTRIES, a list of manifest entries, in the context of PROFILE."
|
|||||||
(substitutes? . #t)))
|
(substitutes? . #t)))
|
||||||
|
|
||||||
(define (show-help)
|
(define (show-help)
|
||||||
(display (_ "Usage: guix package [OPTION]... PACKAGES...
|
(display (_ "Usage: guix package [OPTION]...
|
||||||
Install, remove, or upgrade PACKAGES in a single transaction.\n"))
|
Install, remove, or upgrade packages in a single transaction.\n"))
|
||||||
(display (_ "
|
(display (_ "
|
||||||
-i, --install=PACKAGE install PACKAGE"))
|
-i, --install PACKAGE ...
|
||||||
|
install PACKAGEs"))
|
||||||
(display (_ "
|
(display (_ "
|
||||||
-e, --install-from-expression=EXP
|
-e, --install-from-expression=EXP
|
||||||
install the package EXP evaluates to"))
|
install the package EXP evaluates to"))
|
||||||
(display (_ "
|
(display (_ "
|
||||||
-r, --remove=PACKAGE remove PACKAGE"))
|
-r, --remove PACKAGE ...
|
||||||
|
remove PACKAGEs"))
|
||||||
(display (_ "
|
(display (_ "
|
||||||
-u, --upgrade[=REGEXP] upgrade all the installed packages matching REGEXP"))
|
-u, --upgrade[=REGEXP] upgrade all the installed packages matching REGEXP"))
|
||||||
(display (_ "
|
(display (_ "
|
||||||
|
@ -368,18 +368,19 @@ boot directly to the kernel or to the bootloader."
|
|||||||
Build the operating system declared in FILE according to ACTION.\n"))
|
Build the operating system declared in FILE according to ACTION.\n"))
|
||||||
(newline)
|
(newline)
|
||||||
(display (_ "The valid values for ACTION are:\n"))
|
(display (_ "The valid values for ACTION are:\n"))
|
||||||
|
(newline)
|
||||||
(display (_ "\
|
(display (_ "\
|
||||||
- 'reconfigure', switch to a new operating system configuration\n"))
|
reconfigure switch to a new operating system configuration\n"))
|
||||||
(display (_ "\
|
(display (_ "\
|
||||||
- 'build', build the operating system without installing anything\n"))
|
build build the operating system without installing anything\n"))
|
||||||
(display (_ "\
|
(display (_ "\
|
||||||
- 'vm', build a virtual machine image that shares the host's store\n"))
|
vm build a virtual machine image that shares the host's store\n"))
|
||||||
(display (_ "\
|
(display (_ "\
|
||||||
- 'vm-image', build a freestanding virtual machine image\n"))
|
vm-image build a freestanding virtual machine image\n"))
|
||||||
(display (_ "\
|
(display (_ "\
|
||||||
- 'disk-image', build a disk image, suitable for a USB stick\n"))
|
disk-image build a disk image, suitable for a USB stick\n"))
|
||||||
(display (_ "\
|
(display (_ "\
|
||||||
- 'init', initialize a root file system to run GNU.\n"))
|
init initialize a root file system to run GNU.\n"))
|
||||||
|
|
||||||
(show-build-options-help)
|
(show-build-options-help)
|
||||||
(display (_ "
|
(display (_ "
|
||||||
|
Loading…
Reference in New Issue
Block a user