summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2020-03-11 21:58:55 +0000
committerKarl Berry <karl@freefriends.org>2020-03-11 21:58:55 +0000
commit931ada5c58411ec0d56bfe9bb4b9e91700cde18f (patch)
treeb90c3edad35ced5cbe540d6ad420b463fccc3f20 /Master
parent9abbd276713e5d9e8c7dd5fa6765a241ecab27d4 (diff)
doc,sync
git-svn-id: svn://tug.org/texlive/trunk@54242 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r--Master/texmf-dist/scripts/texlive/NEWS3
-rwxr-xr-xMaster/tlpkg/bin/tl-update-tlpdb4
2 files changed, 5 insertions, 2 deletions
diff --git a/Master/texmf-dist/scripts/texlive/NEWS b/Master/texmf-dist/scripts/texlive/NEWS
index 377308f73e2..e67a8b47198 100644
--- a/Master/texmf-dist/scripts/texlive/NEWS
+++ b/Master/texmf-dist/scripts/texlive/NEWS
@@ -3,6 +3,9 @@ Karl Berry, 2010.)
<li>more specific verification error messages
+<p><b>tlmgr 54118 (released 7mar20):</b>
+<li>re-initialize LWP connection after 5 errors.
+
<p><b>tlmgr 53428 (released 17jan20):</b>
<li>automatic retry of packages that fail to download.
<li>rearrange packaging so little-used scripts are not part of
diff --git a/Master/tlpkg/bin/tl-update-tlpdb b/Master/tlpkg/bin/tl-update-tlpdb
index 0dd845d416b..fd6d110ca7d 100755
--- a/Master/tlpkg/bin/tl-update-tlpdb
+++ b/Master/tlpkg/bin/tl-update-tlpdb
@@ -291,8 +291,8 @@ sub compare_and_fix_tlpdbs {
# if requested, also may need to fix up packages with catalogue changs.
if ($opt_catalogue_compare) {
my %cat_fixup = tlpdb_catalogue_compare($newtlpdb, $opt_catalogue_compare);
- info("$prg: packages with Catalogue changes: ",
- join(" ", keys %cat_fixup), "\n") if (keys %cat_fixup);
+ info("$prg: ", 0 + keys %cat_fixup, " packages with Catalogue changes: ",
+ join(" ", sort keys %cat_fixup), "\n") if (keys %cat_fixup);
# hash slice to merge %cat_fixup into %packages_needing_fixup;
# all the values are 1, so that doesn't matter.
@packages_needing_fixup{ keys %cat_fixup } = values %cat_fixup;