summaryrefslogtreecommitdiff
path: root/Master/tlpkg
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2019-04-08 17:04:37 +0000
committerKarl Berry <karl@freefriends.org>2019-04-08 17:04:37 +0000
commit343b184d6b8e0c28959e410915ba6cb746c30460 (patch)
tree7b261537989b3ac8e70f6bcfecda19ff97fb8a69 /Master/tlpkg
parent0626386cae41509558a794c6b226ea820306105f (diff)
2019 source archives and go to CTAN for final build
git-svn-id: svn://tug.org/texlive/trunk@50864 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rwxr-xr-xMaster/tlpkg/bin/tl-update-tlnet2
-rwxr-xr-xMaster/tlpkg/bin/tlpkg-by-size5
2 files changed, 4 insertions, 3 deletions
diff --git a/Master/tlpkg/bin/tl-update-tlnet b/Master/tlpkg/bin/tl-update-tlnet
index f582fd14973..9fe3afddd08 100755
--- a/Master/tlpkg/bin/tl-update-tlnet
+++ b/Master/tlpkg/bin/tl-update-tlnet
@@ -133,7 +133,7 @@ tlpdbopt_install_srcfiles 1
tlpdbopt_create_formats 1
instopt_letter 0
instopt_adjustpath 0
-instopt_adjustrepo 0
+instopt_adjustrepo 1
" >texlive.profile
# silence envvar warnings and the welcome message.
diff --git a/Master/tlpkg/bin/tlpkg-by-size b/Master/tlpkg/bin/tlpkg-by-size
index cd252bbd672..3712c747323 100755
--- a/Master/tlpkg/bin/tlpkg-by-size
+++ b/Master/tlpkg/bin/tlpkg-by-size
@@ -7,7 +7,8 @@ test $# -eq 0 && set - /home/ftp/texlive/tlnet/archive
cd "$1" || exit 1
for pkgtar in `ls *.tar.xz | egrep -v '\..*\.tar\.xz$'`; do
pkg=`echo $pkgtar | sed 's/\.tar\.xz$//'`
- size=`cat $pkg.*tar.xz | wc -c`
+ #size=`cat $pkg.*tar.xz | wc -c` # includes binaries
+ #size=`cat $pkg.tar.xz $pkg.doc.tar.xz $pkg.source.tar.xz 2>/dev/null | wc -c`
size=`expr $size / 1024`
printf "%6d %s\n" $size "$pkg"
-done | sort -nr
+done | sort -nr | tee /tmp/tlpsz