blob: d5df087bbec2a5d71eaab4c7ba0e5f00384e6ce1 (
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
|
# file : buildfile
# license : MIT; see accompanying LICENSE file
assert ($build.meta_operation == 'dist') 'only dist meta-operation allowed'
# Package repository URL (or path).
#
build2_repo="https://stage.build2.org/1"
# build2_repo="https://pkg.cppget.org/1/queue/alpha"
# build2_repo="https://pkg.cppget.org/1/alpha"
i = \
INSTALL \
UPGRADE \
BOOTSTRAP-UNIX \
BOOTSTRAP-MACOSX \
BOOTSTRAP-WINDOWS \
BOOTSTRAP-WINDOWS-MSVC \
BOOTSTRAP-WINDOWS-CLANG \
BOOTSTRAP-WINDOWS-MINGW
# Note: see also subprojects in bootstrap.build.
#
./: {*/ -build/ -tests/ -submodules/} \
doc{$i README} \
legal{LICENSE AUTHORS} \
cli{$i} \
manifest
./: tests/*/ tests/doc{README}
# Obtain the build2, bpkg, bdep, and toolchain versions.
#
bp = $recall($build.path)
pt = '^version: (.+)$'
ver = $process.run_regex($bp 'info:' $src_root/, "$pt", '\1')
build2_ver = $process.run_regex($bp 'info:' $src_root/build2/, "$pt", '\1')
bpkg_ver = $process.run_regex($bp 'info:' $src_root/bpkg/, "$pt", '\1')
bdep_ver = $process.run_regex($bp 'info:' $src_root/bdep/, "$pt", '\1')
# Generate install scripts from templates and include them into the
# distribution.
#
# @@ Redo as ad hoc rule.
#
for s: exe{build.sh} file{build-msvc.bat build-clang.bat build-mingw.bat}
{
./: $s: file{$name($s).$extension($s).in}
{
dist = true
}
{{
diag sed $<
t = $path($>)
p = $path($<)
# Note: the same code as in the etc/version script.
#
sed -e 's/([^.]+)\..*/\1/' <<<"$ver" | set mj
sed -e 's/[^.]+\.([^.]+)\..*/\1/' <<<"$ver" | set mn
sed -n -e 's/[^.]+\.[^.]+\.[^.-]+-([ab]).*/\1/p' <<<"$ver" | set ab
sed -n -e 's/[^.]+\.[^.]+\.[^.-]+-[ab]\.([^.+]+).*/\1/p' <<<"$ver" | set pr
# Version for configuration directory.
#
cver = "$mj.$mn"
if ("$ab" != '')
cver = "$cver-$ab.$pr"
end
sed -e 's%@BUILD2_REPO@%'$build2_repo'%' $p >$t
sed -e 's/@CONFIG_VER@/'$cver'/' -i $t
sed -e 's/@BUILD2_VERSION@/'$build2_ver'/' -i $t
sed -e 's/@BPKG_VERSION@/'$bpkg_ver'/' -i $t
sed -e 's/@BDEP_VERSION@/'$bdep_ver'/' -i $t
}}
}
# Don't install the BOOTSTRAP/INSTALL files. But UPGRADE could be useful.
#
doc{INSTALL}@./: install = false
doc{BOOTSTRAP-*}: install = false
|