-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
get-deps.sh
executable file
·365 lines (341 loc) · 6.86 KB
/
get-deps.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
#!/bin/sh
set -e
NOTFOUND=0
have_command() {
command -v $1 >/dev/null
}
if test -z "$SUDO"; then
if have_command 'sudo'; then
SUDO="sudo"
elif have_command 'doas'; then
SUDO="doas"
fi
fi
alpine_deps() {
APK="$SUDO apk"
$APK add \
'alpine-sdk' \
'bash' \
'build-base' \
'coreutils' \
'openssl-dev' \
'pkgconf' \
'python3' \
'zlib-dev' \
'zstd-dev'
if ! have_command 'cargo'; then
$APK add 'cargo'
fi
}
fedora_deps() {
if have_command 'dnf'; then
YUM="$SUDO dnf"
elif have_command 'yum'; then
YUM="$SUDO yum"
else
echo "No idea what package manager to use, sorry! (perhaps 'dnf' or 'yum' is not in \$PATH?)"
return 1
fi
# perl stuff moved around in different versions of the distro.
# Make a soft attempt under this name.
$YUM install -y 'perl-FindBin' 'perl-File-Compare' || true
if ! have_command 'curl' ; then
# Some systems have curl-minimal which won't tolerate us
# trying to install curl, so only try to install if we
# don't have it already
$YUM install -y 'curl'
fi
$YUM install -y \
'clang-devel' \
'cmake' \
'gcc' \
'gcc-c++' \
'git' \
'make' \
'openssl-devel' \
'pkg-config' \
'python3' \
'python3-pip' \
'redis' \
'rpm-build' \
'rpm-sign' \
'telnet'
}
amazon_deps() {
if have_command 'dnf'; then
YUM="$SUDO dnf"
elif have_command 'yum'; then
YUM="$SUDO yum"
else
echo "No idea what package manager to use, sorry! (perhaps 'dnf' or 'yum' is not in \$PATH?)"
return 1
fi
if ! have_command 'curl' ; then
# Some systems have curl-minimal which won't tolerate us
# trying to install curl, so only try to install if we
# don't have it already
$YUM install -y 'curl'
fi
# Amazon Linux 2 has some legacy openssl stuff to workaround
case $VERSION in
2)
$YUM remove 'openssl' || true
$YUM install -y 'openssl11-devel'
;;
*)
$YUM install -y 'openssl-devel'
;;
esac
$YUM install -y \
'binutils' \
'ca-certificates' \
'clang-devel' \
'cmake' \
'gcc' \
'gcc-c++' \
'glibc-devel' \
'git' \
'kernel-devel' \
'kernel-headers' \
'make' \
'pkgconfig' \
'python3' \
'python3-pip' \
'rpm-build' \
'rpm-sign'
}
mariner_deps() {
if have_command 'dnf'; then
YUM="$SUDO dnf"
elif have_command 'yum'; then
YUM="$SUDO yum"
else
echo "No idea what package manager to use, sorry! (perhaps 'dnf' or 'yum' is not in \$PATH?)"
return 1
fi
# perl stuff moved around in different versions of the distro.
# Make a soft attempt under this name.
$YUM install -y 'perl-FindBin' 'perl-File-Compare' || true
if ! have_command 'curl' ; then
# Some systems have curl-minimal which won't tolerate us
# trying to install curl, so only try to install if we
# don't have it already
$YUM install -y 'curl'
fi
$YUM install -y \
'binutils' \
'ca-certificates' \
'clang-devel' \
'cmake' \
'gcc' \
'gcc-c++' \
'glibc-devel' \
'git' \
'kernel-devel' \
'kernel-headers' \
'make' \
'openssl-devel' \
'pkg-config' \
'python3' \
'python3-pip' \
'redis' \
'rpm-build' \
'rpm-sign'
}
suse_deps() {
ZYPPER="$SUDO zypper"
$ZYPPER install -yl \
'clang' \
'cmake' \
'gcc' \
'gcc-c++' \
'git' \
'libopenssl-devel' \
'llvm' \
'make' \
'pkg-config' \
'python3' \
'redis' \
'rpm-build' \
'telnet'
}
debian_deps() {
APT="$SUDO apt-get"
$APT install -y --no-install-recommends \
'bsdutils' \
'clang' \
'cmake' \
'dpkg-dev' \
'fakeroot' \
'g++' \
'gcc' \
'jq' \
'libclang-dev' \
'libssl-dev' \
'lld' \
'llvm-dev' \
'lsb-release' \
'pkg-config' \
'python3' \
'redis'
# Gcc 9 is too broken to use to build aws-lc-sys, which is
# needed to build rustls
$APT remove -y gcc-9 || true
}
arch_deps() {
PACMAN="$SUDO pacman"
$PACMAN -S --noconfirm --needed \
'base-devel' \
'cargo' \
'clang' \
'cmake' \
'git' \
'pkgconf' \
'python3' \
'rust'
}
bsd_deps() {
PKG="$SUDO pkg"
$PKG install -y \
'cmake' \
'curl' \
'gcc' \
'gettext' \
'git' \
'gmake' \
'openssl' \
'pkgconf' \
'python3' \
'rust' \
'z' \
'zip'
}
gentoo_deps() {
portageq envvar USE | xargs -n 1 | grep '^X$' \
|| (echo 'X is not found in USE flags' && exit 1)
EMERGE="$SUDO emerge"
for pkg in \
'cmake' \
'openssl' \
'dev-vcs/git' \
'pkgconf' \
'python'
do
equery l "$pkg" > /dev/null || $EMERGE --select $pkg
done
}
void_deps() {
XBPS="$SUDO xbps-install"
$XBPS -S \
'gcc' \
'pkgconf' \
'fontconfig-devel' \
'openssl-devel'
if ! have_command 'cargo'; then
$XBPS -S 'cargo'
fi
}
solus_deps() {
EOPKG="$SUDO eopkg"
$EOPKG install -y -c system.devel
}
fallback_method() {
if test -e /etc/alpine-release; then
alpine_deps
elif test -e /etc/centos-release || test -e /etc/fedora-release || test -e /etc/redhat-release; then
fedora_deps
elif test -e /etc/debian_version; then
debian_deps
elif test -e /etc/arch-release; then
arch_deps
elif test -e /etc/gentoo-release; then
gentoo_deps
elif test -e /etc/solus-release; then
solus_deps
elif have_command 'lsb_release' && test "$(lsb_release -si)" = "openSUSE"; then
suse_deps
fi
# OSTYPE is set by bash
case $OSTYPE in
darwin*|msys)
echo "skipping darwin*/msys"
;;
freebsd*)
bsd_deps
;;
''|linux-gnu)
# catch and known OSTYPE
echo "\$OSTYPE is '$OSTYPE'"
;;
*)
NOTFOUND=1
return 1
;;
esac
return 0
}
if test -e /etc/os-release; then
. /etc/os-release
fi
case $ID in
centos|fedora|rhel)
fedora_deps
;;
alpine)
alpine_deps
;;
*suse*)
suse_deps
;;
debian|ubuntu)
debian_deps
;;
freebsd) # available since 13.0
bsd_deps
;;
arch|artix)
arch_deps
;;
gentoo)
gentoo_deps
;;
void)
void_deps
;;
solus)
solus_deps
;;
mariner)
mariner_deps
;;
amzn)
amazon_deps
;;
*)
echo "Couldn't find OS by ID, found ID: $ID"
echo "Fallback to detecting '/etc/<name>-release'"
fallback_method
if ! test $? -eq 0; then
if ! test $NOTFOUND -eq 0; then
echo "Couldn't identify OS through '/etc/<name>-release'"
fi
exit 1
fi
;;
esac
if ! test $NOTFOUND -eq 0; then
echo "Please contribute the commands to install the deps for:"
if have_command 'lsb_release'; then
lsb_release -ds
elif test -e /etc/os-release; then
cat /etc/os-release
else
echo "Couldn't recognise system"
fi
exit 1
fi
if ! have_command 'rustc'; then
echo "Rust is not installed!"
echo "Please see https://docs.kumomta.com/userguide/installation/source/ for installation instructions"
exit 1
fi