blob: bfa7d8c0fb33fb1a648ec588df7426a350b0bc8f (
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
|
// file : libbuild2/version/module.hxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
#ifndef LIBBUILD2_VERSION_MODULE_HXX
#define LIBBUILD2_VERSION_MODULE_HXX
#include <map>
#include <libbuild2/types.hxx>
#include <libbuild2/utility.hxx>
#include <libbuild2/module.hxx>
namespace build2
{
namespace version
{
// A map of package names sanitized for use in variable names to the
// 'depends' values from manifest.
//
using package_name = project_name;
struct dependency
{
package_name name;
string constraint;
};
using dependencies = std::map<string, dependency>;
struct module: build2::module
{
using dependencies_type = version::dependencies;
static const string name;
// The project variable value sanitized for use in variable names.
//
const string project;
butl::standard_version version;
bool committed; // Whether this is a committed snapshot.
bool rewritten; // Whether this is a rewritten .z snapshot.
dependencies_type dependencies;
bool dist_uncommitted = false;
module (const project_name& p,
butl::standard_version v,
bool c,
bool r,
dependencies_type d)
: project (p.variable ()),
version (move (v)),
committed (c),
rewritten (r),
dependencies (move (d)) {}
};
}
}
#endif // LIBBUILD2_VERSION_MODULE_HXX
|