summaryrefslogtreecommitdiff
path: root/stage
blob: 819e8828efefb0b664efb6c3e2cff819b238395c (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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
#! /usr/bin/env bash

# Stage or queue build2 packages and the toolchain distribution.
#
# -b
#    Packages baseutils/mingw.
# -o
#    Only package baseutils/mingw.
# -s
#    Only prepare the install scripts and regenerate toolchain.sha256.
# -q
#    Put packages and the distribution into the queue instead of staging.
# -p
#    Regenerate and publish distribution. Specifically, move baseutils from
#    queue, regenerate build2-toolchain, install scripts, and the checksum
#    file, and upload everything to public. Also disable the queue toolchain.
#
usage="usage: etc/stage"

rsync_ops="--progress"

owd=`pwd`
trap "{ cd $owd; exit 1; }" ERR
set -o errtrace # Trap in functions.

function info () { echo "$*" 1>&2; }
function error () { info "$*"; exit 1; }

# Make sure the build2 tools are runnable.
#
b    --version >/dev/null
bpkg --version >/dev/null
bdep --version >/dev/null

v="$(sed -n -re 's/^version: ([^.]+\.[^.]+\.[^-]+(-[ab]\.[^.+]+)?).*$/\1/p' build2-toolchain/manifest)"
vf="$(echo $v | sed -re 's/^([^.]*)\.([^.]*)\.([^-]*).*$/\1.\2.\3/')" # Final.

if [ -z "$v" -o -z "$vf" ]; then
  error "unable to extract version from build2-toolchain/version"
fi

mode=
base=
base_only=
script_only=

dist_src=staging/0
dist_dst=stage.build2.org:/var/www/stage.build2.org/public/0

rsync_del="--delete-after"

while [ $# -gt 0 ]; do
  case $1 in
    -b)
      base=true
      shift
      ;;
    -o)
      base=true
      base_only=true
      shift
      ;;
    -s)
      script_only=true
      shift
      ;;
    -q | -p)
      mode="$1"
      dist_src=cppget.org/queue/0
      dist_dst=build2.org:/var/www/download.build2.org/public/queue

      if [ "$mode" = "-p" ]; then

	queue_dist_src="$dist_src"
	queue_dist_dst="$dist_dst"

	dist_src=cppget.org/public/0
	dist_dst=build2.org:/var/www/download.build2.org/public

	rsync_del= # Do not delete anything existing.
      fi

      shift
      ;;
    *)
      error "unexpected $1"
      ;;
  esac
done

# Note that this structure is seriously hard-wired in the install scripts.
# Specifically, they assume paths in toolchain.sha256 are in the <ver>/<file>
# form.
#
mkdir -p "$dist_src/$v"

# Generate baseutils if requested.
#
if [ "$base" = true ]; then
  cd private/baseutils

  echo "$v" >version

  ./pkdist -n baseutils -d "$vf" -z "/tmp/build2-baseutils-$v-x86_64-windows" \
--sys-p "$vf/list-msys-x86_64" \
--sys-c "$vf/control-msys" \
--sys-s ./pkpost-base-msys \
--min-p "$vf/list-mingw-x86_64" \
--min-c "$vf/control-mingw-x86_64" \
--min-s ./pkpost-base-mingw

  ./pkdist -n mingw -d "mingw-$vf" -x "/tmp/build2-mingw-$v-x86_64-windows" \
--min-p "mingw-$vf/list-mingw-x86_64" \
--min-c "mingw-$vf/control-mingw-x86_64" \
--min-s ./pkpost-mingw-mingw

  cd ../..
fi

# Copy baseutils if requested.
#
if [ "$base" = true -o "$mode" = "-p" ]; then

  if [ "$base" = true ]; then
    d=/tmp
  else
    d="$queue_dist_src/$v"
  fi

  mv "$d/build2-baseutils-$v-x86_64-windows.zip" "$dist_src/$v/"
  mv "$d/build2-baseutils-$v-x86_64-windows.zip.sha256" "$dist_src/$v/"

  mv "$d/build2-mingw-$v-x86_64-windows.tar.xz" "$dist_src/$v/"
  mv "$d/build2-mingw-$v-x86_64-windows.tar.xz.sha256" "$dist_src/$v/"
fi

if [ "$base_only" = true ]; then
  exit 0
fi

# Clean and disable queue toolchain.
#
if [ "$mode" = "-p" ]; then
  rm -rf "$queue_dist_src/$v"
  echo 'disabled' >"$queue_dist_src/toolchain.sha256"
fi

##
##if false; then

mkdir -p /tmp/dist

# Dist build2-toolchain.
#
if [ "$script_only" != true ]; then

  # Cleanup old stuff.
  #
  rm -f "$owd/$dist_src/$v"/build2-toolchain-*

  b dist: build2-toolchain-default/ \
    "config.dist.archives=$owd/$dist_src/$v/tar.xz $owd/$dist_src/$v/tar.gz" \
     config.dist.checksums=sha256
fi

tv="$(echo "$owd/$dist_src/$v"/build2-toolchain-*.tar.gz | sed -re 's#.*/build2-toolchain-(.+).tar.gz#\1#')"

# Prepare the toolchain.sha256 checksums file.
#
function checksum_line () # <file>
{
  local s
  s="$(sed -n -re 's/^([^ ]+) .+$/\1/p' "$dist_src/$v/$1.sha256")"
  echo "$s *$v/$1" >>"$dist_src/toolchain.sha256"
}

echo "# $tv" >"$dist_src/toolchain.sha256"
checksum_line "build2-toolchain-$tv.tar.xz"              # Must be first.
checksum_line "build2-baseutils-$v-x86_64-windows.zip"
checksum_line "build2-mingw-$v-x86_64-windows.tar.xz"

# Prepare install script/batch files and then append their checksums to
# toolchain.sha256.
#
case "$mode" in
  -q) o=--queue ;;
  -p) o=        ;;
   *) o=--stage ;;
esac

scripts=($(private/install/prepare $o "$dist_src"))

for f in "${scripts[@]}"; do
  info "prepared $f"
  checksum_line "$f"
done

# Sync the distribution.
#
# Note that we do the distribution first so that the toolchain changes are
# visible before package changes. This is relied upon by the Build OS monitor.
#
function sync_dist () # <dist-src> <dist-dst> [<rsync-options>]
{
  local s="$1"
  local d="$2"

  shift
  shift

  info "Press Enter to start distribution upload to $d"
  read
  rsync -v -rlpt -c --copy-unsafe-links --prune-empty-dirs \
	$rsync_ops "$@" "$s/" "$d/"
}

sync_dist "$dist_src" "$dist_dst" $rsync_del

# Also sync (disable) queue.
#
if [ "$mode" = "-p" ]; then
  sync_dist "$queue_dist_src" "$queue_dist_dst" --delete-after
fi

##fi
##

if [ "$script_only" = true ]; then
  exit 0
fi

if [ "$mode" = "-p" ]; then
  exit 0
fi

# Distribute packages, regenerate and sync the repository.
#

# These are just for testing (though libodb-mysql needs libmysqlclient).
#
#etc/stage-pkg -c $mode -d vcpkg packaging/vcpkg/vcpkg

etc/stage-pkg -c $mode -d openssl packaging/openssl/libcrypto
etc/stage-pkg -c $mode -d openssl packaging/openssl/libssl
etc/stage-pkg -c $mode -d openssl packaging/openssl/openssl

etc/stage-pkg -c $mode -d mariadb packaging/mariadb/libmariadb
etc/stage-pkg -c $mode -d mysql packaging/mysql/libmysqlclient

etc/stage-pkg -c $mode -d libcutl ../cutl/libcutl
etc/stage-pkg -c $mode -d cli ../cli/cli

#
#
etc/stage-pkg -c $mode -d libapr packaging/libapr/libapr1
etc/stage-pkg -c $mode -d libapreq packaging/libapreq/libapreq2
etc/stage-pkg -c $mode -d postgresql packaging/postgresql/libpq

etc/stage-pkg -c $mode -d sqlite \
	      packaging/sqlite/libsqlite3 \
	      packaging/sqlite/sqlite3

etc/stage-pkg -c $mode -d pkgconf packaging/pkgconf/libpkgconf

etc/stage-pkg -c $mode -d libstudxml ../studxml/libstudxml

etc/stage-pkg -c $mode -d hello hello/libhello-1.0

# For testing we also stage other libodb-*.
#
etc/stage-pkg -c $mode -d odb \
	      ../odb/odb \
	      ../odb/builds/default/libodb \
	      ../odb/builds/default/libodb-sqlite \
	      ../odb/builds/default/libodb-pgsql \
	      ../odb/builds/default/libodb-mysql \
	      ../odb/builds/default/libodb-oracle \
	      ../odb/builds/default/libodb-mssql \
	      ../odb/builds/default/libodb-boost \
	      ../odb/builds/default/libodb-qt


etc/stage-pkg -c $mode build2 \
	      libbutl \
	      libbutl.bash \
	      build2 \
	      libbpkg \
	      bpkg \
	      bpkg-rep \
	      bdep \
	      libbbot \
	      brep \
	      bbot \
	      openssl-agent

#             msvc-linux
#             libstd-modules