![]() |
![]()
| ![]() |
![]()
NAMEbpkg-pkg-build - build package SYNOPSISbpkg pkg-build|build [options]
[--upgrade|-u | --patch|-p]
pkg-spec =
[flags](([scheme:]pkg[ver-spec]),...[@rep-loc]
|
DESCRIPTIONThe pkg-build command builds one or more packages including all their dependencies. Besides building new packages, this command is also used to upgrade or downgrade packages that are already present in the configuration. And unless the --keep-unused|-K option is specified, pkg-build will also drop dependency packages that would otherwise no longer be used. The first form (one or more packages are specified) builds new or upgrades (by default or if --upgrade is specified) or patches (if --patch is specified) the specified packages. The second form (no arguments but either --upgrade or --patch is specified) upgrades or patches all the held packages in the configuration (see below for details on held package). In both forms specifying the --immediate|-i or --recursive|-r option causes pkg-build to also upgrade or patch the immediate or all dependencies of the specified (first form) or held (second form) packages, respectively. Note also that in the first form these options can only be specified with an explicit --upgrade or --patch. Each package can be specified as just the name (pkg) with optional version specification (ver-spec), in which case the source code for the package will be automatically fetched from one of the configured repositories. See the bpkg-rep-add(1) and bpkg-rep-fetch(1) commands for more information on package repositories. The version specification (ver-spec) can be either the exact version in the /version form or the version constraint as described in Package Version Constraint (#package-version-constraint). If ver-spec is not specified, then the latest available version will be built. To downgrade, the desired version must be specified explicitly. For example: bpkg build foo libfoo/1.2.3 "bar < 2.0.0" Alternatively, the package repository location (rep-loc) can be specified as part of the build command. In this case, if ver-spec is not specified, then the latest available from this repository version will be built. For example: bpkg build foo,libfoo/1.2.3@https://git.example.org/foo.git#master If only the location is specified, then the latest versions of all the packages available directly from this repository will be built (note that this does not include packages available from complement repositories). The @ delimiter can be omitted if the location is a URL. For example: bpkg build https://git.example.org/foo.git#master bpkg build @/path/to/repository/ A package name (pkg) can be prefixed with a package scheme (scheme). Currently the only recognized scheme is sys which instructs pkg-build to configure the package as available from the system rather than building it from source. The system package version (ver-spec) may not be a version constraint but may be the special '/*' value, which indicates that the version should be considered unknown but satisfying any version constraint. If unspecified, then pkg-build will attempt to query the system package manager for the installed version unless the system package manager is unsupported or this functionality is disabled with --sys-no-query, in which case the '/*' ver-spec is assumed. If the system package manager is supported, then the automatic installation of an available package can be requested with the --sys-install option. Note that if the version is not explicitly specified, then at least a stub package must be available from one of the repositories unless the --sys-no-stub option is specified. Finally, a package can be specified as either the path to the package archive (file) or to the package directory (dir/; note that it must end with a directory separator). See the bpkg-pkg-fetch(1) and bpkg-pkg-unpack(1) commands for more information on the semantics of specifying the package as an archive or a directory. Additional configuration variables (cfg-var), if any, should be specified before packages (pkg-spec) and should be separated with --. Such variables are effective only when configuring and only for packages that were explicitly specified on the command line (unless global overrides). They can also be specified to only apply to specific packages using the argument grouping mechanism discussed below. See bpkg-pkg-configure(1) for more information on configuration variables. By default a package that is specified explicitly on the command line is built to hold: it will not be considered for automatic removal if it no longer has any dependents. Only versions from repositories that were added to the configuration (bpkg-rep-add(1)) are considered as available for build to hold. Alternatively, a package can be built (or, more commonly, upgraded/downgraded) as a dependency by specifying the ? flag (flags) or the --dependency option. Such a package will only be added to the configuration if it actually has any dependents and once no longer used, it will be automatically dropped. Only versions from prerequisite repositories of dependent packages are considered as available for build as a dependency. Packages (both built to hold and as dependencies) that are specified with an explicit package version (ver-spec) or as an archive or directory, will have their versions held, that is, they will not be automatically upgraded. As an illustration, let's assume in the following example that the stable repository contains packages foo 1.0.0 as well as libfoo 1.0.0 and 1.1.0 while testing – libfoo 2.0.0, that testing is complemented by stable, and that foo depends on libfoo >= 1.0.0: bpkg fetch https://example.org/1/testing bpkg build foo # build foo 1.0.0 to hold A package can be built in one of the linked configurations instead of the current (or host/build system module, for build-time dependencies) configuration by specifying one of the --config-* options (see bpkg-cfg-create(1) for background on linked configurations). For example: bpkg build foo { --config-name=alt-host }+ ?bison PKG-BUILD PACKAGE OPTIONSThe following options (as well as additional configuration variables) can be grouped to apply to a specific pkg-spec as well as specified globally, in which case they apply to all the specified packages (see bpkg-argument-grouping(1) for details).
PKG-BUILD GLOBAL OPTIONS
COMMON OPTIONSThe common options are summarized below with a more detailed description available in bpkg-common-options(1).
DEFAULT OPTIONS FILESSee bpkg-default-options-files(1) for an overview of the default options files. For the pkg-build command the search start directory is the configuration directory. The following options files are searched for in each directory and, if found, loaded in the order listed: bpkg.options bpkg-pkg-build.options The following pkg-build command options cannot be specified in the default options files: --directory|-d BUGSSend bug reports to the users@build2.org mailing list. COPYRIGHTCopyright (c) 2014-2024 the build2 authors. Permission is granted to copy, distribute and/or modify this document under the terms of the MIT License.
|