summaryrefslogtreecommitdiff
path: root/systems/texlive
diff options
context:
space:
mode:
Diffstat (limited to 'systems/texlive')
-rw-r--r--systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm31
-rw-r--r--systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm23
-rw-r--r--systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl6
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb73
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.md52
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha5122
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc14
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.xzbin2132584 -> 2132116 bytes
8 files changed, 81 insertions, 70 deletions
diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm
index 49125acb8b..93e20de18f 100644
--- a/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm
+++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm
@@ -1,4 +1,4 @@
-# $Id: TLPDB.pm 52167 2019-09-24 16:02:28Z karl $
+# $Id: TLPDB.pm 52706 2019-11-09 17:42:02Z karl $
# TeXLive::TLPDB.pm - tlpdb plain text database files.
# Copyright 2007-2019 Norbert Preining
# This file is licensed under the GNU General Public License version 2
@@ -6,7 +6,7 @@
package TeXLive::TLPDB;
-my $svnrev = '$Revision: 52167 $';
+my $svnrev = '$Revision: 52706 $';
my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown";
sub module_revision { return $_modulerevision; }
@@ -1825,17 +1825,24 @@ sub not_virtual_install_package {
}
}
if (!$container) {
- tlwarn("TLPDB: cannot find package $pkg.tar.$CompressorExtRegexp in $root/$Archive\n");
+ tlwarn("TLPDB: cannot find package $pkg.tar.$CompressorExtRegexp"
+ . " in $root/$Archive\n");
return(0);
}
} elsif (&media eq 'NET') {
- $container = "$root/$Archive/$pkg.tar." . $Compressors{$DefaultCompressorFormat}{'extension'};
- }
- debug("TLPDB::not_virtual_install_package: trying to install $container\n");
- $self->_install_data ($container, $reloc, \@installfiles, $totlpdb, $tlpobj->containersize, $tlpobj->containerchecksum)
+ $container = "$root/$Archive/$pkg.tar."
+ . $Compressors{$DefaultCompressorFormat}{'extension'};
+ }
+ my $container_str = ref $container eq "ARRAY"
+ ? "[" . join (" ", @$container) . "]" : $container;
+ ddebug("TLPDB::not_virtual_install_package: installing container: ",
+ $container_str, "\n");
+ $self->_install_data($container, $reloc, \@installfiles, $totlpdb,
+ $tlpobj->containersize, $tlpobj->containerchecksum)
|| return(0);
- # if we are installing from local_compressed or NET we have to fetch the respective
- # source and doc packages $pkg.source and $pkg.doc and install them, too
+ # if we are installing from local_compressed or NET we have to fetch
+ # respective source and doc packages $pkg.source and $pkg.doc and
+ # install them, too
if (($media eq 'NET') || ($media eq 'local_compressed')) {
# we install split containers under the following conditions:
# - the container were split generated
@@ -1851,13 +1858,15 @@ sub not_virtual_install_package {
if ($container_src_split && $opt_src && $tlpobj->srcfiles) {
my $srccontainer = $container;
$srccontainer =~ s/\.tar\.$CompressorExtRegexp$/.source.tar.$1/;
- $self->_install_data ($srccontainer, $reloc, \@installfiles, $totlpdb, $tlpobj->srccontainersize, $tlpobj->srccontainerchecksum)
+ $self->_install_data($srccontainer, $reloc, \@installfiles, $totlpdb,
+ $tlpobj->srccontainersize, $tlpobj->srccontainerchecksum)
|| return(0);
}
if ($container_doc_split && $real_opt_doc && $tlpobj->docfiles) {
my $doccontainer = $container;
$doccontainer =~ s/\.tar\.$CompressorExtRegexp$/.doc.tar.$1/;
- $self->_install_data ($doccontainer, $reloc, \@installfiles, $totlpdb, $tlpobj->doccontainersize, $tlpobj->doccontainerchecksum)
+ $self->_install_data($doccontainer, $reloc, \@installfiles,
+ $totlpdb, $tlpobj->doccontainersize, $tlpobj->doccontainerchecksum)
|| return(0);
}
#
diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm
index ee73c6a9e2..fec3565f09 100644
--- a/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm
+++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm
@@ -1,4 +1,4 @@
-# $Id: TLUtils.pm 52674 2019-11-07 19:05:37Z karl $
+# $Id: TLUtils.pm 52706 2019-11-09 17:42:02Z karl $
# TeXLive::TLUtils.pm - the inevitable utilities for TeX Live.
# Copyright 2007-2019 Norbert Preining, Reinhard Kotucha
# This file is licensed under the GNU General Public License version 2
@@ -6,7 +6,7 @@
package TeXLive::TLUtils;
-my $svnrev = '$Revision: 52674 $';
+my $svnrev = '$Revision: 52706 $';
my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown";
sub module_revision { return $_modulerevision; }
@@ -1130,7 +1130,7 @@ that is a fatal error.
=cut
sub copy {
- ddebug("TLUtils::copy(", join (",", @_), "\n");
+ #too verbose ddebug("TLUtils::copy(", join (",", @_), "\n");
my $infile = shift;
my $filemode = 0;
my $dereference = 0;
@@ -1182,12 +1182,13 @@ sub copy {
if ($linktarget !~ m,^/,) {
$infile = Cwd::abs_path(dirname($infile)) . "/$linktarget";
}
+ ddebug("TLUtils::copy: dereferencing symlink $infile -> $linktarget");
}
if (-l $infile) {
my $linktarget = readlink($infile);
my $dest = "$destdir/$filename";
- debug("TLUtils::copy: doing symlink($linktarget,$dest)"
+ ddebug("TLUtils::copy: doing symlink($linktarget,$dest)"
. " [from readlink($infile)]\n");
symlink($linktarget, $dest) || die "symlink($linktarget,$dest) failed: $!";
} else {
@@ -2523,7 +2524,7 @@ END_COMPRESSOR_BAD
$::progs{'compressor'} = $ENV{'TEXLIVE_COMPRESSOR'};
}
- if ($::opt_verbosity >= 1) {
+ if ($::opt_verbosity >= 2) {
require Data::Dumper;
use vars qw($Data::Dumper::Indent $Data::Dumper::Sortkeys
$Data::Dumper::Purity); # -w pain
@@ -2604,16 +2605,16 @@ sub setup_unix_tl_one {
debug("(unix) trying to set up $p, default $def, arg $arg\n");
if (-r $def) {
if (-x $def) {
- ddebug("default $def has executable permissions\n");
+ ddebug(" Default $def has executable permissions\n");
# we have to check for actual "executability" since a "noexec"
# mount option may interfere, which is not taken into account by -x.
my $ret = system("'$def' $arg >/dev/null 2>&1" ); # we are on Unix
if ($ret == 0) {
$::progs{$p} = $def;
- debug("Using shipped $def for $p (tested).\n");
+ debug(" Using shipped $def for $p (tested).\n");
return(1);
} else {
- ddebug("Shipped $def has -x but cannot be executed, "
+ ddebug(" Shipped $def has -x but cannot be executed, "
. "trying tmp copy.\n");
}
}
@@ -2634,19 +2635,19 @@ sub setup_unix_tl_one {
if (! -x $tmpprog) {
# hmm, something is going really bad, not even the copy is
# executable. Fall back to normal path element
- ddebug("Copied $p $tmpprog does not have -x bit, strange!\n");
+ ddebug(" Copied $p $tmpprog does not have -x bit, strange!\n");
return(0);
} else {
# check again for executability
my $ret = system("$tmpprog $arg > /dev/null 2>&1");
if ($ret == 0) {
# ok, the copy works
- debug("Using copied $tmpprog for $p (tested).\n");
+ debug(" Using copied $tmpprog for $p (tested).\n");
$::progs{$p} = $tmpprog;
return(1);
} else {
# even the copied prog is not executable, strange
- ddebug("Copied $p $tmpprog has x bit but not executable?!\n");
+ ddebug(" Copied $p $tmpprog has x bit but not executable?!\n");
return(0);
}
}
diff --git a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
index df3036f4ff..bbaa1aebfa 100644
--- a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
+++ b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
@@ -37,7 +37,6 @@ $mirrors = {
'http://ctan.yazd.ac.ir/' => 1
},
'Japan' => {
- 'ftp://ftp.kddilabs.jp/CTAN/' => 1,
'ftp://ftp.u-aizu.ac.jp/pub/tex/CTAN/' => 1,
'http://ftp.jaist.ac.jp/pub/CTAN/' => 1,
'http://ftp.yz.yamagata-u.ac.jp/pub/CTAN/' => 1
@@ -55,6 +54,7 @@ $mirrors = {
'https://download.nus.edu.sg/mirror/ctan/' => 1
},
'Taiwan' => {
+ 'ftp://ftp.ccu.edu.tw/pub/tex/' => 1,
'http://ftp.yzu.edu.tw/CTAN/' => 1
}
},
@@ -80,7 +80,6 @@ $mirrors = {
'http://ctan.crest.fr/tex-archive/' => 1,
'http://ctan.mines-albi.fr/' => 1,
'http://ctan.tetaneutral.net/' => 1,
- 'http://distrib-coffee.ipsl.jussieu.fr/pub/mirrors/ctan/' => 1,
'http://mirror.ibcp.fr/pub/CTAN/' => 1,
'http://mirrors.ircam.fr/pub/CTAN/' => 1,
'http://mirrors.standaloneinstaller.com/ctan/' => 1,
@@ -124,7 +123,8 @@ $mirrors = {
},
'Portugal' => {
'ftp://ftp.di.uminho.pt/pub/ctan/' => 1,
- 'http://mirrors.up.pt/pub/CTAN/' => 1
+ 'http://mirrors.up.pt/pub/CTAN/' => 1,
+ 'https://ftp.eq.uc.pt/software/TeX/' => 1
},
'Romania' => {
'http://mirrors.nxthost.com/ctan/' => 1
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb b/systems/texlive/tlnet/tlpkg/texlive.tlpdb
index ccdac0a14a..d9b1d14402 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb
@@ -26,11 +26,11 @@ depend container_split_src_files/1
depend frozen/0
depend minrelease/2016
depend release/2019
-depend revision/52701
+depend revision/52711
name 00texlive.image
category TLCore
-revision 52701
+revision 52708
shortdesc TeX Live files only in the source repository
longdesc The files here are not copied by the installer and containers
longdesc are not built for them; they exist only in the source
@@ -40,7 +40,7 @@ longdesc IgnorePatterns in the check_files routine in tlmgr.pl augment
longdesc this list. Those are not included in the source/ tarball. For
longdesc information on the 00texlive prefix see
longdesc 00texlive.installation(.tlpsrc)
-runfiles size=4967
+runfiles size=4968
.mkisofsrc
autorun.inf
texmf-dist/README
@@ -95,6 +95,7 @@ runfiles size=4967
tlpkg/bin/tlpkginfo
tlpkg/bin/tlprm
tlpkg/bin/tlpsizes
+ tlpkg/bin/tltestnet
tlpkg/dev/README
tlpkg/dev/check-tk-used-font.pl
tlpkg/dev/dev.multi-source-support-v2.patch
@@ -4056,7 +4057,7 @@ depend opt_w32_multi_user:1
name 00texlive.installer
category TLCore
-revision 52690
+revision 52703
shortdesc TeX Live standalone installer package
longdesc This package defines the files to go into the installer
longdesc archives (install-tl-unx.tar.gz, install-tl.zip) built by the
@@ -52525,7 +52526,7 @@ catalogue-version 9.1
name circuitikz
category Package
-revision 52354
+revision 52709
shortdesc Draw electrical networks with TikZ
relocated 1
longdesc The package provides a set of macros for naturally typesetting
@@ -52534,11 +52535,11 @@ longdesc networks. It is designed as a tool that is easy to use, with a
longdesc lean syntax, native to LaTeX, and directly supporting PDF
longdesc output format. It has therefore been based on the very
longdesc impressive PGF/TikZ package.
-containersize 102732
-containerchecksum 00474a4568fc629f57a76b963bc0445e582fecc3c6d7a714120998adb0f9bab94cf87b834938eb91575e22a5ad61896bc252f995cad439cda5f0b471bf2f9a49
-doccontainersize 835720
-doccontainerchecksum 4e628fc482a6488ee6e4c78dab70645d42e19c2d34456ba4f12a2730487df5bbc09f582f9a72092edbd4bea019c80d9ffa65fd3ce0b70df955a4602ed73e115c
-docfiles size=266
+containersize 105392
+containerchecksum dd264d1b89a0ad00fbaf017a1dd95a51862478bfbba5822fc4b9fd6e7d6203ecf8d5e7e519372388c147becebb6fbf78a77ec405137bb33037a91526e04ca0fc
+doccontainersize 866192
+doccontainerchecksum 66ee432a6ee7e19d15251827866e0fb6d804e783bd167241465d45e703d2533a71ce3c27f27807a71e9101502827c4220b99c4600202c44e7f8268187289275f
+docfiles size=275
RELOC/doc/context/third/circuitikz/circuitikz-context.pdf
RELOC/doc/context/third/circuitikz/circuitikz-context.tex
RELOC/doc/generic/circuitikz/CHANGELOG.md
@@ -52548,7 +52549,7 @@ docfiles size=266
RELOC/doc/latex/circuitikz/circuitikzmanual.tex
RELOC/doc/latex/circuitikz/compatibility.tex
RELOC/doc/latex/circuitikz/ctikzmanutils.sty
-runfiles size=1018
+runfiles size=1024
RELOC/tex/context/third/circuitikz/t-circuitikz-0.8.3.tex
RELOC/tex/context/third/circuitikz/t-circuitikz-0.9.3.tex
RELOC/tex/context/third/circuitikz/t-circuitikz.tex
@@ -52578,10 +52579,10 @@ catalogue-contact-bugs https://github.com/circuitikz/circuitikz/issues
catalogue-contact-repository https://github.com/circuitikz/circuitikz
catalogue-contact-support https://github.com/circuitikz/circuitikz/issues
catalogue-ctan /graphics/pgf/contrib/circuitikz
-catalogue-date 2019-10-12 17:08:30 +0200
+catalogue-date 2019-11-09 20:54:49 +0100
catalogue-license lpplgpl
catalogue-topics graphics diagram-circ pgf-tikz
-catalogue-version 0.9.5
+catalogue-version 0.9.6
name cite
category Package
@@ -106520,7 +106521,7 @@ catalogue-version 1.8
name fancyvrb
category Package
-revision 52501
+revision 52710
shortdesc Sophisticated verbatim text
relocated 1
longdesc Flexible handling of verbatim text including: verbatim commands
@@ -106529,10 +106530,10 @@ longdesc parameters; ability to define new customized verbatim
longdesc environments; save and restore verbatim text and environments;
longdesc write and read files in verbatim mode; build "example"
longdesc environments (showing both result and verbatim source).
-containersize 11980
-containerchecksum 9ec258df8f3cc73ad1705ef4d841ef93163577ef98ce1d2bd29804fde3d0304e588698a8974e64ff2a2bcab014a605a81150c97b3a7adfd0a1f7f3e97adf91fc
-doccontainersize 150304
-doccontainerchecksum 2d3dbe5a9cd9fc013a268feffb7798abf282070ee32720db64890246938e51fa7caeaa56e54c0a35877bc4efd26d228b7158bf725af35988d58c55e4d96ec571
+containersize 11612
+containerchecksum c7f8e5af98403361f5bc5e708b4d29fafa13b76af896f8751f7cca4d8a61015f2b65587245f6c2aa7cb4722d507cb75a61db2a5649f2788433f59636a45a8de0
+doccontainersize 150300
+doccontainerchecksum d9420818e5b03471cabd4e725681dd7e72621e8bfdb9d085de9f1883439a915321874f06087bc7dce9fb2597fcc05bc0f175c5adb0ad650615d00fe8e61b8525
docfiles size=47
RELOC/doc/latex/fancyvrb/Changes
RELOC/doc/latex/fancyvrb/README details="Readme"
@@ -106544,10 +106545,10 @@ runfiles size=17
RELOC/tex/latex/fancyvrb/hbaw.sty
RELOC/tex/latex/fancyvrb/hcolor.sty
catalogue-ctan /macros/latex/contrib/fancyvrb
-catalogue-date 2019-10-22 22:52:56 +0200
+catalogue-date 2019-11-09 19:23:40 +0100
catalogue-license lppl1.3
catalogue-topics verbatim
-catalogue-version 3.3
+catalogue-version 3.4
name fandol
category Package
@@ -132041,7 +132042,7 @@ catalogue-topics font font-mf font-symbol
name iftex
category Package
-revision 52644
+revision 52711
shortdesc Am I running under pdfTeX, XeTeX or LuaTeX?
relocated 1
longdesc The package, which works both for Plain TeX and for LaTeX,
@@ -132050,11 +132051,11 @@ longdesc testing which engine is being used for typesetting. The package
longdesc also provides the \RequirePDFTeX, \RequireXeTeX, and
longdesc \RequireLuaTeX commands which throw an error if pdfTeX, XeTeX
longdesc or LuaTeX (respectively) is not the engine in use.
-containersize 3092
-containerchecksum 373ea339237b2d9daaea1fd5b08895c592c4286dd63a8847156117af82a6b761bb436b57fa6c4f333f42fbe50b1345dea7b2e46d2212a09032c81aa217256909
-doccontainersize 205172
-doccontainerchecksum df7a13c2e0564f2f0c8b48f91f64f8b106a568d23d397b0317bfb1bbb4f6229fb12de14e73bddc4989d43bc07355b12f8dc60a883c19c45451592e6707d19f4e
-docfiles size=53
+containersize 3112
+containerchecksum a40cf1fbcef9af4cae18c045c051fd63fa6e1403ae83b12d635317bd60e7f677fa0b13252ed272a8855351bcf139b2bdac076a3c74b5bd93059a4478bb2d8b48
+doccontainersize 237572
+doccontainerchecksum f499cb46462f43e89d76a84f8c32983bd332a502764c8e0a5e88ecc696c35470f663719e443a36b0740cca40a5b8d9e03aeb8f1a93bc375900eae9f2a05607b6
+docfiles size=61
RELOC/doc/generic/iftex/README.md details="Readme"
RELOC/doc/generic/iftex/iftex.pdf details="Package documentation"
RELOC/doc/generic/iftex/iftex.tex
@@ -132069,10 +132070,10 @@ catalogue-also ifetex ifluatex ifpdf ifvtex ifxetex
catalogue-contact-bugs https://github.com/latex3/iftex/issues
catalogue-contact-repository https://github.com/latex3/iftex
catalogue-ctan /macros/latex/contrib/iftex
-catalogue-date 2019-11-05 21:19:54 +0100
+catalogue-date 2019-11-09 19:19:36 +0100
catalogue-license lppl1.3c
catalogue-topics env-query
-catalogue-version 1.0b
+catalogue-version 1.0c
name ifthenx
category Package
@@ -282398,15 +282399,15 @@ docfiles size=572
name texlive-docindex
category TLCore
-revision 52690
+revision 52703
shortdesc top-level TeX Live doc.html, etc.
longdesc These files are regenerated as needed, which is often, so we
longdesc make them a separate package. See the tl-update-auto script
longdesc for the process.
containersize 109876
-containerchecksum c5a7da3315425248e61bfec2feb2108cc8ee7e1b0b57c40d5f02ec5a15f5b6fe3ff91f51a533d75f66d4c8fb9bc4dffdb98bfd7b3941325605890baaa419065a
-doccontainersize 155408
-doccontainerchecksum c2e19e2ff703db81980b7ec2e9cfb14ad8d8eac8a066009e4f3fa394a72f8eda384c444ef983d97c5165ad6a2cf332cb06277e3d453ab557a5ae3aa022988173
+containerchecksum a0e6b19a661b97baf1f49ebc58376e4d7c95ffe5a8eff9708b55d02758655300aa481a0744aac4af3b082061bef0613074ac359f3c3a8ea698bd78318e9440d5
+doccontainersize 155320
+doccontainerchecksum f3461897e7d1ba152c2bdd1beac7aecb65bdebd6bc38d4c2f51f57142bd58deeb90e88e3848d076722efebef29858cfd28c6cd8afacbdfe01a8fed32df1fde21
docfiles size=304
doc.html
runfiles size=270
@@ -282623,17 +282624,17 @@ docfiles size=503
name texlive-scripts
category TLCore
-revision 52690
+revision 52703
shortdesc TeX Live infrastructure programs
longdesc Includes install-tl, tl-portable, rungs, etc.; not needed for
longdesc tlmgr to run but still ours. Not included in tlcritical.
depend texlive.infra
depend texlive-scripts.ARCH
postaction shortcut type=menu name="TeX Live command-line" cmd=TEXDIR/tlpkg/installer/tl-cmd.bat
-containersize 85436
-containerchecksum b8f607709a24b774b236076d3f610018ea998fbbd12d80d06394cfa91c54c5affcec519f88fad7afe5a968baaef0e2f3d6e2f9350131ceff44421437e1ab9ad7
+containersize 85424
+containerchecksum 5f779869c26f7c4503852aed15f4d83a4fab6bef488b34c815c90993cf526b0f6c421d25bd959d09e31823b7c79a3dab7df696000c3fb350507ffb06e3c169e9
doccontainersize 51244
-doccontainerchecksum d741cc9afec815c2470dae29dd9f0f664cbc8b166053f5062ac95a8fb5828ce2420178363acefa9cec5669b425cd6808c3c7b57870e85adcde0078da7d27ccf1
+doccontainerchecksum e716b43fcf495145113d8678bd89e8dae9072df2e9f5e1627f25ff39cb1b9e4517c19c352ff2237f8db078bf96b871b5423cc39b4c5a7c9de93db563b3addfff
docfiles size=20
texmf-dist/doc/man/man1/install-tl.1
texmf-dist/doc/man/man1/install-tl.man1.pdf
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
index 32b443dfc7..05e2b7ed5f 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
@@ -1 +1 @@
-60e6c5d61ea5c707d286db9ae93410f6 texlive.tlpdb
+51b96dabd922c8433f67ce5dc14539e4 texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
index f1dd287b2a..9b100e3cb3 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
@@ -1 +1 @@
-3ed53651649164a85a748c16c9fbc6f5d398470726fced1083111344fa13b9655e0ce8d0c0d334b66dd35173201557dbf189075ad82406bec14467b996795816 texlive.tlpdb
+da7c1600a08562e2d38b420678886552286aaecd7dc519056eda37c9f7fcbeeca2f6f19dda5629d2b97614224ae62b0b5cee4b8fd40f26d872fdca72171e3f85 texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
index 20956417cf..3a5cbadf54 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
@@ -1,10 +1,10 @@
-----BEGIN PGP SIGNATURE-----
-iQEcBAEBCgAGBQJdxg55AAoJEEzhh34ZQ4xwSSgH/0+lA+L4trTj03PYORnchWq5
-w5ED/QxYH6pl+DGQmU+HjtSu8w55u79wTGqjDYu0knUe0J8o+kMm4YvMx0mDIj35
-uuihUViWm2yo81vGjQS8ffgk9oLlU7PqdAbSDyFzU2bn4GAKVIYhWg5nYWFoZnP6
-Xwr4i5WX54iG1Px3KiBjvQ8pOEYlevqEIZkl/+ORQjKal0QoiDdmbpNZdoo2KhPW
-zdf9O2Wlr6i/09CnWgNvodxwWkpuWIYC8+Rpfd+YPQjNzKUGo8smdGjE17XbIjRL
-H8Hfn+bOYz3bEB6bGNgutg8P3lJKgOJn5huPj4Alxn2iyhQmzKKewJyXHCtWZV8=
-=oNwU
+iQEcBAEBCgAGBQJdx1+3AAoJEEzhh34ZQ4xwbpoH/A/M3ddAN71nOz/jKwlr3CTo
+tkSMJNqVWtFOFyMUuwFJGpgpQJoJa77v27JVyvfJFBai94SphKl092pe7nLFWZmA
+LQuR1Thlh60HOG00mLTIwZgkVb3RXNtxroQ99d/KYjEk+Pa35bzwag5v61Gs+udn
+E3pJP3fdFaVOYnJshR/O6CuKlNjBHvV9Ulqa+y4KbV8Hzq1G4mF52sG2IpHs6o3D
+pp7BZ0zj9EnD8R0UgIIjd0t4qSlSXlUVybpDY7ntMwxnmawYBOl8QZWaQ3JU+vtK
+a39fP1j++rUVUrr9P1y5px3PlFy6qijJ2uTYScmkuiITTlE5mYy8gSYjTzOxaf0=
+=nZ0g
-----END PGP SIGNATURE-----
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
index 371c6fc352..01ab5c94be 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
Binary files differ