diff options
Diffstat (limited to 'Master/tlpkg')
-rwxr-xr-x | Master/tlpkg/bin/tl-try-install | 21 | ||||
-rw-r--r-- | Master/tlpkg/dev/profiles/TLinfra+none.pro | 17 |
2 files changed, 29 insertions, 9 deletions
diff --git a/Master/tlpkg/bin/tl-try-install b/Master/tlpkg/bin/tl-try-install index bc940d71efa..0b59df14f4c 100755 --- a/Master/tlpkg/bin/tl-try-install +++ b/Master/tlpkg/bin/tl-try-install @@ -1,4 +1,4 @@ -#!/bin/sh -x +#!/bin/sh # $Id$ # Try a TL installation with various profiles into /tmp/ki. Public domain. @@ -11,23 +11,26 @@ rm -rf $instdir* && echo "removed $instdir*." #TEXLIVE_INSTALL_ENV_NOCHECK=1; export TEXLIVE_INSTALL_ENV_NOCHECK #TEXLIVE_INSTALL_NO_WELCOME=1; export TEXLIVE_INSTALL_NO_WELCOME -mydir=`cd \`dirname "$0"\` && pwd` # Master/tlpkg/bin +real0=`realpath $0` +mydir=`cd \`dirname "$real0"\` && pwd` # Master/tlpkg/bin +echo "mydir=$mydir" Master=`cd $mydir/../.. && pwd` # 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 -#Master=$tm #`cd $mydir/../.. && pwd` -# -thisrel=/usr/local/texlive/`date +%Y` # not necessarily, but whatever -prevrel=/usr/local/texlive/`expr "$(date +%Y)" - 1` - -pro=--profile=${1-$Master/tlpkg/dev/profiles/TLinfra.pro} #infra min ... full -exec time $Master/install-tl $pro +set -x +pro=--profile=${1-$Master/tlpkg/dev/profiles/TLinfra+none.pro} #infra min ... full +#exec time $Master/install-tl $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 $? diff --git a/Master/tlpkg/dev/profiles/TLinfra+none.pro b/Master/tlpkg/dev/profiles/TLinfra+none.pro new file mode 100644 index 00000000000..ac98ba11039 --- /dev/null +++ b/Master/tlpkg/dev/profiles/TLinfra+none.pro @@ -0,0 +1,17 @@ +# $Id$ +# infrastructure only, with no binary sets (assuming current x86_64-linux). +# to test --custom-bin (set to bin/win32 directory to exercise still +# more cases), and as a pathological case in itself. +selected_scheme scheme-infraonly +TEXDIR /tmp/ki +TEXMFHOME /tmp/ki/user/home +TEXMFLOCAL /tmp/ki/texmf-local +TEXMFSYSCONFIG /tmp/ki/sys/config +TEXMFSYSVAR /tmp/ki/sys/var +TEXMFCONFIG /tmp/ki/user/config +TEXMFVAR /tmp/ki/user/var +option_doc 0 +option_fmt 0 +option_src 0 +option_adjustrepo 0 +binary_x86_64-linux 0 |