diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-11-20 12:08:56 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-11-22 15:07:58 +0100 |
commit | bf9206d8edb06cc4c62fe5559504cf1518c2de9e (patch) | |
tree | bd098514d4e1f00256991be644972e7d1497707b /doc | |
parent | ce30a0eb7e21481815df379b4621aa48a13200bb (diff) | |
download | patches-bf9206d8edb06cc4c62fe5559504cf1518c2de9e.tar patches-bf9206d8edb06cc4c62fe5559504cf1518c2de9e.tar.gz |
package: Allow multiple '--manifest' options.
* guix/scripts/package.scm (manifest-action): Remove.
(%actions): Remove it.
(load-manifest): New procedure.
(process-actions): Handle 'manifest' options. Define 'files' from
'manifest' options. Define 'manifest' based on FILES. Define 'trans'
to represent the final transaction.
* tests/guix-package.sh: Test it.
* doc/guix.texi (Invoking guix package): Mention
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 0dc49c3cda..7ef77015cc 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -2830,7 +2830,8 @@ $ guix package --upgrade . --do-not-upgrade emacs @cindex profile declaration @cindex profile manifest Create a new generation of the profile from the manifest object -returned by the Scheme code in @var{file}. +returned by the Scheme code in @var{file}. This option can be repeated +several times, in which case the manifests are concatenated. This allows you to @emph{declare} the profile's contents rather than constructing it through a sequence of @code{--install} and similar |