blob: b653fa815b4d916dad1150175a55f658df6dc70f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
// file : bpkg/pkg-checkout.cli
// license : MIT; see accompanying LICENSE file
include <bpkg/configuration.cli>;
"\section=1"
"\name=bpkg-pkg-checkout"
"\summary=check out package version"
namespace bpkg
{
{
"<options> <pkg> <ver>",
"\h|SYNOPSIS|
\c{\b{bpkg pkg-checkout} [<options>] <pkg>\b{/}<ver>}
\h|DESCRIPTION|
The \cb{pkg-checkout} command checks out the specified package version
from one of the version control-based repositories (\l{bpkg-rep-add(1)}).
The resulting package state is \cb{unpacked} (\l{bpkg-pkg-status(1)}).
If the \cb{--output-root} option is passed, then the package is checked
out into the specified directory rather than into the configuration
directory. In this case, \cb{bpkg} uses the package (source) directory in
place, similar to the \cb{pkg-unpack --existing|-e} mode. Also, unless
the \cb{--output-purge} option is specified, \cb{bpkg} will not attempt
to remove this directory when the package is later purged with the
\l{bpkg-pkg-purge(1)} command. Note also that such a package is not
\i{external} (see \l{bpkg-pkg-unpack(1)} for details).
If the \cb{--replace|-r} option is specified, then \cb{pkg-checkout} will
replace the archive and/or source directory of a package that is already
in the \cb{unpacked} or \cb{fetched} state."
}
class pkg_checkout_options: configuration_options
{
"\h|PKG-CHECKOUT OPTIONS|"
bool --replace|-r
{
"Replace the source directory if the package is already fetched or
unpacked."
}
dir_path --output-root
{
"<dir>",
"Check out the package into the specified directory rather than into the
configuration directory. Note that the package source is placed into
the \c{\i{package}\b{-}\i{version}} subdirectory of this directory."
}
bool --output-purge
{
"Remove the checked out package (source) directory when the package is
purged."
}
};
"
\h|DEFAULT OPTIONS FILES|
See \l{bpkg-default-options-files(1)} for an overview of the default
options files. For the \cb{pkg-checkout} 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-checkout.options
\
The following \cb{pkg-checkout} command options cannot be specified in the
default options files:
\
--directory|-d
\
"
}
|