aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-verify.cli
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2022-01-31 12:24:28 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2022-02-03 16:15:30 +0300
commitfafc5727732c7df2c98b123292f483411e0050e3 (patch)
tree2d67d33a557e82a694ba9d48a90cad99fd33e49f /bpkg/pkg-verify.cli
parent85b7dc75597386777ebe1f7158e798eff968a4bf (diff)
Add support for bootstrap-build and root-build values in package manifest
Diffstat (limited to 'bpkg/pkg-verify.cli')
-rw-r--r--bpkg/pkg-verify.cli12
1 files changed, 8 insertions, 4 deletions
diff --git a/bpkg/pkg-verify.cli b/bpkg/pkg-verify.cli
index 33593e4..bd6609f 100644
--- a/bpkg/pkg-verify.cli
+++ b/bpkg/pkg-verify.cli
@@ -23,8 +23,9 @@ namespace bpkg
the top-level directory inside the archive match the canonical
\c{\i{name}\b{-}\i{version}} form and that there is a valid manifest file
in that top-level directory. Additionally, if the \cb{--deep} option is
- specified, it also checks that the files referenced by the \cb{*-file}
- manifest values are present in the archive and are not empty."
+ specified, it also checks that the required \c{*-build} values/files are
+ present in the manifest/archive and the files referenced by the
+ \cb{*-file} manifest values are present in the archive and are not empty."
}
class pkg_verify_options: common_options
@@ -39,7 +40,8 @@ namespace bpkg
bool --deep
{
- "Verify files referenced by the \cb{*-file} manifest values."
+ "Verify the presence of the required \c{*-build} values/files and
+ the validity of files referenced by the \cb{*-file} manifest values."
}
bool --ignore-unknown
@@ -55,7 +57,9 @@ namespace bpkg
human-readable form, dump the package manifest to \cb{stdout}. If the
\cb{--deep} option is specified, then in the resulting manifest the
\cb{*-file} values are replaced with the contents of the referenced
- files and the package dependency constraints are completed."
+ files, the \c{*-build} values are automatically added (unless the
+ corresponding files are absent), and the package dependency constraints
+ are completed."
}
};