-
Notifications
You must be signed in to change notification settings - Fork 615
/
Copy pathpacman-helper.sh
executable file
·703 lines (634 loc) · 20.8 KB
/
pacman-helper.sh
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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
#!/bin/sh
# This script helps Git for Windows developers to manage their Pacman
# repository and their local pacman package-database.
#
# A Pacman repository is like a Git repository, but for binary packages.
#
# This script supports seven commands:
#
# - 'fetch' to initialize (or update) a local mirror of the Pacman repository
#
# - 'add' to add packages to the local mirror
#
# - 'remove' to make the next 'push' skip the given package(s)
#
# - 'push' to synchronize local changes (after calling `repo-add`) to the
# remote Pacman repository
#
# - 'files' shows files that are not owned by any package.
#
# - 'dirs' shows directories that are not owned by any package.
#
# - 'orphans' removes any package that became an orphan.
die () {
format="$1\\n"; shift
printf "$format" "$@" >&2
exit 1
}
mode=
case "$1" in
lock|unlock|break_lock|quick_add|quick_remove)
mode="$1"
shift
;;
*)
die "Usage:\n%s\n%s\n%s\n" \
" $0 quick_add <package>..." \
" $0 quick_remove <package>..." \
" $0 ( lock | unlock <id> | break_lock )"
;;
esac
case "$(uname -s)" in
MSYS|MINGW*)
# MSYS2's mingw-w64-$arch-ca-certificates seem to lag behind ca-certificates
CURL_CA_BUNDLE=/usr/ssl/certs/ca-bundle.crt
export CURL_CA_BUNDLE
this_script_dir="$(cygpath -am "${0%/*}")"
;;
*)
this_script_dir="$(cd "$(dirname "$0")" && pwd -P)"
;;
esac
base_url=https://wingit.blob.core.windows.net
mirror=/var/local/pacman-mirror
architectures="i686 x86_64 aarch64"
arch_dir () { # <architecture>
echo "$mirror/$1"
}
map_arch () { # <architecture>
# Azure Blobs does not allow underlines, but dashes in container names
case "$1" in
x86_64) echo "x86-64";;
clang-aarch64) echo "aarch64";;
*) echo "$1";;
esac
}
arch_url () { # <architecture>
echo "$base_url/$(map_arch $1)"
}
arch_to_mingw () { # <arch>
case "$arch" in
i686) echo mingw32;;
aarch64) echo aarch64;;
*) echo mingw64;;
esac
}
package_list () { # db.tar.xz
tar tf "$1" |
sed -ne '/ /d' -e 's/\/$//p'
}
call_gpg () {
if test -z "$CALL_GPG"
then
GIT_GPG_PROGRAM="$(git config gpg.program)"
CALL_GPG="${GIT_GPG_PROGRAM:-gpg}"
fi
"$CALL_GPG" "$@"
}
repo_add () {
if test ! -s "$this_script_dir/repo-add"
then
# Make sure that GPGKEY is used unquoted
sed 's/"\(\${\?GPGKEY}\?\)"/\1/g' </usr/bin/repo-add >"$this_script_dir/repo-add"
fi &&
"$this_script_dir/repo-add" "$@"
}
repo_remove () {
if test ! -s "$this_script_dir/repo-remove"
then
# Make sure that GPGKEY is used unquoted
sed 's/"\(\${\?GPGKEY}\?\)"/\1/g' </usr/bin/repo-remove >"$this_script_dir/repo-remove"
fi &&
"$this_script_dir/repo-remove" $(for arg
do
# repo-remove only accepts package _names_, but we are potentially given _files_.
# Handle this by distilling the package names from filenames.
case "$arg" in
*.pkg.tar.xz|*.pkg.tar.zst) echo "${arg%-*-*-*}";;
*) echo "$arg";;
esac
done)
}
sanitize_db () { # <file>...
perl -e '
foreach my $path (@ARGV) {
my @to_delete = ();
my %base_to_date = ();
my %base_to_full_name = ();
open($fh, "-|", "tar", "tvf", $path) or die;
while (<$fh>) {
# parse lines like this:
# drwxr-xr-x root/root 0 2019-02-17 21:45 bash -4.4.023-1 /
if (/(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(.+)(-\d[^-]*-\d+)\/$/) {
my $date = $4 . " " . $5;
my $prefix = $6;
my $full_name = $6 . $7;
if ($prefix =~ / /) {
push @to_delete, $full_name;
} elsif (exists($base_to_date{$prefix})) {
print $prefix . ": " . $base_to_date{$prefix} . " vs " . $date . "\n";
if (($base_to_date{$prefix} cmp $date) < 0) {
print $base_to_date{$prefix} . " older than " . $date . ": delete " . $base_to_date{$prefix} . "\n";
push @to_delete, $base_to_full_name{$prefix};
# replace
$base_to_full_name{$prefix} = $full_name;
$base_to_date{$prefix} = $date;
} else {
print $base_to_date{$prefix} . " younger than " . $date . ": delete " . $date . "\n";
push @to_delete, $full_name;
}
} else {
$base_to_date{$prefix} = $date;
$base_to_full_name{$prefix} = $full_name;
}
}
}
close($fh);
if ($#to_delete > 0) {
@bsdtar = ("bsdtar", "-cJf", $path . ".bup");
foreach my $item (@to_delete) {
push @bsdtar, "--exclude";
push @bsdtar, $item . "*";
}
push @bsdtar, "@" . $path;
print "Sanitizing: " . join(" ", @bsdtar) . "\n";
if (system(@bsdtar) == 0) {
rename $path . ".bup", $path or die "Could not rename $path.bup to $path";
} else {
die "Could not run " . join(" ", @bsdtar);
}
}
}
' "$@" &&
if test -n "$GPGKEY"
then
for path in "$@"
do
if test -f "$path.sig" && gpg --verify "$path.sig"
then
continue
fi
call_gpg --detach-sign --no-armor -u $GPGKEY "$path" ||
die "Could not sign $path"
done
fi
}
quick_action () { # <action> <file>...
test $# -gt 1 ||
die "Need at least one file"
label="$1"
shift
case "$label" in
add|remove) action=repo_$label;;
*) die "Unknown action '$action'";;
esac
if test -z "$PACMANDRYRUN$azure_blobs_token"
then
azure_blobs_token="$(cat "$HOME"/.azure-blobs-token)" &&
test -n "$azure_blobs_token" ||
die "Could not read token from ~/.azure-blobs-token"
fi
if test -z "$PACMANDRYRUN$GITHUB_TOKEN"
then
die 'Need `GITHUB_TOKEN` to upload the files to `git-for-windows/pacman-repo`'
fi
# Create a shallow, sparse & partial clone of
# git-for-windows/pacman-repo to work with
dir="$(mktemp -d)" &&
git -C "$dir" init &&
git -C "$dir" remote add origin https://github.com/git-for-windows/pacman-repo &&
git -C "$dir" config set remote.origin.promisor true &&
git -C "$dir" config set remote.origin.partialCloneFilter blob:none &&
git -C "$dir" config set core.sparseCheckout true &&
git -C "$dir" config set core.sparseCheckoutCone false &&
printf '%s\n' '/git-*.db*' '/git-*.files*' >"$dir"/.git/info/sparse-checkout &&
printf '%s\n' '/git-for-windows.db*' '/git-for-windows.files*' >"$dir"/.git/info/exclude &&
mkdir "$dir/sources" ||
die "Could not create temporary directory"
i686_mingw=
i686_msys=
aarch64_mingw=
aarch64_msys=
x86_64_mingw=
x86_64_msys=
all_files=
# Copy the file(s) to the temporary directory, and schedule their addition to the appropriate index(es),
# or for `remove`: schedule their removal from the appropriate index(es).
for path in "$@"
do
file="${path##*/}"
mingw=
case "${path##*/}" in
mingw-w64-*.pkg.tar.xz|mingw-w64-*.pkg.tar.zst)
arch=${file##mingw-w64-}
arch=${arch#clang-}
arch=${arch%%-*}
key=${arch}_mingw
;;
git-extra-*.pkg.tar.xz|git-extra-*.pkg.tar.zst)
arch=${file%.pkg.tar.*}
arch=${arch##*-}
key=${arch}_mingw
;;
*-*.pkg.tar.xz|*-*.pkg.tar.zst)
arch=${file%.pkg.tar.*}
arch=${arch##*-}
test any != "$arch" || {
arch="$(tar Oxf "$path" .BUILDINFO |
sed -n 's/^installed = msys2-runtime-[0-9].*-\(.*\)/\1/p')"
test -n "$arch" ||
die "Could not determine architecture of '$path'"
}
key=${arch}_msys
;;
*.src.tar.gz|*.src.tar.xz|*.src.tar.zst)
arch=sources
key=
;;
*.sig)
# skip explicit signatures; we copy them automatically
continue
;;
*-i686|*-x86_64|*-aarch64)
test remove = "$label" || die "Cannot add $path"
arch=${file##*-}
file=${file%-$arch}
file=${file%-[0-9]*-[0-9]*}
key=${arch}_msys
;;
mingw-w64-i686-*|mingw-w64-x86_64-*|mingw-w64-clang-aarch64-*)
test remove = "$label" || die "Cannot add $path"
arch=${file#mingw-w64-}
arch=${arch#clang-}
arch=${arch%%-*}
file=${file%-any}
file=${file%-[0-9]*-[0-9]*}
key=${arch}_mingw
;;
*)
echo "Skipping unknown file: $file" >&2
continue
;;
esac
test -n "$arch" || die "Could not determine architecture for $path"
case " $architectures sources " in
*" $arch "*) ;; # okay
*) echo "Skipping file with unknown arch: $file" >&2; continue;;
esac
test -z "$key" || eval "$key=\$$key\\ $file"
all_files="$all_files $arch/$file"
if test ! -d "$dir/$arch"
then
echo "Initializing $dir/$arch..." >&2
git -C "$dir" rev-parse --quiet --verify refs/remotes/origin/$arch >/dev/null ||
git -C "$dir" fetch --depth=1 origin x86_64 aarch64 i686 ||
die "$dir: could not fetch from pacman-repo"
git -C "$dir" worktree add -b $arch $arch origin/$arch ||
die "Could not initialize $dir/$arch"
fi
case "$label" in
remove)
test -z "$GPGKEY" ||
all_files="$all_files $arch/$file.sig"
continue
;;
esac
echo "Copying $file to $arch/..." >&2
cp "$path" "$dir/$arch" ||
die "Could not copy $path to $dir/$arch"
if test -f "$path".sig
then
cp "$path".sig "$dir/$arch/" ||
die "Could not copy $path.sig to $dir/$arch"
all_files="$all_files $arch/$file.sig"
elif test -n "$GPGKEY"
then
echo "Signing $arch/$file..." >&2
call_gpg --detach-sign --no-armor -u $GPGKEY "$dir/$arch/$file"
all_files="$all_files $arch/$file.sig"
fi
done
# Acquire lease
PACMAN_DB_LEASE="$(lock)" ||
die 'Could not obtain a lock for uploading'
# Verify that the package databases are synchronized and add or remove files
sign_option=
test -z "$GPGKEY" || sign_option=--sign
dbs=
to_push=
>"$dir/release_notes.txt"
for arch in $architectures
do
eval "msys=\$${arch}_msys"
eval "mingw=\$${arch}_mingw"
test -n "$msys$mingw" || continue
to_push="${to_push:+$to_push }$arch"
git -C "$dir/$arch" pull --ff-only origin $arch ||
die "Could not update $dir/$arch"
case "$arch,$mingw" in
*,) db2=;;
i686,*) db2=mingw32;;
*aarch64*) db2=clangarm64;;
*) db2=mingw64;;
esac
for db in git-for-windows-$arch ${db2:+git-for-windows-$db2}
do
# The Pacman repository on Azure Blobs still uses the old naming scheme
case "$db" in
git-for-windows-$arch) remote_db=git-for-windows;;
git-for-windows-clangarm64) remote_db=git-for-windows-aarch64;;
*) remote_db=$db;;
esac
for infix in db files
do
file=$db.$infix.tar.xz
remote_file=$remote_db.$infix.tar.xz
echo "Downloading current $arch/$file..." >&2
curl -sfo "$dir/$arch/$file" "$(arch_url $arch)/$remote_file" || return 1
dbs="$dbs $arch/$file $arch/${file%.tar.xz}"
if test -n "$sign_option"
then
curl -sfo "$dir/$arch/$file.sig" "$(arch_url $arch)/$remote_file.sig" ||
return 1
gpg --verify "$dir/$arch/$file.sig" ||
die "Could not verify GPG signature: $dir/$arch/$file"
dbs="$dbs $arch/$file.sig $arch/${file%.tar.xz}.sig"
fi
sanitize_db "$dir/$arch/$file" || return 1
test ! -f "$dir/$arch/${file%.tar.xz}" ||
sanitize_db "$dir/$arch/${file%.tar.xz}" || return 1
done
done
(cd "$dir/$arch" &&
# Verify that the package databases are synchronized
git update-index --refresh &&
git diff-files --quiet &&
git diff-index --quiet HEAD -- ||
die "The package databases in $arch differ between Azure Blobs and pacman-repo"
# Now add or remove the files to the Pacman database
$action $sign_option git-for-windows-$arch.db.tar.xz $msys $mingw &&
{ test ! -h git-for-windows-$arch.db || rm git-for-windows-$arch.db; } &&
cp git-for-windows-$arch.db.tar.xz git-for-windows-$arch.db && {
test -z "$sign_option" || {
{ test ! -h git-for-windows-$arch.db.sig || rm git-for-windows-$arch.db.sig; } &&
cp git-for-windows-$arch.db.tar.xz.sig git-for-windows-$arch.db.sig
}
} &&
if test -n "$db2"
then
$action $sign_option git-for-windows-$db2.db.tar.xz $mingw &&
{ test ! -h git-for-windows-$db2.db || rm git-for-windows-$db2.db; } &&
cp git-for-windows-$db2.db.tar.xz git-for-windows-$db2.db && {
test -z "$sign_option" || {
{ test ! -h git-for-windows-$db2.db.sig || rm git-for-windows-$db2.db.sig; } &&
cp git-for-windows-$db2.db.tar.xz.sig git-for-windows-$db2.db.sig
}
}
fi &&
# Remove the existing versions from the Git branch
printf '%s\n' $msys $mingw |
sed '/\.pkg\.tar/{
s/-[^-]*-[^-]*-[^-]*\.pkg\.tar\.\(xz\|zst\)$/-[0-9]*/
b1
}
s/$/-[0-9]*/
:1
p
# Prevent false positives (e.g. deleting `msys2-runtime-3.3` when
# updating `msys2-runtime`) by requiring the suffix to be of the form
# `-<pkgver>-<pkgrel>-<arch><pkgext>`. Sadly, there are no non-greedy
# wildcards, therefore do this via an "exclude pattern" instead:
# `:(exclude)<pkgname>-[0-9]*-*-*-*`
s/$/-*-*-*/
s/^/:(exclude)/' |
xargs git rm --sparse --cached -- ||
die "Could not remove the existing versions from the Git branch in $arch"
# Now add the files to the Git branch
case "$label" in
add)
git add --sparse $msys $mingw \*.sig ':(exclude)*.old.sig' &&
msg="$(printf 'Update %s package(s)\n\n%s\n' \
$(printf '%s\n' $msys $mingw | wc -l) \
"$(printf '%s\n' $msys $mingw |
sed 's/^\(.*\)-\([^-]*-[^-]*\)-[^-]*\.pkg\.tar\.\(xz\|zst\)$/\1 -> \2/')")"
printf '%s\n' $msys $mingw |
sed 's/^\(.*\)-\([^-]*-[^-]*\)-[^-]*\.pkg\.tar\.\(xz\|zst\)$/* \1 -> \2/' >>"$dir/release_notes.txt"
;;
remove)
msg="$(printf 'Remove %s package(s)\n\n%s\n' \
$(printf '%s\n' $msys $mingw | wc -l) \
"$(printf '%s\n' $msys $mingw)")"
printf '%s\n' $msys $mingw |
sed 's/^/* dropped /' >>"$dir/release_notes.txt"
;;
esac &&
git commit -asm "$msg") ||
die "Could not ${label} $msys $mingw to/from db in $arch"
done
test -n "$to_push" || die "No packages to push?!"
if test -n "$PACMANDRYRUN"
then
echo "Would push $to_push to git-for-windows/pacman-repo" >&2
else
auth="$(printf 'PAT:%s' "$GITHUB_TOKEN" | base64)" &&
if test true = "$GITHUB_ACTIONS"
then
echo "::add-mask::$auth"
fi &&
extra_header="http.extraHeader=Authorization: Basic $auth" ||
die "Could not configure auth header for git-for-windows/pacman-repo"
if ! git -C "$dir" -c "$extra_header" push origin $to_push
then
# We must assume that another deployment happened concurrently.
# No matter, we can easily adjust to that by reverting the
# changes to the database and then trying again
echo "There was a problem with the push; Assuming it was a concurrent update..." >&2
for backoff in 5 10 15 20 -1
do
git -C "$dir" fetch origin $architectures || die "Could not update $dir"
for arch in $to_push
do
# Avoid updating the branch if it is not necessary
test 0 -lt $(git -C "$dir" rev-list --count $arch..origin/$arch) || continue
echo "Rebasing $arch" >&2
(cd "$dir/$arch" &&
git -C "$dir/$arch" checkout HEAD^ -- 'git-for-windows*.db*' 'git-for-windows*.files*' &&
git -C "$dir/$arch" commit --amend --no-edit &&
git -C "$dir/$arch" rebase origin/$arch &&
eval "msys=\$${arch}_msys" &&
eval "mingw=\$${arch}_mingw" &&
case "$label" in
add)
printf '%s\n' $msys $mingw |
sed 's/-[^-]*-[^-]*-[^-]*\.pkg\.tar\.\(xz\|zst\)$/-[0-9]*/' |
xargs -r git restore --ignore-skip-worktree-bits --
;;
esac &&
$action $sign_option git-for-windows-$arch.db.tar.xz $msys $mingw &&
{ test ! -h git-for-windows-$arch.db || rm git-for-windows-$arch.db; } &&
cp git-for-windows-$arch.db.tar.xz git-for-windows-$arch.db && {
test -z "$sign_option" || {
{ test ! -h git-for-windows-$arch.db.sig || rm git-for-windows-$arch.db.sig; } &&
cp git-for-windows-$arch.db.tar.xz.sig git-for-windows-$arch.db.sig
}
} &&
if test -n "$db2"
then
$action $sign_option git-for-windows-$db2.db.tar.xz $mingw &&
{ test ! -h git-for-windows-$db2.db || rm git-for-windows-$db2.db; } &&
cp git-for-windows-$db2.db.tar.xz git-for-windows-$db2.db && {
test -z "$sign_option" || {
{ test ! -h git-for-windows-$db2.db.sig || rm git-for-windows-$db2.db.sig; } &&
cp git-for-windows-$db2.db.tar.xz.sig git-for-windows-$db2.db.sig
}
}
fi &&
git -C "$dir/$arch" commit --amend --no-edit -- 'git-for-windows*.db*' 'git-for-windows*.files*') ||
die "Could not update $dir/$arch"
done
git -C "$dir" -c "$extra_header" push origin $to_push && break
test -1 != $backoff &&
echo "Waiting $backoff seconds before retrying..." >&2 &&
sleep $backoff ||
die "Could not push to git-for-windows/pacman-repo"
done
fi
fi
# Mirror the deployment to a new GitHub Release
# at `git-for-windows/pacman-repo`
tagname="$(TZ=UTC date +%Y-%m-%dT%H-%M-%S.%NZ)"
if test -n "$PACMANDRYRUN"
then
echo "Would create a GitHub Release '$tagname' at git-for-windows/pacman-repo" >&2
else
body="$(sed -z 's/[\"]/\\&/g;s/\n/\\n/g' "$dir/release_notes.txt")"
id="$(curl -H "Authorization: Bearer $GITHUB_TOKEN" -sfL --show-error -XPOST -d \
'{"tag_name":"'"$tagname"'","name":"'"$tagname"'","body":"'"$body"'","draft":true,"prerelease":true}' \
"https://api.github.com/repos/git-for-windows/pacman-repo/releases" |
sed -n 's/^ "id": *\([0-9]*\).*/\1/p')"
fi ||
die "Could not create a draft release for tag $tagname"
for path in $(test remove = "$label" || echo $all_files) $dbs
do
if test -n "$PACMANDRYRUN"
then
echo "Would upload $path to release" >&2
continue
fi
echo "Uploading $path to release $id" >&2
case "$path" in
*.sig) content_type=application/pgp-signature;;
*) content_type=application/x-xz;;
esac
json="$(curl -H "Authorization: Bearer $GITHUB_TOKEN" -sfL --show-error -XPOST \
-H "Content-Type: $content_type" \
--data-binary "@$dir/$path" \
"https://uploads.github.com/repos/git-for-windows/pacman-repo/releases/$id/assets?name=${path##*/}")" ||
die "Could not upload $path to GitHub ($json)"
done
if test -n "$PACMANDRYRUN"
then
echo "Would mark GitHub Release at git-for-windows/pacman-repo as latest release" >&2
else
json="$(curl -H "Authorization: Bearer $GITHUB_TOKEN" -sfL --show-error -XPATCH \
-d '{"draft":false,"prerelease":false,"make_latest":"true"}' \
"https://api.github.com/repos/git-for-windows/pacman-repo/releases/$id")" &&
echo "Uploaded $all_files $dbs to $(echo "$json" |
sed -n 's/^ "html_url": "\(.*\)",$/\1/p')" ||
die "Could not publish release $id ($json)"
fi
# Upload the file(s) and the appropriate index(es)
(cd "$dir" &&
for path in $(test remove = "$label" || echo $all_files) $dbs
do
# The Pacman repository on Azure Blobs still uses the old naming scheme
remote_path="$(echo "$path" | sed \
-e 's,/git-for-windows-\(x86_64\|aarch64\|i686\)\.,/git-for-windows.,' \
-e 's,/git-for-windows-clangarm64\.,/git-for-windows-aarch64.,')"
test "$path" = "$remote_path" || {
echo "Renaming '$path' to old-style '$remote_path'..." >&2 &&
mv -i "$path" "$remote_path" &&
path="$remote_path"
} ||
die "Could not rename $path to $remote_path"
# Upload the 64-bit database with the lease
action=upload
test x86_64/git-for-windows.db != $path || action="upload-with-lease ${PACMAN_DB_LEASE:-<lease>}"
if test -n "$PACMANDRYRUN"
then
echo "upload: wingit-snapshot-helper.sh wingit $(map_arch ${path%%/*}) <token> $action $dir/$path" >&2
else
"$this_script_dir"/wingit-snapshot-helper.sh wingit $(map_arch ${path%%/*}) "$azure_blobs_token" $action "$path"
fi ||
die "Could not upload $path"
done) ||
die "Could not upload $all_files $dbs"
# Release the lease, i.e. finalize the transaction
unlock "$PACMAN_DB_LEASE" ||
die 'Could not release lock for uploading\n'
PACMAN_DB_LEASE=
if test -n "$PACMANDRYRUN"
then
echo "Leaving temporary directory $dir/ for inspection" >&2
return
fi
# Remove the temporary directory
rm -r "$dir" ||
die "Could not remove $dir/"
}
quick_add () {
quick_action add "$@"
}
quick_remove () {
quick_action remove "$@"
}
lock () { #
test -z "$PACMANDRYRUN" || {
echo "upload: wingit-snapshot-helper.sh wingit x86-64 <token> lock git-for-windows.db" >&2
return
}
test -n "$azure_blobs_token" || {
azure_blobs_token="$(cat "$HOME"/.azure-blobs-token)" &&
test -n "$azure_blobs_token" ||
die "Could not read token from ~/.azure-blobs-token"
}
echo "Trying to lock for upload..." >&2
counter=0
while test $counter -lt 7200
do
"$this_script_dir"/wingit-snapshot-helper.sh wingit x86-64 \
"$azure_blobs_token" \
lock --duration=-1 git-for-windows.db &&
break
echo "Waiting 60 seconds ($counter in total so far)..." >&2
sleep 60
counter=$(($counter+60))
done
}
unlock () { # <lease-ID>
test -z "$PACMANDRYRUN" || {
echo "upload: wingit-snapshot-helper.sh wingit x86-64 <token> unlock ${1:-<lease>} git-for-windows.db" >&2
return
}
test -n "$azure_blobs_token" || {
azure_blobs_token="$(cat "$HOME"/.azure-blobs-token)" &&
test -n "$azure_blobs_token" ||
die "Could not read token from ~/.azure-blobs-token"
}
"$this_script_dir"/wingit-snapshot-helper.sh wingit x86-64 \
"$azure_blobs_token" unlock "$1" git-for-windows.db
}
break_lock () { #
test -z "$PACMANDRYRUN" || {
echo "upload: wingit-snapshot-helper.sh wingit x86-64 <token> break-lock git-for-windows.db" >&2
return
}
test -n "$azure_blobs_token" || {
azure_blobs_token="$(cat "$HOME"/.azure-blobs-token)" &&
test -n "$azure_blobs_token" ||
die "Could not read token from ~/.azure-blobs-token"
}
"$this_script_dir"/wingit-snapshot-helper.sh wingit x86-64 \
"$azure_blobs_token" break-lock git-for-windows.db
}
"$mode" "$@"