-
Notifications
You must be signed in to change notification settings - Fork 207
/
_dl.sh
executable file
·874 lines (806 loc) · 27.8 KB
/
_dl.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
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
#!/usr/bin/env bash
# Copyright (C) Viktor Szakats. See LICENSE.md
# SPDX-License-Identifier: MIT
set -o xtrace -o errexit -o nounset; [ -n "${BASH:-}${ZSH_NAME:-}" ] && set -o pipefail
gpgdir='.cw-gpg'; rm -r -f "${gpgdir}"; mkdir -m 700 "${gpgdir}"; gpgdir="$(pwd)/${gpgdir}"
trap 'rm -r -f "${gpgdir:?}"' EXIT HUP INT TERM
dependencies_json() {
cat <<EOF
[
{
"name": "brotli",
"url": "https://github.com/google/brotli/archive/v{ver}.tar.gz",
"redir": "redir"
},
{
"name": "cares",
"url": "https://github.com/c-ares/c-ares/releases/download/v{ver}/c-ares-{ver}.tar.gz",
"sig": ".asc",
"redir": "redir",
"keys": "DA7D64E4C82C6294CB73A20E22E3D13B5411B7CA 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2"
},
{
"name": "curl",
"url": "https://curl.se/download/curl-{ver}.tar.xz",
"mirror": "https://github.com/curl/curl/releases/download/curl-{veru}/curl-{ver}.tar.xz",
"sig": ".asc",
"keys": "27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2"
},
{
"name": "trurl",
"url": "https://curl.se/trurl/dl/trurl-{ver}.tar.gz",
"mirror": "https://github.com/curl/trurl/releases/download/trurl-{ver}/trurl-{ver}.tar.gz",
"ref_url": "https://curl.se/trurl/",
"sig": ".asc",
"keys": "27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2"
},
{
"name": "cacert",
"url": "https://curl.se/ca/cacert-{ver}.pem",
"sha": ".sha256",
"ref_url": "https://curl.se/docs/caextract.html",
"ref_mask": "([0-9]{4}-[0-9]{2}-[0-9]{2})"
},
{
"name": "libpsl",
"url": "https://github.com/rockdaboot/libpsl/releases/download/{ver}/libpsl-{ver}.tar.gz",
"sig": ".sig",
"redir": "redir",
"keys": "1CB27DBC98614B2D5841646D08302DB6A2670428"
},
{
"name": "libssh",
"url": "https://www.libssh.org/files/{vermm}/libssh-{ver}.tar.xz",
"ref_url": "https://www.libssh.org/files/",
"sig": ".asc",
"keys_comment": "https://www.libssh.org/files/0x03D5DF8CFDD3E8E7_libssh_libssh_org_gpgkey.asc",
"keys": "88A228D89B07C2C77D0C780903D5DF8CFDD3E8E7"
},
{
"name": "libssh2",
"url": "https://libssh2.org/download/libssh2-{ver}.tar.xz",
"mirror": "https://github.com/libssh2/libssh2/releases/download/libssh2-{ver}/libssh2-{ver}.tar.xz",
"sig": ".asc",
"keys": "27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2"
},
{
"name": "nghttp2",
"url": "https://github.com/nghttp2/nghttp2/releases/download/v{ver}/nghttp2-{ver}.tar.xz",
"sig": ".asc",
"redir": "redir",
"keys": "516B622918D15C478AB1EA3A5339A2BE82E07DEC"
},
{
"name": "nghttp3",
"url": "https://github.com/ngtcp2/nghttp3/releases/download/v{ver}/nghttp3-{ver}.tar.xz",
"sig": ".asc",
"redir": "redir",
"keys": "516B622918D15C478AB1EA3A5339A2BE82E07DEC"
},
{
"name": "ngtcp2",
"url": "https://github.com/ngtcp2/ngtcp2/releases/download/v{ver}/ngtcp2-{ver}.tar.xz",
"sig": ".asc",
"redir": "redir",
"keys": "516B622918D15C478AB1EA3A5339A2BE82E07DEC"
},
{
"name": "quictls",
"url": "https://github.com/quictls/openssl/archive/refs/heads/openssl-{ver}+quic.tar.gz",
"redir": "redir",
"tag": "openssl-\\\\d+\\\\.\\\\d+\\\\.\\\\d+\\\\+quic$",
"hasfile": "README-OpenSSL.md"
},
{
"name": "openssl",
"url": "https://github.com/openssl/openssl/releases/download/openssl-{ver}/openssl-{ver}.tar.gz",
"sig": ".asc",
"sha": ".sha256",
"redir": "redir",
"tag": "openssl-\\\\d+\\\\.\\\\d+\\\\.\\\\d+$",
"keys_comment": "Via: https://raw.githubusercontent.com/openssl/openssl/master/doc/fingerprints.txt",
"keys": "BA5473A2B0587B07FB27CF2D216094DFD0CB81EF 7953AC1FBC3DC8B3B292393ED5E9E43F7DF9EE8C 8657ABB260F056B1E5190839D9C4D26D0E604491 B7C1C14360F353A36862E4D5231C84CDDCC69C45 A21FAB74B0088AA361152586B8EF1A6BA9DA2D5C"
},
{
"name": "libressl",
"url": "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-{ver}.tar.gz",
"curlopt": "--ipv4",
"sig": ".asc",
"keys": "A1EB079B8D3EB92B4EBD3139663AF51BD5E4D8D5"
},
{
"name": "awslc",
"url": "https://github.com/aws/aws-lc/archive/refs/tags/v{ver}.tar.gz",
"redir": "redir",
"tag": "v\\\\d+\\\\.\\\\d+\\\\.\\\\d+$"
},
{
"name": "boringssl",
"url": "https://github.com/google/boringssl/releases/download/{ver}/boringssl-{ver}.tar.gz",
"redir": "redir"
},
{
"name": "osslsigncode",
"url": "https://github.com/mtrojnar/osslsigncode/archive/refs/tags/{vermm}.tar.gz",
"redir": "redir"
},
{
"name": "zlibng",
"url": "https://github.com/zlib-ng/zlib-ng/archive/refs/tags/{ver}.tar.gz",
"redir": "redir"
},
{
"name": "zlib",
"url": "https://zlib.net/zlib-{ver}.tar.xz",
"mirror": "https://github.com/madler/zlib/releases/download/v{ver}/zlib-{ver}.tar.xz",
"sig": ".asc",
"keys": "5ED46A6721D365587791E2AA783FCD8E58BCAFBA"
},
{
"name": "zstd",
"url": "https://github.com/facebook/zstd/releases/download/v{ver}/zstd-{ver}.tar.gz",
"sig": ".sig",
"sha": ".sha256",
"redir": "redir",
"keys": "4EF4AC63455FC9F4545D9B7DEF8FE99528B52FFD"
},
{
"name": "llvm-mingw-linux-x86-64",
"url": "https://github.com/mstorsjo/llvm-mingw/releases/download/{ver}/llvm-mingw-{ver}-ucrt-ubuntu-20.04-x86_64.tar.xz",
"redir": "redir"
},
{
"name": "llvm-mingw-linux-aarch64",
"url": "https://github.com/mstorsjo/llvm-mingw/releases/download/{ver}/llvm-mingw-{ver}-ucrt-ubuntu-20.04-aarch64.tar.xz",
"redir": "redir"
},
{
"name": "llvm-mingw-mac",
"url": "https://github.com/mstorsjo/llvm-mingw/releases/download/{ver}/llvm-mingw-{ver}-ucrt-macos-universal.tar.xz",
"redir": "redir"
},
{
"name": "llvm-mingw-win",
"url": "https://github.com/mstorsjo/llvm-mingw/releases/download/{ver}/llvm-mingw-{ver}-ucrt-x86_64.zip",
"redir": "redir"
}
]
EOF
}
my_curl() {
local opts
opts=(--disable --user-agent '' --fail --silent --show-error --globoff \
--remote-time --xattr \
--connect-timeout 15 --max-time 80 --retry 3 --max-redirs 10)
# >&2 echo "my_curl|${opts[*]} $*|"
if [[ "$*" = *'https://api.github.com/'* && -n "${GITHUB_TOKEN:+1}" ]]; then
opts+=(--header @/dev/stdin)
exec <<EOF
Authorization: Bearer ${GITHUB_TOKEN}
EOF
fi
curl "${opts[@]}" "$@"
}
my_gpg() {
local opts
opts=()
if [ -z "${APPVEYOR_REPO_BRANCH:-}${CI_COMMIT_REF_NAME:-}${GITHUB_REF_NAME:-}" ]; then
# Do not populate user GPG configuration with build-related keys, unless
# this is an automated CI session, where this is fine. In CI environments,
# as of gnupg 2.2.27, using --homedir or GNUPGHOME causes frequent
# intermittent fatal errors on later symmetric-key gpg calls that
# do not use a homedir override.
opts+=(--homedir "${gpgdir}")
fi
# Avoid an empty list to workaround bash 3 erroring "unbound variable"
opts+=(--batch --keyserver-options timeout=15 --display-charset utf-8 --keyid-format 0xlong)
gpg "${opts[@]}" "$@"
}
gpg_recv_key() {
local req
req="pks/lookup?op=get&options=mr&exact=on&search=0x$1"
my_curl "https://pgpkeys.eu/${req}" | my_gpg --import --status-fd 1 || \
my_curl "https://keyserver.ubuntu.com/${req}" | my_gpg --import --status-fd 1
}
# replace {ver}/{veru}/{vermm} macros with the version number
expandver() {
# >&2 echo "expandver|$*|"
sed \
-e "s/{ver}/$1/g" \
-e "s/{veru}/$(echo "$1" | tr '.' '_')/g" \
-e "s/{vermm}/$(echo "$1" | cut -d . -f -2)/g"
}
# convert 'x.y.z' to zero-padded "000x0y0z" numeric format (or leave as-is)
to8digit() {
local ver
ver="$(cat)"
if [[ "${ver}" =~ ([0-9]+)\.([0-9]+)(\.([0-9]+))? ]]; then
printf '%04d%02d%02d' "${BASH_REMATCH[1]}" "${BASH_REMATCH[2]}" "${BASH_REMATCH[4]:-0}"
else
printf '%s' "${ver}"
fi
}
check_update() {
local pkg url ourvern newver newvern slug mask urldir res curlopt
pkg="$1"
ourvern="${2:-000000}"
url="$3"
newver=''
curlopt="$9"
options=()
[ -n "${curlopt}" ] && options+=("${curlopt}")
if [[ "${url}" =~ ^https://github.com/([a-zA-Z0-9-]+/[a-zA-Z0-9-]+)/ ]]; then
slug="${BASH_REMATCH[1]}"
if [ -n "$6" ]; then
# raw.githubusercontent.com does not need it.
newver="$(my_curl "$6" \
| grep -F "$7" \
| grep -a -o -E "$8")"
# heavily rate-limited
elif [ -n "$4" ]; then
if [[ "${url}" = *'/refs/heads/'* ]]; then
heads_or_tags='heads'
else
heads_or_tags='tags'
fi
# >&2 echo "tag|${tag}|"
ref="$(my_curl --user-agent ' ' "https://api.github.com/repos/${slug}/git/refs/${heads_or_tags}" \
--header 'X-GitHub-Api-Version: 2022-11-28' \
| jq --raw-output '.[].ref' \
| grep -a -E "$4" | tail -n -1)"
newver="$(printf '%s' "${ref}" | grep -a -E -o '\d+\.\d+\.\d')"
# Optionally, check for the presence of a path
if [ -n "$5" ] && \
! my_curl --head "https://raw.githubusercontent.com/${slug}/${ref}/$5" >/dev/null 2>&1; then
newver=''
fi
else
if [[ "${_CONFIG}" = *'dev'* ]]; then
newver="$(my_curl --user-agent ' ' "https://api.github.com/repos/${slug}/releases" \
--header 'X-GitHub-Api-Version: 2022-11-28' \
| jq --raw-output 'map(select(.prerelease)) | first | .tag_name' | sed 's/^v//')"
[ "${newver}" = 'null' ] && newver=''
[[ ! "${newver}" =~ ^[0-9.]+$ ]] && newver=''
fi
if [ -z "${newver}" ]; then
newver="$(my_curl --user-agent ' ' "https://api.github.com/repos/${slug}/releases/latest" \
--header 'X-GitHub-Api-Version: 2022-11-28' \
| jq --raw-output '.tag_name' | sed 's/^v//')"
fi
if [ -n "$8" ]; then
newver="$(printf '%s' "${newver}" | grep -a -o -E "$8")"
elif [[ "${newver}" =~ ^[0-9]+\.[0-9]+$ ]]; then
newver="${newver}.0"
fi
fi
else
# Special logic for libssh, where each major/minor release resides in
# a separate subdirectory.
if [ "${pkg}" = 'libssh' ]; then
# ugly hack: repurpose 'ref_url' for this case:
res="$(my_curl "${options[@]}" "$6" | hxclean | hxselect -i -c -s '\n' 'a::attr(href)' \
| grep -a -o -E -- '[0-9.]+/' | tr -d '/' | sort -V | tail -n -1)"
url="$6${res}"
urldir="${url}/"
elif [ -n "$6" ]; then
url="$6"
urldir="${url}"
else
urldir="$(dirname "${url}")/"
fi
mask="${pkg}[._-]v?([0-9]+(\.[0-9]+)+)\.t"
[ -n "$8" ] && mask="$8"
# >&2 echo "mask|${mask}|"
res="$(my_curl "${options[@]}" "${urldir}" | hxclean | hxselect -i -c -s '\n' 'a::attr(href)' \
| grep -a -o -E -- "${mask}" | sort -V | tail -n -1)"
# >&2 echo "res|${res}|"
if [[ "${res}" =~ ${mask} ]]; then
newver="${BASH_REMATCH[1]}"
fi
fi
if [ -n "${newver}" ]; then
if [ "${#newver}" -ge 32 ]; then
if [ "${newver}" != "${ourvern}" ]; then
printf '%s' "${newver}"
fi
else
newvern="$(printf '%s' "${newver}" | to8digit)"
if [[ "${newvern}" > "${ourvern}" ]]; then
printf '%s' "${newver}"
fi
fi
fi
}
check_dl() {
local name url keys sig sha options key ok hash_calc hash_got curlopt
name="$1"
url="$2"
sig="$3"
sha="$4"
keys="$6"
curlopt="$7"
options=()
[ -n "${curlopt}" ] && options+=("${curlopt}")
[ "$5" = 'redir' ] && options+=(--location --proto-redir '=https')
options+=(--output pkg.bin "${url}")
if [ -n "${sig}" ]; then
[[ "${sig}" = 'https://'* ]] || sig="${url}${sig}"
options+=(--output pkg.sig "${sig}")
fi
[ -n "${sha}" ] && options+=(--output pkg.sha "${url}${sha}")
my_curl "${options[@]}"
ok='0'
hash_calc="$(openssl dgst -sha256 pkg.bin | grep -a -i -o -E '[0-9a-f]{64}$')"
if [ -n "${sig}" ]; then
if [ ! -s pkg.sig ]; then
>&2 echo "! ${name}: Verify: Failed (Signature expected, but missing)"
elif grep -a -q -F 'BEGIN SSH SIGNATURE' pkg.sig; then
[[ "${key}" = 'https://'* ]] && key="$(my_curl "${key}")"
exec 3<<EOF
${key}
EOF
if ssh-keygen -Y check-novalidate -n 'file' -f /dev/fd/3 -s pkg.sig < pkg.bin; then
>&2 echo "! ${name}: Verify: OK (Valid SSH signature)"
ok='1'
else
>&2 echo "! ${name}: Verify: Failed (SSH signature)"
fi
else
for key in ${keys}; do
gpg_recv_key "${key}" >/dev/null 2>&1
done
if my_gpg --verify-options show-primary-uid-only --verify pkg.sig pkg.bin >/dev/null 2>&1; then
>&2 echo "! ${name}: Verify: OK (Valid PGP signature)"
ok='1'
else
>&2 echo "! ${name}: Verify: Failed (PGP signature)"
fi
fi
if [ "${ok}" = '1' ] && [ -n "${sha}" ]; then
hash_got="$(grep -a -i -o -E '[0-9A-Fa-f]{64,}' pkg.sha | tr '[:upper:]' '[:lower:]')"
if [ "${hash_calc}" = "${hash_got}" ]; then
>&2 echo "! ${name}: Verify: OK (Matching hash)"
else
>&2 echo "! ${name}: Verify: Failed (Mismatching hash)"
ok='0'
fi
fi
else
>&2 echo "! ${name}: Verify: No PGP signature. Continuing without verification."
ok='1'
fi
if [ "${ok}" = '1' ]; then
>&2 echo "! ${name}: New hash: |${hash_calc}|"
printf '%s' "${hash_calc}"
fi
rm -f pkg.bin pkg.sig pkg.sha
}
bump() {
local keypkg newcurl newdep pkg name ourver ourvern hashenv hash jp url pin
local newver newhash sig sha redir keys urlver
set +x
keypkg='curl'
newcurl=0
newdep=0
while read -r pkg; do
if [[ "${pkg}" =~ ^([A-Z0-9_]+)_VER_=(.+)$ ]]; then
nameenv="${BASH_REMATCH[1]}"
name="${nameenv,,}"
name="${name//_/-}"
ourver="${BASH_REMATCH[2]}"
ourvern="$(printf '%s' "${ourver}" | to8digit)"
hashenv="${nameenv}_HASH"
eval hash="\${${hashenv}:-}"
jp="$(dependencies_json | jq \
".[] | select(.name == \"${name}\")")"
newhash=''
if [ -n "${jp}" ]; then
url="$( printf '%s' "${jp}" | jq --raw-output '.url')"
pin="$( printf '%s' "${jp}" | jq --raw-output '.pinned')"
tag="$( printf '%s' "${jp}" | jq --raw-output '.tag' | sed 's/^null$//')"
hasfile="$( printf '%s' "${jp}" | jq --raw-output '.hasfile' | sed 's/^null$//')"
ref_url="$( printf '%s' "${jp}" | jq --raw-output '.ref_url' | sed 's/^null$//')"
ref_expr="$(printf '%s' "${jp}" | jq --raw-output '.ref_expr' | sed 's/^null$//')"
ref_mask="$(printf '%s' "${jp}" | jq --raw-output '.ref_mask' | sed 's/^null$//')"
curlopt="$( printf '%s' "${jp}" | jq --raw-output '.curlopt' | sed 's/^null$//')"
if [ "${pin}" = 'true' ]; then
>&2 echo "! ${name}: Version pinned. Skipping."
else
# Some projects use part of the version number to form the path.
# Caveat: Major/minor upgrades are not detected in that case.
# (e.g. libssh)
urlver="$(printf '%s' "${url}" | expandver "${ourver}")"
newver="$(check_update "${name}" "${ourvern}" "${urlver}" \
"${tag}" \
"${hasfile}" \
"${ref_url}" "${ref_expr}" "${ref_mask}" "${curlopt}")"
if [ -n "${newver}" ]; then
>&2 echo "! ${name}: New version found: |${newver}|"
if [ -n "${hash}" ]; then
sig="$( printf '%s' "${jp}" | jq --raw-output '.sig' | sed 's/^null$//')"
sha="$( printf '%s' "${jp}" | jq --raw-output '.sha' | sed 's/^null$//')"
redir="$(printf '%s' "${jp}" | jq --raw-output '.redir')"
keys="$( printf '%s' "${jp}" | jq --raw-output '.keys' | sed 's/^null$//')"
urlver="$(printf '%s' "${url}" | expandver "${newver}")"
sigver="$(printf '%s' "${sig}" | expandver "${newver}")"
newhash="$(check_dl "${name}" "${urlver}" "${sigver}" "${sha}" "${redir}" "${keys}" "${curlopt}")"
else
newhash='-'
fi
if [ -z "${newhash}" ]; then
>&2 echo "! ${name}: New version failed to validate."
elif [ "${name}" == "${keypkg}" ]; then
newcurl=1
else
newdep=1
fi
fi
fi
else
>&2 echo "! ${name}: Dependency metadata not found. Skipping."
fi
if [ -z "${newhash}" ]; then
# Keep old values
newver="${ourver}"
# shellcheck disable=SC2154
newhash="${hash}"
fi
echo "export ${nameenv^^}_VER_='${newver}'"
[ -n "${hash}" ] && echo "export ${hashenv}=${newhash}"
fi
done <<< "$(env | grep -a -E '^[A-Z0-9_]+_VER_' | \
sed "s/^${keypkg}/0X0X/g" | sort | \
sed "s/^0X0X/${keypkg}/g")"
if [ "${newcurl}" = '1' ]; then
_REV='1' # Reset revision on each curl version bump
elif [ "${newdep}" = '1' ]; then
((_REV+=1)) # Bump revision with each dependency version bump
fi
echo "export _REV=${_REV}"
}
if [ "${1:-}" = 'bump' ]; then
bump
rm -r -f "${gpgdir:?}"
exit
fi
echo "Build: REV(${_REVSUFFIX})"
# Quit if any of the lines fail
set -e
if [ "${_HOST}" = 'mac' ]; then
tar() { gtar "$@"; }
fi
my_gpg --version | grep -a -F gpg
# Required for a git command to work later in the script, to avoid:
# "fatal: detected dubious ownership in repository at '<sandbox-path>'
# To add an exception for this directory, call:"
git config --global --add safe.directory "$(pwd)"
export _PATCHSUFFIX
if [[ "${_CONFIG}" = *'dev'* ]]; then
_PATCHSUFFIX='.dev'
elif [[ "${_CONFIG}" != *'main'* ]]; then
_PATCHSUFFIX='.test'
else
_PATCHSUFFIX=''
fi
live_xt() {
local pkg hash
pkg="$1"
if [[ -z "${CW_GET:-}" || " ${CW_GET} " = *" ${pkg} "* ]] && \
[[ -z "${CW_NOGET:-}" || " ${CW_NOGET} " != *" ${pkg} "* ]]; then
hash="$(openssl dgst -sha256 pkg.bin)"
echo "${hash}"
echo "${hash}" | grep -q -a -F -- "${2:-}" || exit 1
rm -r -f "${pkg:?}"; mkdir "${pkg}"
if [ "${pkg}" = 'cacert' ]; then
mv pkg.bin "${pkg}/${_CACERT}"
else
tar --strip-components="${3:-1}" -xf pkg.bin --directory="${pkg}"
[ -f "${pkg}${_PATCHSUFFIX}.patch" ] && patch --forward --strip=1 --directory="${pkg}" < "${pkg}${_PATCHSUFFIX}.patch"
fi
rm -f pkg.bin pkg.sig
[ -f "__${pkg}.url" ] && mv "__${pkg}.url" "${pkg}/__url__.txt"
fi
return 0
}
live_dl() {
local name ver hash jp url mirror sig redir key keys options
name="$1"
if [[ -z "${CW_GET:-}" || " ${CW_GET} " = *" ${name} "* ]] && \
[[ -z "${CW_NOGET:-}" || " ${CW_NOGET} " != *" ${name} "* ]]; then
ver="$2"
hash="${3:-}"
set +x
jp="$(dependencies_json | jq \
".[] | select(.name == \"${name}\")")"
url="$( printf '%s' "${jp}" | jq --raw-output '.url' | expandver "${ver}")"
mirror="$( printf '%s' "${jp}" | jq --raw-output '.mirror' | sed 's/^null$//' | expandver "${ver}")"
sigraw="$( printf '%s' "${jp}" | jq --raw-output '.sig' | sed 's/^null$//' | expandver "${ver}")"
redir="$( printf '%s' "${jp}" | jq --raw-output '.redir')"
keys="$( printf '%s' "${jp}" | jq --raw-output '.keys' | sed 's/^null$//')"
curlopt="$(printf '%s' "${jp}" | jq --raw-output '.curlopt' | sed 's/^null$//')"
options=()
[ -n "${curlopt}" ] && options+=("${curlopt}")
[ "${redir}" = 'redir' ] && options+=(--location --proto-redir '=https')
options+=(--output pkg.bin "${url}")
sig="${sigraw}"
if [ -n "${sig}" ]; then
[[ "${sig}" = 'https://'* ]] || sig="${url}${sig}"
options+=(--output pkg.sig "${sig}")
fi
set -x
if ! my_curl "${options[@]}"; then
if [ -n "${mirror}" ]; then
options=()
if [[ "${mirror}" = 'https://github.com/'* ]]; then
options+=(--location --proto-redir '=https')
fi
options+=(--output pkg.bin "${mirror}")
sig="${sigraw}"
if [ -n "${sig}" ]; then
[[ "${sig}" = 'https://'* ]] || sig="${mirror}${sig}"
options+=(--output pkg.sig "${sig}")
fi
if ! my_curl "${options[@]}"; then
>&2 echo "! ${name}: Download: Failed (from mirror)"
exit 1
fi
else
>&2 echo "! ${name}: Download: Failed"
exit 1
fi
fi
if [ -n "${sig}" ]; then
if [ ! -s pkg.sig ]; then
>&2 echo "! ${name}: Verify: Failed (Signature expected, but missing)"
exit 1
elif grep -a -q -F 'BEGIN SSH SIGNATURE' pkg.sig; then
[[ "${key}" = 'https://'* ]] && key="$(my_curl "${key}")"
exec 3<<EOF
${key}
EOF
ssh-keygen -Y check-novalidate -n 'file' -f /dev/fd/3 -s pkg.sig < pkg.bin || exit 1
else
for key in ${keys}; do
gpg_recv_key "${key}"
done
my_gpg --verify-options show-primary-uid-only --verify pkg.sig pkg.bin || exit 1
fi
fi
echo "${url}" > "__${name}.url"
if [ -n "${hash}" ]; then
live_xt "${name}" "${hash}"
else
true
fi
fi
}
# Download llvm-mingw
if [ "${_OS}" = 'win' ] && \
[ "${CW_LLVM_MINGW_DL:-}" = '1' ] && \
[ ! -d 'llvm-mingw' ]; then
name=''; vers=''; hash=''; arch="$(uname -m)"
if [ "${_HOST}-${arch}" = 'linux-x86_64' ]; then
name='llvm-mingw-linux-x86-64'; vers="${LLVM_MINGW_LINUX_X86_64_VER_}"; hash="${LLVM_MINGW_LINUX_X86_64_HASH}"
elif [ "${_HOST}-${arch}" = 'linux-aarch64' ]; then
name='llvm-mingw-linux-aarch64'; vers="${LLVM_MINGW_LINUX_AARCH64_VER_}"; hash="${LLVM_MINGW_LINUX_AARCH64_HASH}"
elif [ "${_HOST}" = 'mac' ]; then
name='llvm-mingw-mac'; vers="${LLVM_MINGW_MAC_VER_}"; hash="${LLVM_MINGW_MAC_HASH}"
elif [ "${_HOST}" = 'win' ]; then
name='llvm-mingw-win'; vers="${LLVM_MINGW_WIN_VER_}"; hash="${LLVM_MINGW_WIN_HASH}"
fi
if [ -n "${name}" ]; then
CW_GET='' live_dl "${name}" "${vers}"
CW_GET='' live_xt "${name}" "${hash}"
mv "${name}" 'llvm-mingw'
echo "${vers}" > 'llvm-mingw/version.txt'
fi
fi
# Translate config to a list of dependencies
export _DEPS='curl'
if [[ ! "${_CONFIG}" =~ (zero|nozlib) ]]; then
if [[ "${_CONFIG}" = *'zlibng'* ]]; then
_DEPS+=' zlibng'
else
_DEPS+=' zlibold'
fi
fi
if [[ ! "${_CONFIG}" =~ (zero|bldtst|pico|nano|micro|mini) ]]; then
if [[ "${_CONFIG}" != *'nobrotli'* ]]; then
_DEPS+=' brotli'
fi
if [[ "${_CONFIG}" != *'nozstd'* ]]; then
_DEPS+=' zstd'
fi
fi
if [[ "${_CONFIG}" = *'cares'* ]]; then
_DEPS+=' cares'
fi
if [[ ! "${_CONFIG}" =~ (zero|bldtst|nocookie) ]]; then
_DEPS+=' libpsl'
fi
need_cacert=0
if [[ ! "${_CONFIG}" =~ (zero|bldtst) ]]; then
if [[ "${_CONFIG}" = *'libressl'* ]]; then
_DEPS+=' libressl'
need_cacert=1
elif [[ "${_CONFIG}" = *'awslc'* ]]; then
_DEPS+=' awslc'
need_cacert=1
elif [[ "${_CONFIG}" = *'boringssl'* ]]; then
_DEPS+=' boringssl'
need_cacert=1
elif [[ "${_CONFIG}" = *'openssl'* ]]; then
_DEPS+=' openssl'
need_cacert=1
elif [[ "${_CONFIG}" = *'quictls'* ]]; then
_DEPS+=' quictls'
need_cacert=1
elif [[ "${_OS}" = 'linux' ]] || \
[[ ! "${_CONFIG}" =~ (pico|nano|micro|mini|ostls) ]]; then
_DEPS+=' libressl'
need_cacert=1
fi
fi
if [[ ! "${_CONFIG}" =~ (zero|bldtst|pico|nano) ]]; then
_DEPS+=' nghttp2'
if [[ "${_CONFIG}" != *'noh3'* ]]; then
_DEPS+=' nghttp3'
if [[ "${_CONFIG}" != *'openssl'* ]]; then
_DEPS+=' ngtcp2'
fi
fi
fi
if [[ ! "${_CONFIG}" =~ (zero|bldtst|pico|nano|micro) ]]; then
if [[ "${_CONFIG}" = *'libssh'* ]]; then
_DEPS+=' libssh1'
else
_DEPS+=' libssh2'
fi
fi
if [ "${need_cacert}" = '1' ]; then
_DEPS+=' cacert'
fi
if [[ "${_CONFIG}" =~ (dev|test|trurl) ]]; then
_DEPS+=' trurl'
fi
# Download dependencies
if [[ "${_DEPS}" = *'zlibng'* ]]; then
live_dl zlibng "${ZLIBNG_VER_}"
live_xt zlibng "${ZLIBNG_HASH}"
fi
if [[ "${_DEPS}" = *'zlibold'* ]]; then
live_dl zlib "${ZLIB_VER_}"
live_xt zlib "${ZLIB_HASH}"
fi
if [[ "${_DEPS}" = *'brotli'* ]]; then
live_dl brotli "${BROTLI_VER_}"
live_xt brotli "${BROTLI_HASH}"
fi
if [[ "${_DEPS}" = *'zstd'* ]]; then
live_dl zstd "${ZSTD_VER_}"
live_xt zstd "${ZSTD_HASH}"
fi
if [[ "${_DEPS}" = *'cares'* ]]; then
live_dl cares "${CARES_VER_}"
live_xt cares "${CARES_HASH}"
fi
if [[ "${_DEPS}" = *'nghttp2'* ]]; then
live_dl nghttp2 "${NGHTTP2_VER_}"
live_xt nghttp2 "${NGHTTP2_HASH}"
fi
if [[ "${_DEPS}" = *'nghttp3'* ]]; then
live_dl nghttp3 "${NGHTTP3_VER_}"
live_xt nghttp3 "${NGHTTP3_HASH}"
fi
if [[ "${_DEPS}" = *'ngtcp2'* ]]; then
live_dl ngtcp2 "${NGTCP2_VER_}"
live_xt ngtcp2 "${NGTCP2_HASH}"
fi
if [[ "${_DEPS}" = *'libpsl'* ]]; then
live_dl libpsl "${LIBPSL_VER_}"
live_xt libpsl "${LIBPSL_HASH}"
fi
if [[ "${_DEPS}" = *'libressl'* ]]; then
if [[ "${_CONFIG}" = *'dev'* ]] && false; then
LIBRESSL_VER_='3.9.0'
LIBRESSL_HASH=1cc232418498de305e6d5cb80c94a16415c01dcb3cd98f2e8c3a2202091a3420
fi
live_dl libressl "${LIBRESSL_VER_}"
live_xt libressl "${LIBRESSL_HASH}"
fi
if [[ "${_DEPS}" = *'awslc'* ]]; then
live_dl awslc "${AWSLC_VER_}"
live_xt awslc "${AWSLC_HASH}"
fi
if [[ "${_DEPS}" = *'boringssl'* ]]; then
live_dl boringssl "${BORINGSSL_VER_}"
live_xt boringssl "${BORINGSSL_HASH}"
fi
if [[ "${_DEPS}" = *'openssl'* ]]; then
if [[ "${_CONFIG}" = *'dev'* ]]; then
OPENSSL_VER_='3.2.0-beta1'
OPENSSL_HASH=
fi
live_dl openssl "${OPENSSL_VER_}"
live_xt openssl "${OPENSSL_HASH}"
fi
if [[ "${_DEPS}" = *'quictls'* ]]; then
live_dl quictls "${QUICTLS_VER_}"
live_xt quictls "${QUICTLS_HASH}"
fi
if [[ "${_DEPS}" = *'libssh1'* ]]; then
# shellcheck disable=SC2153
live_dl libssh "${LIBSSH_VER_}"
# shellcheck disable=SC2153
live_xt libssh "${LIBSSH_HASH}"
fi
if [[ "${_DEPS}" = *'libssh2'* ]]; then
if [[ "${_CONFIG}" = *'dev'* ]]; then
LIBSSH2_HASH=
if [[ -z "${CW_GET:-}" || " ${CW_GET} " = *' libssh2 '* ]] && \
[[ -z "${CW_NOGET:-}" || " ${CW_NOGET} " != *' libssh2 '* ]]; then
LIBSSH2_REV_="${LIBSSH2_REV_:-master}"
tmp="$(mktemp)"
my_curl --user-agent ' ' "https://api.github.com/repos/libssh2/libssh2/commits/${LIBSSH2_REV_}" \
--retry-all-errors --retry 10 \
--header 'X-GitHub-Api-Version: 2022-11-28' --output "${tmp}"
rev="$(jq --raw-output '.sha' "${tmp}")"
rm -r -f "${tmp}"
[ -n "${rev}" ] && LIBSSH2_REV_="${rev}"
url="https://github.com/libssh2/libssh2/archive/${LIBSSH2_REV_}.tar.gz"
echo "${url}" > '__libssh2.url'
my_curl --location --proto-redir =https --output pkg.bin "${url}"
live_xt libssh2 "${LIBSSH2_HASH}"
fi
else
live_dl libssh2 "${LIBSSH2_VER_}"
live_xt libssh2 "${LIBSSH2_HASH}"
fi
if [[ "${_CONFIG}" = *'dev'* ]] || [ -d 'libssh2/.git' ]; then
LIBSSH2_VER_="$(grep -a -F 'define LIBSSH2_VERSION ' 'libssh2/include/libssh2.h' | grep -o -E '".+"' | tr -d '"')"
fi
fi
if [[ "${_DEPS}" = *'cacert'* ]]; then
live_dl cacert "${CACERT_VER_}"
live_xt cacert "${CACERT_HASH}"
fi
if [[ "${_DEPS}" = *'curl'* ]]; then
if [[ "${_CONFIG}" = *'dev'* ]]; then
CURL_HASH=
if [[ -z "${CW_GET:-}" || " ${CW_GET} " = *' curl '* ]] && \
[[ -z "${CW_NOGET:-}" || " ${CW_NOGET} " != *' curl '* ]]; then
CURL_REV_="${CURL_REV_:-master}"
tmp="$(mktemp)"
my_curl --user-agent ' ' "https://api.github.com/repos/curl/curl/commits/${CURL_REV_}" \
--retry-all-errors --retry 10 \
--header 'X-GitHub-Api-Version: 2022-11-28' --output "${tmp}"
rev="$(jq --raw-output '.sha' "${tmp}")"
rm -r -f "${tmp}"
[ -n "${rev}" ] && CURL_REV_="${rev}"
url="https://github.com/curl/curl/archive/${CURL_REV_}.tar.gz"
echo "${url}" > '__curl.url'
my_curl --location --proto-redir =https --output pkg.bin "${url}"
live_xt curl "${CURL_HASH}"
fi
else
live_dl curl "${CURL_VER_}"
live_xt curl "${CURL_HASH}"
fi
if [[ "${_CONFIG}" = *'dev'* ]] || [ -d 'curl/.git' ]; then
CURL_VER_="$(grep -a -F 'define LIBCURL_VERSION' 'curl/include/curl/curlver.h' | grep -o -E '".+"' | tr -d '"')"
fi
fi
if [[ "${_DEPS}" = *'trurl'* ]]; then
# shellcheck disable=SC2153
live_dl trurl "${TRURL_VER_}"
# shellcheck disable=SC2153
live_xt trurl "${TRURL_HASH}"
fi
if [ "${_OS}" = 'win' ] && \
[ -n "${SIGN_CODE_GPG_PASS:+1}" ] && \
! command -v osslsigncode >/dev/null 2>&1; then
live_dl osslsigncode "${OSSLSIGNCODE_VER_}"
live_xt osslsigncode "${OSSLSIGNCODE_HASH}"
./osslsigncode.sh "${OSSLSIGNCODE_VER_}"
fi
rm -r -f "${gpgdir:?}"