aboutsummaryrefslogtreecommitdiff
path: root/bpkg/cfg-create.cli
blob: e367828e6ed2dfce58264dfb5903760e590cdf29 (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
// file      : bpkg/cfg-create.cli
// license   : MIT; see accompanying LICENSE file

include <bpkg/common.cli>;

"\section=1"
"\name=bpkg-cfg-create"
"\summary=create configuration"

namespace bpkg
{
  {
    "<options>
     <cfg-args> <cfg-var> <module>",

    "\h|SYNOPSIS|

     \c{\b{bpkg cfg-create}|\b{create} [<options>] [<cfg-args>]\n
        \b{bpkg cfg-create}|\b{create} [<options>] \b{--existing|-e}}

     \c{<cfg-args> = (<module> | <cfg-var>)...}

     \h|DESCRIPTION|

     The \cb{cfg-create} command creates a new \cb{bpkg} configuration with
     the specified \cb{build2} modules and configuration variables (the first
     form) or initializes one based on an existing build system configuration
     (the second form). The \cb{bpkg} configuration itself is a build system
     configuration; see build system driver (\l{b(1)}) \cb{create}
     meta-operation for details.

     Unless the \cb{--existing|-e} or \cb{--wipe} option is specified,
     \cb{cfg-create} expects the configuration directory to be empty or to not
     exist (in which case it will be created).

     By default, the configuration created with the first form loads the
     \cb{config}, \cb{test}, \cb{dist}, and \cb{install} modules. However,
     additional modules and, if required, their configuration variables can be
     specified as the \cb{cfg-create} arguments. For example:

     \
     bpkg create cxx config.cxx=clang++ config.install.root=/usr/local
     \

     By default, \cb{bpkg} appends \cb{.config} to the names of the modules
     that you specify so that only their configurations are loaded. You can
     override this behavior by specifying the period (\cb{.}) after the module
     name. You can also instruct \cb{bpkg} to use the optional module load by
     prefixing the module name with the question mark (\cb{?}). For example:

     \
     bpkg create cxx. \"?cli\"
     \

     Configurations can be associated with each other to allow a package to be
     built in one configuration while its dependencies in one or more
     associated configurations. This can be used to create a \"base\"
     configuration with common dependencies that are shared between multiple
     configurations. This mechanism is also used to provide a host
     configuration that is used to build build-time dependencies.

     Each configuration is assigned an automatically-generated UUID unless one
     is specified with the \cb{--config-uuid} option. This UUID is used to
     check the integrity of configuration associations. For convenience of
     referring to associated configurations, a configuration can also be
     assigned a name with the \cb{--name} option.

     A configuration also has a type specified with the \cb{--type} option.
     Two predefined types are \cb{host} and \cb{target}. If the type is not
     specified explicitly, then \cb{target} is assumed. When satisfying a
     dependency of one package on another, an associated configuration will
     only be considered if (1) it has the same type as the other configuration
     for run-time dependencies and (2) it has the \cb{host} type for
     build-time dependencies. Note that a host configuration is a target
     configuration for the host machine. So to create a self-hosted
     configuration, use type \cb{host}.

     To associate a configuration we use the \l{bpkg-cfg-add(1)} command. As a
     shortcut, a host configuration can also be associated during the
     configuration creation with the \cb{--host-config} option. If a
     build-time dependency is encountered in a configuration that has no
     associated host configuration (nor is itself a host configuration), then
     a private host configuration named \cb{host} is created automatically
     inside the configuration's \c{.bpkg/} subdirectory.
     "
  }

  class cfg_create_options: common_options
  {
    "\h|CFG-CREATE OPTIONS|"

    dir_path --directory|-d (".")
    {
      "<dir>",
      "Create the configuration in <dir> rather than in the current working
       directory."
    }

    bool --existing|-e
    {
      "Initialize a \cb{bpkg} configuration based on an existing build system
       configuration."
    }

    bool --wipe
    {
      "Wipe the configuration directory clean before creating the new
       configuration. For safety, this option requires that you specify the
       configuration directory explicitly with \cb{--directory|-d}."
    }

    dir_path --host-config
    {
      "<dir>",
      "Associate the specified host configuration with the configuration
       being created as if by running the \l{bpkg-cfg-add(1)} command."
    }

    string --name
    {
      "<name>",
      "The name of the configuration being created. If this configuration
       is associated with another configuration using \l{bpkg-cfg-add(1)},
       this name will be used as the association name unless overridden.
       By default the configuration is created unnamed."
    }

    string --type = "target"
    {
      "<type>",
      "The type of the configuration being created. By default, configuration
       of type \cb{target} is created."
    }

    uuid --config-uuid
    {
      "<uuid>",
      "Use the specified UUID as the configuration id instead of generating
       one automatically."
    }
  };

  "
   \h|DEFAULT OPTIONS FILES|

   See \l{bpkg-default-options-files(1)} for an overview of the default
   options files. For the \cb{cfg-create} command the search start directory
   is the parent directory of the new configuration. The following options
   files are searched for in each directory and, if found, loaded in the
   order listed:

   \
   bpkg.options
   bpkg-cfg-create.options
   \

   The following \cb{cfg-create} command options cannot be specified in the
   default options files:

   \
   --directory|-d
   --wipe
   \
  "
}