blob: 8ee633321a6534417f3aa39504a79d2aeef3e11a (
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
|
source+=('mozconfig.patch')
sha256sums+=('4f94ab5e8442a032edfd457ac5d4a2d237db0093906c97e82436af56e0500b52')
eval "$(
declare -f build | \
sed '
2 a export RUSTFLAGS+=" -Cdebuginfo=0 -Clto=off"
2 a export LDFLAGS+=" -Wl,--no-keep-memory -Wl,--reduce-memory-overheads"
'
declare -f prepare | \
sed '
$ i export MOZ_SOURCE_CHANGESET="DEVEDITION_${pkgver//./_}_RELEASE"
$ i patch -p1 -i "$srcdir/mozconfig.patch"
'
)"
for ((i=0; i<${#source[@]}; i++)); do
infos=$(
printf '%s\n' "${source[${i}]}" | \
sed -n '
s@^\(\([^:]\+\)::\)\?\(git\|hg\)+\([^?#]\+\)\(?signed\)\?#\(\(tag\|commit\)=\S\+\)$@\3 \2 \4 \5 \6@
T
p
'
)
if [ -n "${infos}" ]; then
source[${i}]=$(
type="${infos%% *}"
infos="${infos#* }"
if [ -n "${infos%% *}" ]; then
prefix="${infos%% *}"
else
prefix=''
fi
infos="${infos#* }"
repo="${infos%% *}"
repo64=$(
printf '%s' "${repo}" | \
base64 -w0 | \
sed 's/=/%3D/g'
)
infos="${infos#* }"
if [ "${infos%% *}" = '?signed' ]; then
key_check=$(
printf '&valid_keys='
printf '%s,' "${validpgpkeys[@]}" | \
sed 's/,$//'
)
else
key_check=''
fi
infos="${infos#* }"
if [ -z "${prefix}" ]; then
prefix="${repo%.git}"
prefix="${prefix##*/}"
fi
prefix_64=$(
printf '%s/' "${prefix}" | \
base64 -w0 | \
sed 's/=/%3D/g'
)
printf '%s-%s.tar.gz::https://archive-server.archlinux32.org/?t=%s&p=%s&r=%s%s&%s\n' \
"${prefix}" \
"${pkgver}" \
"${type}" \
"${prefix_64}" \
"${repo64}" \
"${key_check}" \
"${infos}"
)
fi
done
# from VoidLinux, avoid excessive debug symbols in rust leading
# to out-of-memory situations
eval "$(
declare -f build | \
sed '
5 a sed -i "s/debug_info = '\''2'\''/debug_info = '\''1'\''/" build/moz.configure/toolchain.configure
'
)"
# don't kill build slaves by auto-guessing available CPU cores
eval "$(
declare -f build | \
sed '
2 a export MOZ_MAKE_FLAGS=-j1
'
)"
|