blob: 4d7a3e762d5a9dd576e75146a7b4507127d5e025 (
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
|
#!/bin/sh
# Public domain. Originally written 2019, Karl Berry.
# Try a TL installation into /tmp/ki (hardwired),
# using install-tl with a given profile.
vc_id='$Id$'
renice 20 $$ >&/dev/null
# don't let cwd or existing PATH interfere
cd "$HOME" || exit 1
PATH=/usr/local/bin:/usr/bin:/bin # /usr/local/bin for good perl on tug
real0=`realpath $0`
mydir=`cd \`dirname "$real0"\` && pwd` # Master/tlpkg/bin
Master=`cd $mydir/../.. && pwd`
profiledir=$Master/tlpkg/dev/profiles
opt=-vv # -v -vv
profile=$profiledir/TLinfra.pro
repo=$Master
while test $# -gt 0; do
case $1 in
--profile) shift; profile=$1;;
--repo) shift; repo=$1;;
--help) echo "ustl. sorry."; exit 0;;
--version) echo "$vc_id"; exit 0;;
*) echo "$0: unrecognized option \`$1'." >&2
exit 1;;
esac
shift
done
if test ! -f "$profile"; then
# convenience silliness
if test -f "$profiledir/$profile"; then
profile=$profiledir/$profile
elif test -f "$profiledir/TL$profile"; then
profile=$profiledir/TL$profile
elif test -f "$profiledir/TL$profile.pro"; then
profile=$profiledir/TL$profile.pro
else
echo "$0: goodbye, no profile \`$profile' (not in $profiledir either)." >&2
exit 1
fi
fi
if test ! -x "$repo/install-tl"; then
echo "$0: goodbye, no install-tl in repository: $repo" >&2
exit 1
fi
instdir=/tmp/ki # also specified in *.pro, so not enough to change it here.
rm -rf $instdir* && echo "removed $instdir*."
# make installations quieter.
#TEXLIVE_INSTALL_ENV_NOCHECK=1; export TEXLIVE_INSTALL_ENV_NOCHECK
#TEXLIVE_INSTALL_NO_WELCOME=1; export TEXLIVE_INSTALL_NO_WELCOME
set -x
pro=--profile=$profile
exec time $repo/install-tl $opt $pro
cust=--custom-bin=$wb
exec time $Master/install-tl $cust $pro
exec time $lp/install-tl $pro
exec time $lp/install-tl $pro --repo ftp://ftp.cstug.cz/pub/tex/local/tlpretest
exec time $ln/install-tl $pro --repo ctan #--in-place
thisrel=/usr/local/texlive/`date +%Y` # not necessarily, but whatever
prevrel=/usr/local/texlive/`expr "$(date +%Y)" - 1`
exec time $thisrel/install-tl $pro
exec time $prevrel/install-tl $pro
exit $?
# above are just assorted invocations that have been useful from time to
# time, nothing magic. do what's needed.
#
# $lp = pretest, /home/ftp/texlive/tlpretest on tug.org.
# $ln = tlnet, /home/ftp/texlive/tlnet on tug.org.
|