aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-update.cli
diff options
context:
space:
mode:
Diffstat (limited to 'bpkg/pkg-update.cli')
-rw-r--r--bpkg/pkg-update.cli31
1 files changed, 27 insertions, 4 deletions
diff --git a/bpkg/pkg-update.cli b/bpkg/pkg-update.cli
index 531da4a..6a68642 100644
--- a/bpkg/pkg-update.cli
+++ b/bpkg/pkg-update.cli
@@ -15,14 +15,19 @@ namespace bpkg
"\h|SYNOPSIS|
\c{\b{bpkg pkg-update}|\b{update} [<options>] [<vars>] <pkg>...\n
- \b{bpkg pkg-update}|\b{update} [<options>] [<vars>] \b{--all}|\b{-a}}
+ \b{bpkg pkg-update}|\b{update} [<options>] [<vars>] \b{--all}|\b{-a}\n
+ \b{bpkg pkg-update}|\b{update} [<options>] [<vars>] (\b{--all-pattern} <pattern>)...}
\h|DESCRIPTION|
The \cb{pkg-update} command updates the specified packages (the first
- form) or all the held packages (the second form, see
- \l{bpkg-pkg-status(1)}). Underneath, this command doesn't do much more
- than run \cb{b update} (or one of its \c{update-for-*} variants; see
+ form), all the held packages (the second form, see
+ \l{bpkg-pkg-status(1)}), or all the held packages that match any of the
+ specified wildcard patterns (the third form). Additionally, immediate or
+ all dependencies of these packages can be also updated by specifying the
+ \c{\b{--immediate}|\b{-i}} or \c{\b{--recursive}|\b{-r}} options,
+ respectively. Underneath, this command doesn't do much more than run
+ \cb{b update} (or one of its \c{update-for-*} variants; see
\cb{--for|-f}). In the first form the specified packages must have been
previously configured with \l{bpkg-pkg-build(1)} or
\l{bpkg-pkg-configure(1)}.
@@ -43,6 +48,24 @@ namespace bpkg
"Update all held packages."
}
+ strings --all-pattern
+ {
+ "<pattern>",
+ "Update held packages that match the specified wildcard pattern. Repeat
+ this option to match multiple patterns. Note that you may need to quote
+ the pattern to prevent expansion by your shell."
+ }
+
+ bool --immediate|-i
+ {
+ "Also update immediate dependencies."
+ }
+
+ bool --recursive|-r
+ {
+ "Also update all dependencies, recursively."
+ }
+
string --for|-f
{
"<operation>",