// file : bpkg/pkg-update.cli // copyright : Copyright (c) 2014-2019 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file include ; "\section=1" "\name=bpkg-pkg-update" "\summary=update package" namespace bpkg { { " ", "\h|SYNOPSIS| \c{\b{bpkg pkg-update}|\b{update} [] [] ...\n \b{bpkg pkg-update}|\b{update} [] [] \b{--all}|\b{-a}} \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 \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)}. Additional command line variables (, normally \cb{config.*}) can be passed to the build system. Such variables apply to all the specified packages but can also be specified to only apply to specific packages using the argument grouping mechanism (see \l{bpkg-argument-grouping(1)} for details)." } class pkg_update_options: configuration_options { "\h|PKG-UPDATE OPTIONS|" bool --all|-a { "Update all held packages." } string --for|-f { "", "Instead of the default \cb{update} build system operation, perform the \cb{update-for-} variant where is normally \cb{install} or \cb{test}." } }; }