diff options
Diffstat (limited to 'Master/tlpkg/bin/tl-update-bindir')
-rwxr-xr-x | Master/tlpkg/bin/tl-update-bindir | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/Master/tlpkg/bin/tl-update-bindir b/Master/tlpkg/bin/tl-update-bindir index 57ae42e1943..7cad83ef128 100755 --- a/Master/tlpkg/bin/tl-update-bindir +++ b/Master/tlpkg/bin/tl-update-bindir @@ -101,17 +101,17 @@ for tlplat in $tlplats; do aarch64-linux) default_bin_loc=$download_loc #https://faubox.rrze.uni-erlangen.de/open/MjdwNXE5NW5UcTU4RzVIWlRVUVVI/branch2018/texlive_bin_aarch64-linux.tar.xz - $grab http://51.158.66.174:8080/texlive_bin_aarch64-linux.tar.xz;; + #http://51.158.66.174:8080/texlive_bin_aarch64-linux.tar.xz + remurl=https://aekahwai.spdns.org/online/texlive_bin_aarch64-linux.tar.xz + $grab $remurl;; alpha-linux) default_bin_loc=/home/preining/alpha-linux.tar.gz;; amd64-freebsd) - download_loc=$tmpdir/tl.$tlplat.tar.xz default_bin_loc=$download_loc - grab="$download -O $download_loc" - $grab https://www.preining.info/amd64-freebsd11.tar.gz;; - #$grab http://anthesphoria.net/FreeBSD/TeXLive-Devel/amd64-freebsd7.tar.xz;; - #remurl=http://dl.contextgarden.net/build/texlive/$tlplat.tar.xz - #$grab $remurl;; + #https://www.preining.info/amd64-freebsd11.tar.gz + #http://anthesphoria.net/FreeBSD/TeXLive-Devel/amd64-freebsd7.tar.xz + remurl=http://dl.contextgarden.net/build/texlive/$tlplat.tar.xz + $grab $remurl;; amd64-kfreebsd) download_loc=$tmpdir/tl.$tlplat.tar.xz default_bin_loc=$download_loc @@ -149,7 +149,8 @@ for tlplat in $tlplats; do i386-linux) default_bin_loc=$download_loc #remurl=http://dl.contextgarden.net/build/texlive/$tlplat.tar.xz - remurl=`curl -s https://api.github.com/repos/TeX-Live/texlive-source/releases/latest | grep browser_download_url | grep texlive-bin-i386-linux.tar.gz | cut -d : -f 2,3 | tr -d \"` + remurl=`curl -s https://api.github.com/repos/TeX-Live/texlive-source/releases/svn53987 | grep browser_download_url | grep texlive-bin-i386-linux.tar.gz | cut -d : -f 2,3 | tr -d \"` + remurl=https://github.com/TeX-Live/texlive-source/releases/download/svn53987/texlive-bin-i386-linux.tar.gz $grab $remurl;; i386-linuxmusl) default_bin_loc=$download_loc @@ -201,18 +202,22 @@ for tlplat in $tlplats; do # "Target:trunk" should already be there, # brief msg from that commit in "title", # and anything relevant for "description", or leave it blank; - # then "Publish release". - # After ~30min max, should have new release at: + # then "Publish release" (maybe as pre-release). + # After ~30min max, should have new release tarballs at: # https://github.com/TeX-Live/texlive-source/releases + # If failure, check: + # https://www.travis-ci.org/TeX-Live/texlive-source # # If try before ready, no harm, just get error message "missing url". # (If you have/want a git checkout of texlive-source, see tlbuild doc.) # - remurl=`curl -s https://api.github.com/repos/TeX-Live/texlive-source/releases/latest | grep browser_download_url | grep texlive-bin-x86_64-linux.tar.gz | cut -d : -f 2,3 | tr -d \"` + remurl=`curl -s https://api.github.com/repos/TeX-Live/texlive-source/releases/tag/svn53987 | grep browser_download_url | grep texlive-bin-x86_64-linux.tar.gz | cut -d : -f 2,3 | tr -d \"` + remurl=https://github.com/TeX-Live/texlive-source/releases/download/svn53987/texlive-bin-x86_64-linux.tar.gz $grab $remurl;; x86_64-linuxmusl) default_bin_loc=$download_loc remurl=`curl -s https://api.github.com/repos/TeX-Live/texlive-source/releases/latest | grep browser_download_url | grep texlive-bin-x86_64-musl.tar.gz | cut -d : -f 2,3 | tr -d \"` + remurl=http://dl.contextgarden.net/build/texlive/$tlplat.tar.xz $grab $remurl;; x86_64-solaris) default_bin_loc=$download_loc |