-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstandalone.bash
executable file
·445 lines (345 loc) · 10.7 KB
/
standalone.bash
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
#!/bin/bash -eux
#
# Install pyam and all dependencies in a standalone directory.
#
# This requires the GNU toolchain. This will install Python, Subversion,
# mysql-python-connector, and pyam
#
# Note that the output directory should not be moved. Otherwise, shebang lines
# will continue to point to the old location. And library paths may not match.
#
# Relevant environment variables are below.
#
# - STANDALONE_CURL_OPTIONS
# - STANDALONE_IGNORE_SHASUM
# - STANDALONE_USE_SUBVERSION_1_6
# - STANDALONE_USE_SYSTEM_SQLITE
# - STANDALONE_USE_SYSTEM_SUBVERSION
# ignore shasum since the sha extensions are variable
export STANDALONE_IGNORE_SHASUM=1
readonly jobs=$( \
python \
-c 'import multiprocessing; print(multiprocessing.cpu_count())' 2> \
/dev/null || \
echo 2)
download()
{
# Running curl multiple tries since "--retry" does not seem to catch all
# problems.
local count=0
while true
do
if [ $count -gt 3 ]
then
echo 'Timed out' >&2
exit 1
fi
let count=$count+1
if [ -v STANDALONE_CURL_OPTIONS ]
then
local -r curl_command="curl $STANDALONE_CURL_OPTIONS"
else
# local -r curl_command='curl'
local curl_command='curl'
fi
# shellcheck disable=SC2086
$curl_command --retry 10 --location --output "$1" "$2" || continue
# if [ ! -v STANDALONE_IGNORE_SHASUM ]
# then
# # if shasum --check "$script_directory/standalone/$1.sha1"
# if shasum --check "$script_directory/standalone/$1.sha512"
# then
# break
# fi
# fi
done
}
install_python()
{
local -r output_directory="$1"
#local -r source_directory='Python-3.4.3'
local -r source_directory='Python-3.9.0'
local -r original_directory="$PWD"
mkdir -p 'standalone-temporary'
cd 'standalone-temporary'
if [ ! -f "$source_directory.tgz" ]
then
download "$source_directory.tgz" \
'https://www.python.org/ftp/python/3.9.0/Python-3.9.0.tgz'
fi
if [ ! -d "$source_directory" ]
then
tar xf "$source_directory.tgz"
fi
if [ ! -f "$output_directory/bin/python3" ]
then
cd "$source_directory"
# Isolate from environment variables like "PYTHONPATH" and
# "PYTHONHOME".
sed \
-e 's/^\(int Py_IgnoreEnvironmentFlag\).*;/\1 = 1;/g' \
-i'' Python/pythonrun.c
./configure --prefix="$output_directory"
make -j "$jobs" install
fi
cd "$original_directory"
}
install_sqlite()
{
local -r output_directory="$1"
#local -r source_directory='sqlite-autoconf-3080100'
local -r source_directory='sqlite-autoconf-3330000'
local -r original_directory="$PWD"
mkdir -p 'standalone-temporary'
cd 'standalone-temporary'
if [ ! -f "$source_directory.tar.gz" ]
then
download \
"$source_directory.tar.gz" \
"https://sqlite.org/2020/$source_directory.tar.gz"
# "https://sqlite.org/2013/$source_directory.tar.gz"
fi
if [ ! -d "$source_directory" ]
then
tar xf "$source_directory.tar.gz"
fi
cd "$source_directory"
./configure --prefix="$output_directory"
make -j "$jobs" install
cd "$original_directory"
}
install_apr()
{
local -r output_directory="$1"
#local -r source_directory='apr-1.5.0'
local -r source_directory='apr-1.7.0'
local -r original_directory="$PWD"
mkdir -p 'standalone-temporary'
cd 'standalone-temporary'
if [ ! -f "$source_directory.tar.gz" ]
then
download \
"$source_directory.tar.gz" \
"https://archive.apache.org/dist/apr/$source_directory.tar.gz"
fi
if [ ! -d "$source_directory" ]
then
tar xf "$source_directory.tar.gz"
fi
cd "$source_directory"
./configure --prefix="$output_directory"
# apr seems to have flaky parallel builds.
make install
cd "$original_directory"
}
install_apr_util()
{
local -r output_directory="$1"
local -r source_directory='apr-util-1.5.3'
local -r original_directory="$PWD"
mkdir -p 'standalone-temporary'
cd 'standalone-temporary'
if [ ! -f "$source_directory.tar.gz" ]
then
download \
"$source_directory.tar.gz" \
"https://archive.apache.org/dist/apr/$source_directory.tar.gz"
fi
if [ ! -d "$source_directory" ]
then
tar xf "$source_directory.tar.gz"
fi
cd "$source_directory"
./configure \
--with-apr="$output_directory/bin/apr-1-config" \
--with-sqlite3="$output_directory" \
--prefix="$output_directory"
# apr-util seems to have flaky parallel builds.
make install
cd "$original_directory"
}
install_subversion()
{
local -r output_directory="$1"
if [ -v STANDALONE_USE_SUBVERSION_1_6 ]
then
local -r source_directory='subversion-1.6.11'
else
#local -r source_directory='subversion-1.8.4'
local -r source_directory='subversion-1.14.0'
fi
local -r original_directory="$PWD"
mkdir -p 'standalone-temporary'
cd 'standalone-temporary'
if [ ! -f "$source_directory.tar.gz" ]
then
download \
"$source_directory.tar.gz" \
"https://archive.apache.org/dist/subversion/$source_directory.tar.gz"
fi
if [ ! -d "$source_directory" ]
then
tar xf "$source_directory.tar.gz"
fi
cd "$source_directory"
./configure \
--with-apr="$output_directory/bin/apr-1-config" \
--with-apr-util="$output_directory/bin/apu-1-config" \
--with-sqlite="$output_directory" \
--without-apxs \
--without-doxygen \
--without-swig \
--prefix="$output_directory"
make install
cd "$original_directory"
}
install_pysvn()
{
local -r output_directory="$1"
local -r prefix=$( \
"$output_directory/bin/python3" \
-c 'from distutils import sysconfig; print(sysconfig.get_python_lib(standard_lib=False))')
local -r original_directory="$PWD"
mkdir -p 'standalone-temporary'
cd 'standalone-temporary'
#local -r pysvn='pysvn-1.7.6'
local -r pysvn='pysvn-1.9.10'
if [ ! -d "$pysvn.tar.gz" ]
then
download \
"$pysvn.tar.gz" \
"http://pysvn.barrys-emacs.org/source_kits/$pysvn.tar.gz"
fi
rm -rf "$pysvn"
tar xf "$pysvn.tar.gz"
cd "$pysvn/Source"
if [ -v STANDALONE_USE_SYSTEM_SUBVERSION ]
then
"$output_directory/bin/python3" setup.py configure
else
"$output_directory/bin/python3" setup.py configure \
--apr-inc-dir="$output_directory/include/apr-1" \
--apu-inc-dir="$output_directory/include/apr-1" \
--apr-lib-dir="$output_directory/lib" \
--svn-root-dir="$output_directory"
fi
make
mkdir -p "$prefix/pysvn"
cp pysvn/__init__.py "$prefix/pysvn/"
cp pysvn/_pysvn*.so "$prefix/pysvn/"
cd "$original_directory"
}
install_python_package_tarball()
{
local -r output_directory="$1"
local -r name="$2"
local -r base_url="$3"
local -r original_directory="$PWD"
mkdir -p 'standalone-temporary'
cd 'standalone-temporary'
if [ ! -d "$name.tar.gz" ]
then
download "$name.tar.gz" "$base_url/$name.tar.gz"
fi
rm -rf "$name"
tar xf "$name.tar.gz"
cd "$name"
#"$output_directory/bin/python3" setup.py install
"$output_directory/bin/python" setup.py install
cd "$original_directory"
}
install_python_package()
{
local -r output_directory="$1"
local -r url="$2"
#"$output_directory/bin/python3" setup.py install
"$output_directory/bin/pip3" install $url
}
install_pyam()
{
local -r output_directory="$1"
cd "$script_directory"
"$output_directory/bin/python3" setup.py install
}
# set these variables to 0 to disable specific installation steps
build_sqlite=1
build_subversion=1
build_python=1
build_python_extras=1
build_pyam=1
build_argcomplete=1
main()
{
# Get absolute path.
local -r old_path="$PWD"
cd "$raw_output_directory"
local -r output_directory="$PWD"
cd "$old_path"
if [ $build_sqlite != 0 ]
then
if [ ! -v STANDALONE_USE_SYSTEM_SQLITE ]
then
install_sqlite "$output_directory"
fi
fi
if [ $build_subversion != 0 ]
then
if [ ! -v STANDALONE_USE_SYSTEM_SUBVERSION ]
then
install_apr "$output_directory"
install_apr_util "$output_directory"
install_subversion "$output_directory"
fi
fi
export PYTHONHOME="$output_directory"
if [ $build_python != 0 ]
then
install_python "$output_directory"
fi
# 'setuptools-15.2' \
if [ $build_python_extras != 0 ]
then
install_python_package \
"$output_directory" \
"https://files.pythonhosted.org/packages/a7/e0/30642b9c2df516506d40b563b0cbd080c49c6b3f11a70b4c7a670f13a78b/setuptools-50.3.2.zip"
#'setuptools-50.3.2' \
#'https://pypi.python.org/packages/source/s/setuptools'
install_python_package \
"$output_directory" \
"https://dev.mysql.com/get/Downloads/Connector-Python/mysql-connector-python-1.1.6.tar.gz"
#'mysql-connector-python-1.1.6' \
#'https://dev.mysql.com/get/Downloads/Connector-Python'
install_python_package \
"$output_directory" \
"http://pysvn.barrys-emacs.org/source_kits/pysvn-1.9.10.tar.gz"
#install_pysvn "$output_directory"
fi
if [ $build_pyam != 0 ]
then
# $output_directory/bin/pip3 install dateutil
install_python_package \
"$output_directory" \
"https://files.pythonhosted.org/packages/73/30/e9e22e80fc592803edb23d89588ccaa184f14bb67d9c321f705edbfdd95b/py-dateutil-2.2.tar.gz"
install_pyam "$output_directory" "$script_directory"
fi
if [ $build_argcomplete != 0 ]
then
install_python_package \
"$output_directory" \
"https://pypi.python.org/packages/source/a/argcomplete/argcomplete-1.12.1.tar.gz"
#'argcomplete-1.12.1' \
#'https://pypi.python.org/packages/source/a/argcomplete'
fi
# 'argcomplete-0.8.8' \
echo "Add '$output_directory/bin' to then your PATH"
}
if [ $# -ne 1 ]
then
echo "Usage: $0 output_directory"
exit 1
fi
readonly resolved_file_path=$(readlink -f "$0")
readonly script_directory=$(dirname "$resolved_file_path")
readonly raw_output_directory="$1"
mkdir -p "$raw_output_directory"
main