summaryrefslogtreecommitdiff
path: root/systems/texlive/tlnet/tlpkg
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-11-28 03:01:37 +0000
committerNorbert Preining <norbert@preining.info>2019-11-28 03:01:37 +0000
commit747dfc2fd42b7dbdc60bb83a91392d4960b1f48e (patch)
treefca18e41029be2cf7744f813ffc1844e2dc7594a /systems/texlive/tlnet/tlpkg
parent5142daa13e19b32afa064863e039da3afaf06e83 (diff)
CTAN sync 201911280301
Diffstat (limited to 'systems/texlive/tlnet/tlpkg')
-rw-r--r--systems/texlive/tlnet/tlpkg/TeXLive/TLPOBJ.pm48
-rw-r--r--systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm8
-rw-r--r--systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl4
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb110
-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.xzbin2142172 -> 2143556 bytes
8 files changed, 110 insertions, 78 deletions
diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLPOBJ.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLPOBJ.pm
index 54f868218c..b1be641584 100644
--- a/systems/texlive/tlnet/tlpkg/TeXLive/TLPOBJ.pm
+++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLPOBJ.pm
@@ -1,4 +1,4 @@
-# $Id: TLPOBJ.pm 50211 2019-03-03 21:52:59Z preining $
+# $Id: TLPOBJ.pm 52931 2019-11-26 23:04:18Z karl $
# TeXLive::TLPOBJ.pm - module for using tlpobj files
# Copyright 2007-2019 Norbert Preining
# This file is licensed under the GNU General Public License version 2
@@ -6,7 +6,7 @@
package TeXLive::TLPOBJ;
-my $svnrev = '$Revision: 50211 $';
+my $svnrev = '$Revision: 52931 $';
my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown";
sub module_revision { return $_modulerevision; }
@@ -559,7 +559,12 @@ sub common_texmf_tree {
sub make_container {
- my ($self,$type,$instroot,$destdir,$containername,$relative) = @_;
+ my ($self, $type, $instroot, %other) = @_;
+ my $destdir = ($other{'destdir'} || undef);
+ my $containername = ($other{'containername'} || undef);
+ my $relative = ($other{'relative'} || undef);
+ my $user = ($other{'user'} || undef);
+ my $copy_instead_of_link = ($other{'copy_instead_of_link'} || undef);
if (!($type eq 'tar' ||
TeXLive::TLUtils::member($type, @{$::progs{'working_compressors'}}))) {
tlwarn "$0: TLPOBJ supports @{$::progs{'working_compressors'}} and tar containers, not $type\n";
@@ -627,7 +632,11 @@ sub make_container {
$selfcopy->writeout(\*TMP);
close(TMP);
push(@files, "$tlpobjdir/$self->{'name'}.tlpobj");
- $tarname = "$containername.tar";
+ # Switch to versioned containers
+ # $tarname = "$containername.tar";
+ $tarname = "$containername.r" . $self->revision . ".tar";
+ my $unversionedtar;
+ $unversionedtar = "$containername.tar" if (! $user);
# start the fun
my $tar = $::progs{'tar'};
@@ -649,7 +658,9 @@ sub make_container {
# overflow standard tar format and result in special things being
# done. We don't want the GNU-specific special things.
#
- my $is_user_container = ( $containername =~ /\.r[0-9]/ );
+ # We use versioned containers throughout, user mode is determined by
+ # argument.
+ my $is_user_container = $user;
my @attrs
= $is_user_container
? ()
@@ -701,7 +712,7 @@ sub make_container {
# A complication, as always. collapse_dirs returns absolute paths.
# We want to change them back to relative so that the backup tar
# has the same structure.
- # in relative mode we have to remove the texmf-dist prefix, too
+ # In relative mode we have to remove the texmf-dist prefix, too.
s,^$instroot/,, foreach @files_to_backup;
if ($relative) {
s,^$RelocTree/,, foreach @files_to_backup;
@@ -712,6 +723,7 @@ sub make_container {
# Run tar. Unlink both here in case the container is also plain tar.
unlink("$destdir/$tarname");
+ unlink("$destdir/$unversionedtar") if (! $user);
unlink("$destdir/$containername");
xsystem(@cmdline);
@@ -743,6 +755,19 @@ sub make_container {
# most strange cases.
unlink("$destdir/$tarname")
if ((-r "$destdir/$tarname") && (-r "$destdir/$containername"));
+ # in case of system containers also create the links to the
+ # versioned containers
+ if (! $user) {
+ my $linkname = "$destdir/$unversionedtar.$compressorextension";
+ unlink($linkname) if (-r $linkname);
+ if ($copy_instead_of_link) {
+ TeXLive::TLUtils::copy("-f", "$destdir/$containername", $linkname)
+ } else {
+ if (!symlink($containername, $linkname)) {
+ tlwarn("$0: Couldn't generate link $linkname -> $containername?\n");
+ }
+ }
+ }
} else {
tlwarn("$0: Couldn't find $destdir/$tarname to run $compressor\n");
return (0, 0, "");
@@ -830,7 +855,7 @@ sub update_from_catalogue {
$foo =~ s/^.Date: //;
# trying to extract the interesting part of a subversion date
# keyword expansion here, e.g.,
- # $Date: 2019-03-03 22:52:59 +0100 (Sun, 03 Mar 2019) $
+ # $Date: 2019-11-27 00:04:18 +0100 (Wed, 27 Nov 2019) $
# ->2007-08-15 19:43:35 +0100
$foo =~ s/ \(.*\)( *\$ *)$//; # maybe nothing after parens
$self->cataloguedata->{'date'} = $foo;
@@ -1663,13 +1688,13 @@ if all files of the package are from the same texmf tree, this tree
is returned, otherwise an undefined value. That is also a check
whether a package is relocatable.
-=item C<make_container($type,$instroot[, $destdir[, $containername[, $relative]]])>
+=item C<make_container($type,$instroot, [ destdir => $destdir, containername => $containername, relative => 0|1, user => 0|1 ])>
creates a container file of the all files in the C<TLPOBJ>
in C<$destdir> (if not defined then C<< TLPOBJ->containerdir >> is used).
The C<$type> variable specifies the type of container to be used.
-Currently only C<zip> or C<xz> are allowed, and are generating
+Currently only C<zip> or C<xz> are allowed, and generate
zip files and tar.xz files, respectively.
The file name of the created container file is C<$containername.extension>,
@@ -1683,7 +1708,7 @@ C<TLPOBJ> file in C<tlpkg/tlpobj/$name.tlpobj>.
The argument C<$instroot> specifies the root of the installation from
which the files should be taken.
-If the argument C<$relative> is present and true (perlish true) AND the
+If the argument C<$relative> is passed and true (perlish true) AND the
packages does not span multiple texmf trees (i.e., all the first path
components of all files are the same) then a relative packages is created,
i.e., the first path component is stripped. In this case the tlpobj file
@@ -1692,6 +1717,9 @@ is placed into the root of the installation.
This is used to distribute packages which can be installed in any arbitrary
texmf tree (of other distributions, too).
+If user is present and true, no extra arguments for container generation are
+passed to tar (to make sure that user tar doesn't break).
+
Return values are the size, the checksum, and the full name of the container.
=item C<recompute_sizes($tltree)>
diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm
index 4059609fc2..40708085e3 100644
--- a/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm
+++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm
@@ -1,4 +1,4 @@
-# $Id: TLUtils.pm 52815 2019-11-16 02:22:41Z preining $
+# $Id: TLUtils.pm 52926 2019-11-26 19:03:09Z 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: 52815 $';
+my $svnrev = '$Revision: 52926 $';
my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown";
sub module_revision { return $_modulerevision; }
@@ -4502,8 +4502,8 @@ our $jsonmode = "";
=item C<True()>
=item C<False()>
-these two function must be used to get proper JSON C<true> and C<false>
-in the output independent of the backend used.
+These two crazy functions must be used to get proper JSON C<true> and
+C<false> in the output independent of the backend used.
=cut
diff --git a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
index 73a097a05a..c4bcbfb47d 100644
--- a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
+++ b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
@@ -15,10 +15,10 @@ $mirrors = {
'Asia' => {
'China' => {
'http://mirror.lzu.edu.cn/CTAN/' => 1,
- 'http://mirrors.cqu.edu.cn/CTAN/' => 1,
'http://mirrors.hit.edu.cn/CTAN/' => 1,
'http://mirrors.sjtug.sjtu.edu.cn/ctan/' => 1,
- 'http://mirrors.tuna.tsinghua.edu.cn/CTAN/' => 1
+ 'http://mirrors.tuna.tsinghua.edu.cn/CTAN/' => 1,
+ 'http://mirrors.ustc.edu.cn/CTAN/' => 1
},
'Hong Kong' => {
'https://mirror-hk.koddos.net/CTAN/' => 1
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb b/systems/texlive/tlnet/tlpkg/texlive.tlpdb
index d8721f4d84..72d7f5d31f 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/52923
+depend revision/52935
name 00texlive.image
category TLCore
-revision 52922
+revision 52931
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=4975
+runfiles size=4977
.mkisofsrc
autorun.inf
texmf-dist/README
@@ -4077,7 +4077,7 @@ depend opt_w32_multi_user:1
name 00texlive.installer
category TLCore
-revision 52919
+revision 52934
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
@@ -23150,7 +23150,7 @@ catalogue-version 1.9
name attachfile2
category Package
-revision 52909
+revision 52929
shortdesc Attach files into PDF
longdesc This package can be used to attach files to a PDF document. It
longdesc is a further development of Scott Pakin's package attachfile
@@ -23158,15 +23158,17 @@ longdesc for pdfTeX. Apart from bug fixes, this package adds support for
longdesc dvips, some new options, and gets and writes meta information
longdesc data about the attached files.
depend attachfile2.ARCH
-containersize 11056
-containerchecksum 72688cd4618c9ca305fc1d8af14bb53169c11dca369d058b326a7f24a7b3fa89edf370ebe380c72a83e06c7bfe0a6375fd7e9b1be93de283963b203b9566e901
-doccontainersize 433608
-doccontainerchecksum 341853c9a2247594e8e54f79f23b0b643746d5f16ff24758612c9513f1ac7bcc7bf5fd3f2739902946deef907a4d25ae873c420987c1009e50899b51a553c0d5
-docfiles size=110
+containersize 11060
+containerchecksum 13fae92b9d6456a5b8fd322855040291ac4bbb30671ec202f466d87a6b461dedfc0ec5b06389bd745ee02e91b736b4c704c4b2095877a2164fa00f8ddc467f60
+doccontainersize 447156
+doccontainerchecksum 6d94dae0c75089882298545ad3759f044101b2202cdec4bf87a052c6eecc2055b5936b9f6a4fdb9451cdb0f389da3621cba19a91f81c478551daf99c549db471
+docfiles size=115
texmf-dist/doc/latex/attachfile2/README.md details="README"
texmf-dist/doc/latex/attachfile2/attachfile2.pdf details="Package documentation"
-srccontainersize 19128
-srccontainerchecksum bc9890e6b8cb83e64098078747899c48750f1e239fcf95011d143bfe5db3ed95562373296ed6844632f9a6a6a74155b0cc93a1c866efb71fc2613873f85f1f2e
+ texmf-dist/doc/man/man1/pdfatfi.1
+ texmf-dist/doc/man/man1/pdfatfi.man1.pdf
+srccontainersize 19544
+srccontainerchecksum 62a12e1d7e54caa097e3a83eb89ac9e363450dff0e19235c886d33c547965407a94626f45a1a049d0adc0af63dda1b91c5cee69dacfa8b1a12fb1a3c9c760ebf
srcfiles size=23
texmf-dist/source/latex/attachfile2/attachfile2.dtx
runfiles size=18
@@ -23179,10 +23181,10 @@ runfiles size=18
catalogue-contact-bugs https://github.com/ho-tex/attachfile2/issues
catalogue-contact-repository https://github.com/ho-tex/attachfile2
catalogue-ctan /macros/latex/contrib/attachfile2
-catalogue-date 2019-11-24 18:22:05 +0100
-catalogue-license lppl1.3
+catalogue-date 2019-11-26 19:25:41 +0100
+catalogue-license lppl1.3c
catalogue-topics pdf-feat
-catalogue-version 2.10
+catalogue-version 2.11
name attachfile2.aarch64-linux
category Package
@@ -40686,7 +40688,7 @@ catalogue-version 0.2
name bxjscls
category Package
-revision 51758
+revision 52927
shortdesc Japanese document class collection for all major engines
relocated 1
longdesc This package provides an extended version of the Japanese
@@ -40695,19 +40697,19 @@ longdesc original version supports only pLaTeX and upLaTeX, the extended
longdesc version also supports pdfLaTeX, XeLaTeX and LuaLaTeX, with the
longdesc aid of suitable packages that provide capability of Japanese
longdesc typesetting.
-containersize 31200
-containerchecksum a109996608f1ab1b12274726e8522b6e3f07cf6c07774800168a8ed171948684a8821260f4917838f5ee7509858f6a668cd881ec6d5be2aa29ccecbcb51bb200
-doccontainersize 1665704
-doccontainerchecksum f76a6fd1b5656be0a3a486e3dbe9dfde5e39d40310e3912158a6bee3981dfd615beb89675a5875cb5d31cc73f556a61842ddb427662e0e3ef40ca85415811014
-docfiles size=439
+containersize 31260
+containerchecksum 12a8d551f861d1d5a53c26b98d5afb40e965eb5e26346ac581d9ebfa904e9b978932ba47857cff9c9599683f079c51fc4510816da36d880b0dceda3913ec15a1
+doccontainersize 1824300
+doccontainerchecksum cbbc4785d6e15bf7bbecf11df69e9fe504754a52511c0f6b43fead390937a8183ab9bea17357ed6cc37c2914bab3ae821fb4316b24f782c86f3a32b75f71acd5
+docfiles size=486
RELOC/doc/latex/bxjscls/LICENSE
RELOC/doc/latex/bxjscls/README-ja.md details="Readme (Japanese)" language="ja"
RELOC/doc/latex/bxjscls/README.md details="Readme"
RELOC/doc/latex/bxjscls/bxjscls-manual.pdf details="User guide (Japanese)" language="ja"
RELOC/doc/latex/bxjscls/bxjscls-manual.tex
RELOC/doc/latex/bxjscls/bxjscls.pdf details="Package documentation (Japanese)" language="ja"
-srccontainersize 78560
-srccontainerchecksum 97cd18d0e977d341e9ae04899c29541b24946ea87905b51477c59cc3231ee2cb650b7876e8a7c9acca2a712ab7d02c30d2d7cff52c080d87fefed8974ed91be4
+srccontainersize 78592
+srccontainerchecksum d65fbd59d6dafd4a5da989784a5ca4552619c4591b68cda25a35a5ba24508a1545eea8e6d166c78d048a4f7cfaa2e93cff088d518ad871e1341321af1db0512b
srcfiles size=95
RELOC/source/latex/bxjscls/bxjscls.dtx
RELOC/source/latex/bxjscls/bxjscls.ins
@@ -40726,10 +40728,10 @@ runfiles size=97
catalogue-contact-home https://github.com/zr-tex8r/BXjscls
catalogue-contact-repository https://github.com/zr-tex8r
catalogue-ctan /language/japanese/BX/bxjscls
-catalogue-date 2019-07-27 21:14:26 +0200
+catalogue-date 2019-11-25 21:45:20 +0100
catalogue-license bsd2
catalogue-topics japanese class
-catalogue-version 1.9h
+catalogue-version 1.9i
name bxnewfont
category Package
@@ -149874,7 +149876,7 @@ catalogue-version 1.1
name l3backend
category Package
-revision 52343
+revision 52928
shortdesc LaTeX3 backend drivers
relocated 1
longdesc This package forms parts of expl3, and contains the code used
@@ -149883,26 +149885,28 @@ longdesc The functions here are defined differently depending on the
longdesc engine in use. As such, these are distributed separately from
longdesc l3kernel to allow this code to be updated on an independent
longdesc schedule.
-containersize 11972
-containerchecksum 333591d082c62f4455d7e8208857b29fa7c4a9ecd0a29c1e51f326f13f10cbfd7ca71fc2b5a28d13ce6e1c6900bfd414bc2599aa9ffc93e7b29f08958998d277
-doccontainersize 725344
-doccontainerchecksum da240912b67819ef4ced9ff48064b5d84db033948cf318cd86f00142cb6ed9e0e31f26bd56e368cfc532f0f10555dda5c2fb52a663bd73a0512cf1735b760334
-docfiles size=184
+containersize 11920
+containerchecksum bfb118bf3892b97e1ca5d075442bb651b62feae178ac81ed39cd0d6779f8d61dab9c6fa4cf51f6b80cf498164ca33e1c85e13fc4dbfd89e8eefc03d18c78971d
+doccontainersize 727776
+doccontainerchecksum 85505423a3920f3162ea8daa164c8f20fbf27a4c4883f90222024fa85003ccf02fc6028d2fa3774a69a0a1783bf2ab8208f581e864d8cfd5ac7d6403c9925c64
+docfiles size=185
RELOC/doc/latex/l3backend/CHANGELOG.md
RELOC/doc/latex/l3backend/README.md details="Readme"
RELOC/doc/latex/l3backend/l3backend-code.pdf details="Package documentation"
RELOC/doc/latex/l3backend/l3backend-code.tex
-srccontainersize 25900
-srccontainerchecksum 404811374a59ec3dd65817ac920639c2ab002f9f0974d53ee75836d507d82cf1c9c93b8d7178911b82713a0f2e99cb0245720152397467420822d84fc093171b
+srccontainersize 25824
+srccontainerchecksum 267516be7cfeb6423667d18a51cc8969e17a6a4b74b5d654e3a57960dfca989a9438294af7baa3ea28b74a6d6d30a8e2978465f180a0ffedda5831290723e2fd
srcfiles size=45
RELOC/source/latex/l3backend/l3backend-basics.dtx
RELOC/source/latex/l3backend/l3backend-box.dtx
RELOC/source/latex/l3backend/l3backend-color.dtx
RELOC/source/latex/l3backend/l3backend-draw.dtx
RELOC/source/latex/l3backend/l3backend-graphics.dtx
+ RELOC/source/latex/l3backend/l3backend-header.dtx
RELOC/source/latex/l3backend/l3backend-pdf.dtx
RELOC/source/latex/l3backend/l3backend.ins
runfiles size=34
+ RELOC/dvips/l3backend/l3backend-dvips.pro
RELOC/tex/latex/l3backend/l3backend-dvipdfmx.def
RELOC/tex/latex/l3backend/l3backend-dvips.def
RELOC/tex/latex/l3backend/l3backend-dvisvgm.def
@@ -149912,7 +149916,7 @@ catalogue-contact-bugs https://github.com/latex3/latex3/issues
catalogue-contact-home http://www.latex-project.org/code.html
catalogue-contact-repository https://github.com/latex3/latex3/
catalogue-ctan /macros/latex/contrib/l3backend
-catalogue-date 2019-10-11 18:56:19 +0200
+catalogue-date 2019-11-26 10:54:47 +0100
catalogue-license lppl1.3c
catalogue-topics latex3 expl3 macro-supp pre-release
@@ -274983,7 +274987,7 @@ binfiles arch=x86_64-solaris size=1
name tex4ht
category Package
-revision 52896
+revision 52930
shortdesc Convert (La)TeX to HTML/XML
longdesc A converter from TeX and LaTeX to SGML-based formats such as
longdesc (X)HTML, MathML, OpenDocument, and DocBook, providing a
@@ -274998,10 +275002,10 @@ longdesc restricted-syntax systems such as hyperlatex and gellmu. Note
longdesc that CTAN no longer holds the definitive sources of the
longdesc package: see the 'Readme' file.
depend tex4ht.ARCH
-containersize 897580
-containerchecksum d86eefc861bbd50a9fdaae20fc9f24ef4ea8714b991f12d422a3dbbaec3e728fbca9d3e2f4e230d55175ade7ad2ce087aaa57a8d238c7c31dab92829804c4a38
+containersize 897628
+containerchecksum 05c16b95ff71ed0550f7355d730a322a21270bbd13cd1ad7bcbd38e8529b5f905d7916c4e368eabb45b695a2333b96f3510b09cf4ae660db4e381c2a81d6964c
doccontainersize 61192
-doccontainerchecksum 6dc759533021ab2a6cc8fb82b68aceca7e0776c7bc1afaf4d3d9c24d3ad360da3b1bfb77f3a3fed5faf03055f24d2f61e26fc5fa7bda432726f26a1071a18c6e
+doccontainerchecksum 4f448766a9ad4e092e11134fec710397d1b8deaeb3128bae39a944403eb8a214fd2a1316df1ef49d50d0c4cb04c6e138b9c7a3d71142cb72f7251b99e41559a5
docfiles size=195
texmf-dist/doc/generic/tex4ht/bugfixes.css
texmf-dist/doc/generic/tex4ht/bugfixes.html
@@ -283230,15 +283234,15 @@ docfiles size=572
name texlive-docindex
category TLCore
-revision 52919
+revision 52934
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 0abce06a8431285a0618665ff898943d4adfefc33c44bad501872d229b8e59a5c6b930111f9662b60b8917e4f92e4907f2efe20b1e267d4c8712028968ae3ad2
-doccontainersize 155684
-doccontainerchecksum 2ced4a8f7a13ede4c02182aaf6f93a15a1647690023920af1973c9e8124b2f8dd6ad1933832b5ff08d834164210ca80bdca303b5bfb9d3c3720fd47cf970c58f
+containerchecksum 3d6219d7fd7880189b632f41e0fef636dc9e8486741175dea7c6b75595dbf947d17791a3d8381098ed93569c53c8df872af3682b72e9fa034d33e2f5309ffecb
+doccontainersize 155660
+doccontainerchecksum b2acc6126fd12f9b59b3a16d5698960fb2c29a2890ba84676b2fee30e42ac3b8a3fa57862a0dfe710c87e0e4befcd459dbbaae741f10176a3bd9e4fd5ee038d2
docfiles size=305
doc.html
runfiles size=270
@@ -283455,17 +283459,17 @@ docfiles size=503
name texlive-scripts
category TLCore
-revision 52919
+revision 52934
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 85452
-containerchecksum e93db9cc8d0032f053ecfaa63e99833b0f4dec5a142b7d299228019d29b1037e683983b6034bba5c7b095e63c195d6de4846285f4f4b224892551f02ffc95401
-doccontainersize 51248
-doccontainerchecksum 299e3de7932603c68424096009e4a349d793ae40d882abbb4392b205bb164dc2441b9b291fac65741b03a3cfdb0f314a772adbc95dc861a0d2fda22f4956bc4e
+containersize 85448
+containerchecksum 5efcf2c89757025c4c7f8d4746ae3bbc2aa583d0145c41372862471529cd788b2c2b62d21b95e6338e251d22d6d40185a0b7d1046e35f776ec524c0d2359f58f
+doccontainersize 51244
+doccontainerchecksum b1e7c4870c425aaab07f2e8c9ecb96a50de47c58832675b0b7b7808dfd1138ce62d4af3c466d42e7eb3594d6bde9c2c415273de97b9c611140fda393d3bdcf61
docfiles size=20
texmf-dist/doc/man/man1/install-tl.1
texmf-dist/doc/man/man1/install-tl.man1.pdf
@@ -283688,7 +283692,7 @@ docfiles size=292
name texlive.infra
category TLCore
-revision 52752
+revision 52931
shortdesc basic TeX Live infrastructure
longdesc This package contains the files needed to get tlmgr running:
longdesc perl modules, xz binaries, plus (sometimes) tar, wget, lz4, and
@@ -283696,10 +283700,10 @@ longdesc various other support files. This package also represents the
longdesc tlcritical recovery scripts. The standalone installer is close,
longdesc but not the same; it's defined in 00texlive.installer.
depend texlive.infra.ARCH
-containersize 218180
-containerchecksum 6f9754f312a96c0d2d4d182209e50c95b60fdab2a89861cd349b6d3f39c31fdbe562834af898235a04393e94405f2401c5f09d28dd9409154c05014cbbd39ffa
-doccontainersize 181856
-doccontainerchecksum 11725110f0a326f4f6446402dfbb5b04bbdd02425ca12050185d613eec832a83210a8dfda73f77759c970dc5676ff8e8ab65a6371308152a445a3f2786994f73
+containersize 218848
+containerchecksum 1b3915e803dd646acd12a01dbf4473cf43d03a7d655bdc733c4d78b648e25ec7748adbcb1e416436160a6da6208738c69c365e2de87ac0a399ed1e11bbec8a8f
+doccontainersize 181884
+doccontainerchecksum 8830e349dcbbf9db06076b68c1e48d8e1f077240a35d181375c65be929032ab771249079aa730093a170c6ed07238feb504b50bd79ada80852ed80841be83a5b
docfiles size=120
README
README.usergroups
@@ -283736,7 +283740,7 @@ docfiles size=120
texmf-dist/scripts/texlive/NEWS
tlpkg/README
tlpkg/installer/COPYING.MinGW-runtime.txt
-runfiles size=254
+runfiles size=255
LICENSE.CTAN
LICENSE.TL
release-texlive.txt
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
index fc1546ebb8..8256f5a951 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
@@ -1 +1 @@
-83c8621373ee4b9298cc7364301a4f23 texlive.tlpdb
+e9d70b193017e6dd1d5780f2623de320 texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
index 4c06570bcc..608b17b689 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
@@ -1 +1 @@
-a5f4212e299c5ac3d5db063d8645588c92d6ff6cc973d4281411323370a611a0fc9ffd9cd54ee2dd98bda43f5732d1a68e741d2a5d169bb9d79ccba6a9c5a02f texlive.tlpdb
+255f68fa86067c78e15fe553df427b8e69d3c569c841534a7183d67af961c4c9dfb0fdef19bd8aac576dab018b0f3859af002cfc8481893d282bf864da104c82 texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
index 1ec9893303..b0aee831ea 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-----
-iQEcBAEBCgAGBQJd3HgEAAoJEEzhh34ZQ4xwE2cH/Ryp1blb5LpVS91VCj2CKI5U
-2t6WDeBz+TzqD4vPPutAL/cvatGFgLJbbIfzuZxj68GnTUaI1DKv+KnytmKj29XR
-FUn6cKP/gRbKoS9d45q9nyEqM1gkK6xtQ8mqYcPfs+5sHIDJQIuSNz6rHLD/4W+G
-3apVZ6h2rWoVu0vtyD3J8cUWeBJHwudQ3S3jkm+pdbWubReFQ1vFyaUT7Bq2q1m2
-KHufLzzUSpHYsXBhP+AyyTTjR7bE3sx2beiGfszNHMCSfFvFuGp7gBTDorBEI0v9
-MHGs0Vp4exdrFSvQXDbB/5u6DccWP1W3WBGJFTK518ZNGf8t3yqtYKxGOb8M58k=
-=bjgJ
+iQEcBAEBCgAGBQJd3cl4AAoJEEzhh34ZQ4xwFnkIAJgL46zbeqcu5srXPDLX1Xkp
+fXuK7h2aSg5LkgDuxTJdbxCWcsPPUcCWFrIlWuyugu8Xfe5nCCSbXHf23oVeDBhW
+Cl9s22h3R38lU3pCOck2B766Es+30JCH0Eq4TosB1gPGLc9HapbSbywiFdF0vQ6/
+QGwikqrocjwdlOf+h4Y3QsXzDva08REc0r/FAd4gVsUjjs1k85tP73Ob2lqZffz0
+NFysdIY3qyB9/PIrTXtgTCGoyl8M3prDo8cGZVlc0LHYLUJ5fD8M8w0mBD85HaUk
+WpH6+qQock/BKwbcg/89EUn/7XbGr9XtiYZfpKRGcNxNN+9hoOCWA2U76nKx9fQ=
+=Wq7t
-----END PGP SIGNATURE-----
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
index 95261ea129..72a2a788ac 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
Binary files differ