// file : bdep/sync.cli // copyright : Copyright (c) 2014-2019 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file include ; "\section=1" "\name=bdep-sync" "\summary=synchronize project and build configurations" namespace bdep { { " ", "\h|SYNOPSIS| \c{\b{bdep sync} [] [] [] []\n \b{bdep sync} [] [] [] \ \b{--upgrade}|\b{-u} | \b{--patch}|\b{-p}\n \b{bdep sync} [] [] [] [\b{--upgrade}|\b{-u} | \b{--patch}|\b{-p}]\n \ \ \ \ \ \ \ \ \ \ ... } \c{ = [\b{/}]\n = (\b{@} | \b{--config}|\b{-c} )... | \b{--all}|\b{-a}\n = (\b{--directory}|\b{-d} )... | \n = \b{--directory}|\b{-d} \n = ( | )...} \h|DESCRIPTION| The \cb{sync} command synchronizes a project with its build configurations. The first form (no arguments nor \cb{--upgrade} or \cb{--patch} are specified) upgrades the project packages to the latest version/iteration, adjusts their dependencies according to the latest manifest information, and updates the lockfile. If no project or package directory is specified, then the current working directory is assumed. If no configuration is specified, then the default configuration is assumed. See \l{bdep-projects-configs(1)} for details on specifying projects and configurations. Optional are the additional dependency packages and/or configuration variables to pass to the underlying \l{bpkg-pkg-build(1)} command. The second form (no arguments but either \cb{--upgrade} or \cb{--patch} is specified), in addition to the first form's functionality, also upgrades or patches immediate (by default or if \c{\b{--immediate}|\b{-i}} is specified) or all (if \c{\b{--recursive}|\b{-r}} is specified) dependencies of the specified project packages. The third form (one or more arguments are specified), in addition to the first form's functionality, also upgrades (by default or if \cb{--upgrade} is specified) or patches (if \cb{--patch} is specified) the specified dependencies. If \c{\b{--immediate}|\b{-i}} or \c{\b{--recursive}|\b{-r}} is specified, then it also upgrades or patches the immediate or all dependencies of the specified dependencies, respectively. Alternative to \cb{--upgrade} and \cb{--patch}, the desired upgrade (or downgrade) version can be specified explicitly. Note also that \c{\b{--immediate}|\b{-i}} or \c{\b{--recursive}|\b{-r}} can only be specified with an explicit \cb{--upgrade} or \cb{--patch}. \h|EXAMPLES| As an example, consider project \cb{prj} with two packages, \cb{foo} and \cb{libfoo}: \ prj/ ├── foo/ └── libfoo/ \ Assuming \cb{foo} and \cb{libfoo} have been initialized in the default build configuration, the following invocations illustrate the common \cb{sync} use cases (the current working directory is shown before the shell prompt). Synchronize \cb{foo} and \cb{libfoo} with the default configuration: \ prj/$ bdep sync \ The same (all initialized packages in a project are always synchronized at once): \ prj/$ cd foo foo/$ bdep sync \ Add a dependency on \cb{libx} with \cb{sync} fetching and configuring a suitable version: \ foo/$ edit manifest # Add 'depends: libx ^1.0.0' foo/$ bdep sync \ Upgrade all the immediate dependencies of \cb{foo}: \ foo/$ bdep sync -u \ Upgrade all the dependencies of all the initialized packages in a project recursively: \ foo/$ cd ../ prj/$ bdep sync -u -r \ Upgrade \cb{libx} to the latest version: \ prj/$ bdep sync libx \ Upgrade \cb{libx} and its immediate dependencies to the latest version: \ prj/$ bdep sync -i libx \ Upgrade \cb{libx} to the latest patch version: \ prj/$ bdep sync -p libx \ Upgrade \cb{libx} and all its dependencies recursively to the latest patch version. \ prj/$ bdep sync -p -r libx \ Upgrade \cb{libx} to version \cb{1.2.3}. \ prj/$ bdep sync libx/1.2.3 \ Upgrade \cb{libx} to version \cb{1.2.3} and patch all its dependencies, recursively: \ prj/$ bdep sync -p -r libx/1.2.3 \ " } // Note that not all project/configuration options are valid for all // subcommands. // class cmd_sync_options: project_options { "\h|SYNC OPTIONS|" bool --upgrade|-u { "Upgrade dependencies to the latest available version that satisfies all the constraints." } bool --patch|-p { "Upgrade dependencies to the latest available patch version that satisfies all the constraints." } bool --immediate|-i { "Also upgrade or patch immediate dependencies." } bool --recursive|-r { "Also upgrade or patch all dependencies, recursively." } bool --fetch|-f { "Perform the \cb{fetch} command prior to synchronization." } bool --fetch-full|-F { "Perform the \cb{fetch --full} command prior to synchronization." } bool --yes|-y { "Don't prompt for confirmation when up/down-grading dependencies." } bool --implicit { "Perform implicit synchronization. This mode is normally used by other tools (for example, a build system hook) to ensure projects and configurations are synchronized. To improve performance, especially for the \"everything is already synchronized\" case, \cb{sync} executed in this mode assumes that no configuration flags (see \l{bdep-config(1)}) have changed since the last explicit synchronization. It also does not search for a project in the current working directory \- if any, its directory should be specified explicitly with \c{\b{--config}|\b{-c}}." } // The build system hook protocol version. Internal, undocumented, and // implies --implicit. // uint16_t --hook = 0; }; "\h|ENVIRONMENT| The \cb{BDEP_SYNC} environment variable can be used to suppress automatic synchronization on build system invocation. If set, auto-synchronization will only be performed if the variable's value is \cb{true} or \cb{1}. The ability to suppress auto-synchronization can be useful when you don't have usable \cb{bdep} and/or \cb{bpkg}. To avoid recursive re-synchronization, the \cb{sync} command also maintains the \cb{BDEP_SYNCED_CONFIGS} environment variable. It contains a space-separated, \cb{\"}-quoted list of configuration paths that have been or are being synchronized by the current \cb{bdep} invocation chain. The \cb{sync} command examines this variable and silently ignores synchronization requests that have been or are already being performed. " }