summaryrefslogtreecommitdiff
path: root/systems/texlive
diff options
context:
space:
mode:
Diffstat (limited to 'systems/texlive')
-rwxr-xr-xsystems/texlive/tlnet/install-tl34
-rw-r--r--systems/texlive/tlnet/tlpkg/TeXLive/TLDownload.pm5
-rw-r--r--systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm13
-rw-r--r--systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl3
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb2062
-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.asc16
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.xzbin2567944 -> 2575172 bytes
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/cs.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/da.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/de.po30
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/es.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/fr.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/it.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/ja.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/messages.pot10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/nl.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/pl.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/pt_BR.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/ru.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/sk.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/sl.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/sr.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/uk.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/vi.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/zh_CN.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/zh_TW.po10
28 files changed, 1666 insertions, 681 deletions
diff --git a/systems/texlive/tlnet/install-tl b/systems/texlive/tlnet/install-tl
index 657fec072e..f4861e4f4d 100755
--- a/systems/texlive/tlnet/install-tl
+++ b/systems/texlive/tlnet/install-tl
@@ -1,5 +1,5 @@
#!/usr/bin/env perl
-# $Id: install-tl 70922 2024-04-11 20:44:12Z karl $
+# $Id: install-tl 71157 2024-05-02 20:29:00Z karl $
# Copyright 2007-2024
# Reinhard Kotucha, Norbert Preining, Karl Berry, Siep Kroonenberg.
# This file is licensed under the GNU General Public License version 2
@@ -12,7 +12,7 @@
use strict; use warnings;
-my $svnrev = '$Revision: 70922 $';
+my $svnrev = '$Revision: 71157 $';
$svnrev =~ m/: ([0-9]+) /;
$::installerrevision = ($1 ? $1 : 'unknown');
@@ -361,16 +361,13 @@ my %profiledata;
if (-r "installation.profile"
&& $opt_interaction
&& !exists $ENV{"TEXLIVE_INSTALL_NO_RESUME"}) {
- if ($from_ext_gui) { # prepare for dialog interaction
- print "mess_yesno\n";
- }
+ print "mess_yesno\n" if $from_ext_gui; # prepare for dialog interaction
my $pwd = Cwd::getcwd();
print "ABORTED TL INSTALLATION FOUND: installation.profile (in $pwd)\n";
- print
- "Do you want to continue with the exact same settings as before (y/N): ";
+ print "Do you want to continue with the same settings as before (y/N): ";
print "\nendmess\n" if $from_ext_gui;
my $answer = <STDIN>;
- if ($answer =~ m/^y(es)?$/i) {
+ if ($answer && $answer =~ m/^y(es)?$/i) {
$opt_profile = "installation.profile";
}
}
@@ -601,6 +598,25 @@ if (!$opt_custom_bin && (platform() eq "i386-cygwin")) {
}
}
}
+#
+# More Cygwin: if the user doesn't have Cygwin's wget or curl,
+# it's unlikely anything good will happen.
+if ($^O eq 'cygwin'
+ && (! -x "/usr/bin/curl.exe" && ! -x "/usr/bin/wget.exe")) {
+ print "mess_yesno\n" if $from_ext_gui; # prepare for dialog interaction
+ print <<END_CYGWIN_WGET_MSG;
+It seems you are using Cygwin and have not installed Cygwin's
+curl or wget. See the TeX Live Guide information on Cygwin for required
+and recommended packages:
+ https://tug.org/texlive/doc/texlive-en/texlive-en.html#cygwin
+END_CYGWIN_WGET_MSG
+ print "Continue anyway (unlikely to work) (y/N): ";
+ print "\nendmess\n" if $from_ext_gui;
+ my $answer = <STDIN>;
+ if (! $answer || $answer !~ m/^y(es)?$/i) {
+ tldie("$0: Ok, goodbye. Please install the needed packages.\n");
+ }
+}
# determine which media are available, don't put NET here, it is
# assumed to be available at any time
@@ -3582,7 +3598,7 @@ This script and its documentation were written for the TeX Live
distribution (L<https://tug.org/texlive>) and both are licensed under the
GNU General Public License Version 2 or later.
-$Id: install-tl 70922 2024-04-11 20:44:12Z karl $
+$Id: install-tl 71157 2024-05-02 20:29:00Z karl $
=cut
# to remake HTML version: pod2html --cachedir=/tmp install-tl >/tmp/itl.html
diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLDownload.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLDownload.pm
index f540fabaca..5d0a4d7005 100644
--- a/systems/texlive/tlnet/tlpkg/TeXLive/TLDownload.pm
+++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLDownload.pm
@@ -1,4 +1,4 @@
-# $Id: TLDownload.pm 69646 2024-01-31 18:17:20Z karl $
+# $Id: TLDownload.pm 71152 2024-05-02 17:03:11Z karl $
# TeXLive::TLDownload.pm - module for abstracting the download modes
# Copyright 2009-2024 Norbert Preining
# This file is licensed under the GNU General Public License version 2
@@ -11,7 +11,7 @@ package TeXLive::TLDownload;
use TeXLive::TLUtils;
use TeXLive::TLConfig;
-my $svnrev = '$Revision: 69646 $';
+my $svnrev = '$Revision: 71152 $';
my $_modulerevision;
if ($svnrev =~ m/: ([0-9]+) /) {
$_modulerevision = $1;
@@ -60,6 +60,7 @@ sub reinit {
# differing case-insensitive like foo=1 and FOO=2. Even on systems
# that have case-sensitive environments, and even about variables that
# have nothing whatsoever to do with LWP (like foo).
+ # https://github.com/libwww-perl/libwww-perl/issues/372
#
# So, only pass env_proxy=>1 when creating the UserAgent if there are
# in fact *_proxy variables (case-insensitive, just in case) set in
diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm
index 0b73214017..369aa46068 100644
--- a/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm
+++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm
@@ -1,4 +1,4 @@
-# $Id: TLPDB.pm 71122 2024-04-29 17:34:15Z karl $
+# $Id: TLPDB.pm 71157 2024-05-02 20:29:00Z karl $
# TeXLive::TLPDB.pm - tlpdb plain text database files.
# Copyright 2007-2024 Norbert Preining
# This file is licensed under the GNU General Public License version 2
@@ -7,7 +7,7 @@
use strict; use warnings;
package TeXLive::TLPDB;
-my $svnrev = '$Revision: 71122 $';
+my $svnrev = '$Revision: 71157 $';
my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown";
sub module_revision { return $_modulerevision; }
@@ -369,12 +369,13 @@ More info: https://tug.org/texlive/acquire.html
END_DOWNLOAD_FAILURE_MSG
# If they have the Cygwin wget.exe, some other problem.
- if ($^O eq 'cygwin' && -x "/usr/bin/wget.exe") {
+ if ($^O eq 'cygwin'
+ && (! -x "/usr/bin/curl.exe" && ! -x "/usr/bin/wget.exe")) {
$diemsg .= <<END_CYGWIN_WGET_MSG;
-It seems you are using Cygwin and haven't installed Cygwin's wget.
-See the TeX Live Guide information on Cygwin for required and
-recommended packages:
+It seems you are using Cygwin and have not installed Cygwin's
+curl or wget. See the TeX Live Guide information on Cygwin for required
+and recommended packages:
https://tug.org/texlive/doc/texlive-en/texlive-en.html#cygwin
END_CYGWIN_WGET_MSG
}
diff --git a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
index d8da0c33d9..401cf23c6d 100644
--- a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
+++ b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
@@ -9,6 +9,7 @@ $mirrors = {
},
'Asia' => {
'China' => {
+ 'https://mirror.bjtu.edu.cn/CTAN/' => 1,
'https://mirror.nyist.edu.cn/CTAN/' => 1,
'https://mirrors.aliyun.com/CTAN/' => 1,
'https://mirrors.bfsu.edu.cn/CTAN/' => 1,
@@ -114,7 +115,6 @@ $mirrors = {
'https://mirror.physik.tu-berlin.de/pub/CTAN/' => 1,
},
'Greece' => {
- 'http://ftp.ntua.gr/mirror/ctan/' => 1,
'https://fosszone.csd.auth.gr/CTAN/' => 1,
'https://ftp.cc.uoc.gr/mirrors/CTAN/' => 1,
},
@@ -135,7 +135,6 @@ $mirrors = {
},
'Poland' => {
'https://ctan.gust.org.pl/tex-archive/' => 1,
- 'https://polish-mirror.evolution-host.com/ctan/' => 1,
'https://sunsite.icm.edu.pl/pub/CTAN/' => 1,
},
'Portugal' => {
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb b/systems/texlive/tlnet/tlpkg/texlive.tlpdb
index a01f8c7f09..358c5bd3b1 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/2024
-depend revision/71141
+depend revision/71298
name 00texlive.image
category TLCore
-revision 71129
+revision 71264
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=14471
+runfiles size=14492
.mkisofsrc
autorun.inf
texmf-dist/README
@@ -1198,6 +1198,7 @@ runfiles size=14471
tlpkg/tlpsrc/collref.tlpsrc
tlpkg/tlpsrc/colophon.tlpsrc
tlpkg/tlpsrc/color-edits.tlpsrc
+ tlpkg/tlpsrc/colorblind.tlpsrc
tlpkg/tlpsrc/colordoc.tlpsrc
tlpkg/tlpsrc/coloredbelts.tlpsrc
tlpkg/tlpsrc/coloredtheorem.tlpsrc
@@ -1367,6 +1368,7 @@ runfiles size=14471
tlpkg/tlpsrc/cybercic.tlpsrc
tlpkg/tlpsrc/cyklop.tlpsrc
tlpkg/tlpsrc/cyrillic-bin.tlpsrc
+ tlpkg/tlpsrc/cyrillic-modern.tlpsrc
tlpkg/tlpsrc/cyrillic.tlpsrc
tlpkg/tlpsrc/cyrplain.tlpsrc
tlpkg/tlpsrc/dad.tlpsrc
@@ -1800,6 +1802,7 @@ runfiles size=14471
tlpkg/tlpsrc/fancytooltips.tlpsrc
tlpkg/tlpsrc/fancyvrb.tlpsrc
tlpkg/tlpsrc/fandol.tlpsrc
+ tlpkg/tlpsrc/faq-fr.tlpsrc
tlpkg/tlpsrc/fascicules.tlpsrc
tlpkg/tlpsrc/fast-diagram.tlpsrc
tlpkg/tlpsrc/fbb.tlpsrc
@@ -2334,6 +2337,7 @@ runfiles size=14471
tlpkg/tlpsrc/iexec.tlpsrc
tlpkg/tlpsrc/ifallfalse.tlpsrc
tlpkg/tlpsrc/iffont.tlpsrc
+ tlpkg/tlpsrc/ifis-macros.tlpsrc
tlpkg/tlpsrc/ifmslide.tlpsrc
tlpkg/tlpsrc/ifmtarg.tlpsrc
tlpkg/tlpsrc/ifnextok.tlpsrc
@@ -2611,7 +2615,6 @@ runfiles size=14471
tlpkg/tlpsrc/latexmp.tlpsrc
tlpkg/tlpsrc/latexpand.tlpsrc
tlpkg/tlpsrc/latino-sine-flexione.tlpsrc
- tlpkg/tlpsrc/lato-math.tlpsrc
tlpkg/tlpsrc/lato.tlpsrc
tlpkg/tlpsrc/layaureo.tlpsrc
tlpkg/tlpsrc/layouts.tlpsrc
@@ -2633,6 +2636,7 @@ runfiles size=14471
tlpkg/tlpsrc/leftindex.tlpsrc
tlpkg/tlpsrc/leipzig.tlpsrc
tlpkg/tlpsrc/lengthconvert.tlpsrc
+ tlpkg/tlpsrc/lete-sans-math.tlpsrc
tlpkg/tlpsrc/letgut.tlpsrc
tlpkg/tlpsrc/letltxmacro.tlpsrc
tlpkg/tlpsrc/letterspacing.tlpsrc
@@ -2894,6 +2898,7 @@ runfiles size=14471
tlpkg/tlpsrc/mathfam256.tlpsrc
tlpkg/tlpsrc/mathfixs.tlpsrc
tlpkg/tlpsrc/mathfont.tlpsrc
+ tlpkg/tlpsrc/mathgreeks.tlpsrc
tlpkg/tlpsrc/mathlig.tlpsrc
tlpkg/tlpsrc/mathpartir.tlpsrc
tlpkg/tlpsrc/mathpazo.tlpsrc
@@ -3261,6 +3266,7 @@ runfiles size=14471
tlpkg/tlpsrc/orientation.tlpsrc
tlpkg/tlpsrc/orkhun.tlpsrc
tlpkg/tlpsrc/oscola.tlpsrc
+ tlpkg/tlpsrc/osda.tlpsrc
tlpkg/tlpsrc/oststud.tlpsrc
tlpkg/tlpsrc/oswald.tlpsrc
tlpkg/tlpsrc/ot-tableau.tlpsrc
@@ -3792,6 +3798,7 @@ runfiles size=14471
tlpkg/tlpsrc/revtex4.tlpsrc
tlpkg/tlpsrc/rgltxdoc.tlpsrc
tlpkg/tlpsrc/ribbonproofs.tlpsrc
+ tlpkg/tlpsrc/rigidnotation.tlpsrc
tlpkg/tlpsrc/rit-fonts.tlpsrc
tlpkg/tlpsrc/rjlparshap.tlpsrc
tlpkg/tlpsrc/rlepsf.tlpsrc
@@ -4144,6 +4151,7 @@ runfiles size=14471
tlpkg/tlpsrc/synproof.tlpsrc
tlpkg/tlpsrc/syntax.tlpsrc
tlpkg/tlpsrc/syntaxdi.tlpsrc
+ tlpkg/tlpsrc/synthslant.tlpsrc
tlpkg/tlpsrc/syntrace.tlpsrc
tlpkg/tlpsrc/synttree.tlpsrc
tlpkg/tlpsrc/systeme.tlpsrc
@@ -4409,6 +4417,7 @@ runfiles size=14471
tlpkg/tlpsrc/tkz-euclide.tlpsrc
tlpkg/tlpsrc/tkz-fct.tlpsrc
tlpkg/tlpsrc/tkz-graph.tlpsrc
+ tlpkg/tlpsrc/tkz-grapheur.tlpsrc
tlpkg/tlpsrc/tkz-orm.tlpsrc
tlpkg/tlpsrc/tkz-tab.tlpsrc
tlpkg/tlpsrc/tkzexample.tlpsrc
@@ -4506,6 +4515,7 @@ runfiles size=14471
tlpkg/tlpsrc/typewriter.tlpsrc
tlpkg/tlpsrc/typicons.tlpsrc
tlpkg/tlpsrc/typoaid.tlpsrc
+ tlpkg/tlpsrc/typog.tlpsrc
tlpkg/tlpsrc/typogrid.tlpsrc
tlpkg/tlpsrc/typstfun.tlpsrc
tlpkg/tlpsrc/tzplot.tlpsrc
@@ -4754,6 +4764,7 @@ runfiles size=14471
tlpkg/tlpsrc/xifthen.tlpsrc
tlpkg/tlpsrc/xii-lat.tlpsrc
tlpkg/tlpsrc/xii.tlpsrc
+ tlpkg/tlpsrc/ximera.tlpsrc
tlpkg/tlpsrc/xindex.tlpsrc
tlpkg/tlpsrc/xindy-persian.tlpsrc
tlpkg/tlpsrc/xindy.tlpsrc
@@ -4889,7 +4900,7 @@ depend setting_available_architectures:aarch64-linux amd64-freebsd amd64-netbsd
name 00texlive.installer
category TLCore
-revision 71141
+revision 71298
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
@@ -21753,7 +21764,7 @@ catalogue-version 1.0
name arara
category Package
-revision 69831
+revision 71205
shortdesc Automation of LaTeX compilation
longdesc Arara is comparable with other well-known compilation tools
longdesc like latexmk and rubber. The key difference is that arara
@@ -21761,15 +21772,15 @@ longdesc determines its actions from metadata in the source code, rather
longdesc than relying on indirect resources, such as log file analysis.
longdesc Arara requires a Java virtual machine.
depend arara.ARCH
-containersize 15171016
-containerchecksum e2b68c1b73cb6770c27207d3c6dd6e5e91e1674b04194ded8afa9843d3685922e358550b4b6aad6590ebc7fcad0599c1b074d1cbf866ff1b6b3fe56c9ed03191
-doccontainersize 5000208
-doccontainerchecksum 47c5eaf0c987856ff99d4e391c85ad3ec076e357f2c2dc1b579ee7bb48625a738761e3b2aa2a4e21673ea198e2318c5b4f165024e0a7238e005484ba8d7bbeac
-docfiles size=1994
+containersize 15528680
+containerchecksum 193c64a85d9304eaec2456cff3b674916f1b459a29bcc535fddb48a41f4790cb128ef238ad9fecf2dcfbb4d553325d63373a761aa0a8c283058e16924ff4ab1a
+doccontainersize 4978168
+doccontainerchecksum b3be8cc33056fd2d9e3576fe5f9a92cdd9582e94e4c46c05669d8263223e8c04cc8654009dfedc40e1c958cf634e9cff9dd2169c17a5da4536aaa55c1d97659b
+docfiles size=1937
texmf-dist/doc/man/man1/arara.1
texmf-dist/doc/man/man1/arara.man1.pdf
texmf-dist/doc/support/arara/README.md details="Readme"
- texmf-dist/doc/support/arara/arara-7.1.3-docsrc.zip
+ texmf-dist/doc/support/arara/arara-7.1.5-docsrc.zip
texmf-dist/doc/support/arara/arara-manual.pdf details="Reference manual"
texmf-dist/doc/support/arara/arara-quickstart.pdf details="Quickstart guide"
texmf-dist/doc/support/arara/htmlmanualtopdf.sh
@@ -21789,11 +21800,11 @@ docfiles size=1994
texmf-dist/doc/support/arara/resources/gitlab-icon.svg
texmf-dist/doc/support/arara/resources/manual.css
texmf-dist/doc/support/arara/resources/version.txt
-srccontainersize 116432
-srccontainerchecksum 25d18881c724a38e3954b76bd06b388c1c004feffa8cde20a1ab540c4f18f147b57c2666d7b20fa59e8f37c7437d472a67fc4b5ece90af67510c20fa750a868f
+srccontainersize 116420
+srccontainerchecksum fa8a1bba7d84afccc5c80307a4c44f3689966ef8184d4831e8dc5fa6ed333728fcfc3e2861f3ff5809d334c31a28c1522de7fce40bb6e27d016e13bcd5bf7394
srcfiles size=40
- texmf-dist/source/support/arara/arara-7.1.3-src.zip
-runfiles size=4156
+ texmf-dist/source/support/arara/arara-7.1.5-src.zip
+runfiles size=4275
texmf-dist/scripts/arara/arara.jar
texmf-dist/scripts/arara/arara.sh
texmf-dist/scripts/arara/rules/arara-rule-animate.yaml
@@ -21845,6 +21856,7 @@ runfiles size=4156
texmf-dist/scripts/arara/rules/arara-rule-pdflatex.yaml
texmf-dist/scripts/arara/rules/arara-rule-pdftex.yaml
texmf-dist/scripts/arara/rules/arara-rule-pdftk.yaml
+ texmf-dist/scripts/arara/rules/arara-rule-pdftocairo.yaml
texmf-dist/scripts/arara/rules/arara-rule-perltex.yaml
texmf-dist/scripts/arara/rules/arara-rule-platex.yaml
texmf-dist/scripts/arara/rules/arara-rule-ps2pdf.yaml
@@ -21874,7 +21886,7 @@ catalogue-contact-support https://matrix.to/#/!HfEWIEvFtDplCLSQvz:matrix.org?via
catalogue-ctan /support/arara
catalogue-license bsd
catalogue-topics compilation
-catalogue-version 7.1.3
+catalogue-version 7.1.5
name arara.aarch64-linux
category Package
@@ -24762,7 +24774,7 @@ catalogue-topics font font-cjk font-ttf
name arraycols
category Package
-revision 68277
+revision 71168
shortdesc New column types for array and tabular environments
relocated 1
longdesc This small package provides new column types for array and
@@ -24771,15 +24783,15 @@ longdesc with adjusted height for big mathematical expressions. The
longdesc columns width can be fixed or calculated like in tabularx
longdesc environments. Macros for drawing vertical and horizontal rules
longdesc of variable thickness are also provided.
-containersize 1324
-containerchecksum faf429613ee1987b92b369dc357f376c1465531cec8f7f78c37099366fa80954930afd62c553760b71a2226b0d245d9ad9664f4e5383803471bcf4f63f419f7a
-doccontainersize 465540
-doccontainerchecksum 6bff5add83a6eb8f0c697bdfc5da076c5a833e856abf0b023002a50a85dd1a7cc24e0cd042a2fd28c18a37a88ac91f4f09a5c4f2911cbba30026fbc03df06c71
-docfiles size=115
+containersize 1292
+containerchecksum 6b111a498e567d2fc06614841eebc36cae7256f99b7f1dc903f4cb5fb68c66c3d9ad6fec15757a91290f092fedd23ce64120a073480d6c282270f1c844e5fc41
+doccontainersize 108476
+doccontainerchecksum bf2eb31b818d3c2e245b781f083b76e9c8b4ae7715fd85607195b2456bfb2e8b23f8fb8459b7c7f0b5bb28dbc5a88f113fc8fec4712dd02c3bc395f11e705faf
+docfiles size=33
RELOC/doc/latex/arraycols/README.md details="Readme"
RELOC/doc/latex/arraycols/arraycols.pdf details="Package documentation"
-srccontainersize 6924
-srccontainerchecksum 9fe04362a179851b135af96b0eed0d229d19f2d4623acbbc39dfcef375be7dc682ef08af3fcbe146d7ce738cbe8e7e00e9f72d549966efa674433e3024738ab0
+srccontainersize 7372
+srccontainerchecksum 72f2f99c904ea7e386a3211693b9b7395b58fd53f8d718d359f5dff86b29f53734ff617cfb31a33b256d3162c40b2eb63355aff6c77120f41226e14380c1bc48
srcfiles size=6
RELOC/source/latex/arraycols/arraycols.dtx
RELOC/source/latex/arraycols/arraycols.ins
@@ -24788,7 +24800,7 @@ runfiles size=1
catalogue-ctan /macros/latex/contrib/arraycols
catalogue-license lppl1.3
catalogue-topics table alignment alignment-supp
-catalogue-version 1.4
+catalogue-version 1.5
name arrayjobx
category Package
@@ -28788,7 +28800,7 @@ catalogue-version 1.0
name babel
category Package
-revision 71021
+revision 71296
shortdesc Multilingual support for LaTeX, LuaLaTeX, XeLaTeX, and Plain TeX
relocated 1
longdesc This package manages culturally-determined typographical (and
@@ -28802,16 +28814,16 @@ longdesc about 300 languages from around the World, including many
longdesc written in non-Latin and RTL scripts. Many of them work with
longdesc pdfLaTeX, as well as with XeLaTeX and LuaLaTeX, out of the box.
longdesc A few even work with plain formats.
-containersize 231364
-containerchecksum 797b882c91ddc4d6ee8b7bd596467f6afd71c7d8d4939d1558e3303455c7acb0b541e083b05caf257d748b24dbeca50222fb29f40e9bcbac1788d64613f4e055
-doccontainersize 1052572
-doccontainerchecksum 818581165f65d908d5bb58fd1586b82bbdea66f2f0208d423b7e5bfe750fb7ee28fabf26137640dd41fdfaa2900a1a3e0f648e38adf6bf29f85b50676b3acec9
-docfiles size=263
+containersize 231316
+containerchecksum b3bd7ce1eae7cfcf17b715adb0bc53a52247b8e13030d3413572fe03ce322763a9f42b8b31e602be18817f87a9912f58e5a0914d6b95a890b87a7740c9a017a4
+doccontainersize 1052892
+doccontainerchecksum ef5feb488e80aaa29a7f3a6fca989a83425db18151b56cc6099649f5d4426fe2496785eee1eeefedca91ed2e7bcdb7300c9af5f6c12ce34870f4382086189a9c
+docfiles size=264
RELOC/doc/latex/babel/README.md details="Readme"
RELOC/doc/latex/babel/babel-code.pdf details="Code documentation"
RELOC/doc/latex/babel/babel.pdf details="User guide"
-srccontainersize 889240
-srccontainerchecksum d5340b426a55ae2d72bab6dae43d6bfd150bded0b7202ca234fc3f8e005d0eb283751f8947384fdc6678ec75af5e089f818889a11a5c3e229135d05df20efe5b
+srccontainersize 889312
+srccontainerchecksum b5c620f71858f20b9c448a143861fb1b789771cb1d05f23310a8d4d0815c2a24f68ad64bd9d831f966fbdaf86012a66de5ab504f183940387629cda4e195076c
srcfiles size=473
RELOC/source/latex/babel/babel.dtx
RELOC/source/latex/babel/babel.ins
@@ -29790,7 +29802,7 @@ catalogue-contact-repository https://github.com/latex3/babel
catalogue-ctan /macros/latex/required/babel/base
catalogue-license lppl1.3
catalogue-topics multilingual expl3
-catalogue-version 24.4
+catalogue-version 24.5
name babel-albanian
category Package
@@ -32360,7 +32372,7 @@ catalogue-version 1.016
name baskervaldx
category Package
-revision 69273
+revision 71145
shortdesc Extension and modification of BaskervaldADF with LaTeX support
relocated 1
longdesc Extends and modifies the BaskervaldADF font (a Baskerville
@@ -32368,10 +32380,10 @@ longdesc substitute) with more accented glyphs, with small caps and
longdesc oldstyle figures in all shapes. Includes OpenType and
longdesc PostScript fonts, as well as LaTeX support files.
execute addMap Baskervaldx.map
-containersize 679616
-containerchecksum f78b61573fc99c6696dd9aac4f108f473996c5e67223e721db88f355b2e55a68f2b8a21c7bf994f2ee36a8fa465b55b970d65407b1ecfe1ffd7e00061bb70753
-doccontainersize 209632
-doccontainerchecksum 8d1b8a3e12b958fe5dee50255c291ebe8ed75e8733a28a5fda7c927a9253e0d94e68b51e81ce8805e3c3855893f53947429fa9684c99925d80176522c72119e9
+containersize 679904
+containerchecksum 8ef914386a6aed11cec27d54020a6f2161f4398cc4b30e6b1095d8800b10d6ceae97bd8e8bd9b8e9b820b121cc19e17c2eb12ff7c17c4a6f62a4f53b5c4d6405
+doccontainersize 209664
+doccontainerchecksum a4d81dd0addb5cd47bd4234f6127e9331352acb85c8bcb7109f77249f4a36fbcafd5ab44a20af67bb8aab1e8c6890d1c5baa36ac2e37cb53b0a3e792891a0a48
docfiles size=65
RELOC/doc/fonts/baskervaldx/COPYING
RELOC/doc/fonts/baskervaldx/NOTICE.txt
@@ -32948,7 +32960,7 @@ runfiles size=1347
catalogue-ctan /fonts/baskervaldx
catalogue-license gpl2+ lppl1.3
catalogue-topics font font-body font-proportional font-serif font-otf font-type1 font-supp font-t1enc
-catalogue-version 1.077
+catalogue-version 1.078
name baskervillef
category Package
@@ -35796,16 +35808,16 @@ catalogue-topics book-pub class doc-templ expl3
name beebe
category Package
-revision 71082
+revision 71298
catalogue biblio
shortdesc A collection of bibliographies
relocated 1
longdesc A collection of BibTeX bibliographies on TeX-related topics
longdesc (including, for example, spell-checking and SGML). Each
longdesc includes a LaTeX wrapper file to typeset the bibliography.
-containersize 922772
-containerchecksum d38a175f2e09b445ae84ba138e967bd7fa48bb126e982969e3634282fefe2d6053a63e9e1fa7d02920476045c8b22b5f18ce3c23d6dc16bf1fb1804b6d06bd16
-runfiles size=2268
+containersize 926160
+containerchecksum e50a83522ecd7e5e1146c8e432be12393896538353bee54ecbb2a162e7fecab60f137e1c1818104b5e70d7d774e699c27844f582ddbebb493bf3a3e2806c8e59
+runfiles size=2282
RELOC/bibtex/bib/beebe/epodd.bib
RELOC/bibtex/bib/beebe/font.bib
RELOC/bibtex/bib/beebe/printing-history.bib
@@ -37400,7 +37412,7 @@ catalogue-version 2.6
name bibcop
category Package
-revision 70645
+revision 71186
shortdesc Style checker for .bib files
longdesc This LaTeX package checks the quality of your .bib file and
longdesc emits warning messages if any issues are found. For this, the
@@ -37411,10 +37423,10 @@ longdesc Windows.
depend bibcop.ARCH
depend iexec
depend pgfopts
-containersize 8520
-containerchecksum 926f3f02e7667d23ff26cedeb97ba2f4d981ba3540cbd2dc34aceaa7c7dbd2ac0b59d97d754c468e0d38e9a2b3fbae671ff5f37b69cd0107cbd335d1f585edf6
-doccontainersize 359608
-doccontainerchecksum 67fa7a214f6ed7af3bbd36526f5d6557c58cb2e8c33c65d03ea06a81b50e76ae765802e5487a5d1b167ac1792a2c3350b697a1c63a3bdba2b81c015dcb5004b8
+containersize 9324
+containerchecksum af20cfd6c4ceed888e143bab8a1e994359166169b8d2d7cdaa0d2fe965ebd39d98921b6a01195eea9325ecea0d799f57091bf879d60eea5c9e8f8346be6cb286
+doccontainersize 359708
+doccontainerchecksum db495eab98381c9cbab14df962f93243b091438450ed57f37931c80eb63ebb3703d219c494fe588b3170c2c85b6e7864ba5bd3faabf986b71bf07464ea1c80ac
docfiles size=95
texmf-dist/doc/bibtex/bibcop/DEPENDS.txt
texmf-dist/doc/bibtex/bibcop/LICENSE.txt
@@ -37423,19 +37435,19 @@ docfiles size=95
texmf-dist/doc/bibtex/bibcop/bibcop.pdf details="Package documentation"
texmf-dist/doc/man/man1/bibcop.1
texmf-dist/doc/man/man1/bibcop.man1.pdf
-srccontainersize 6216
-srccontainerchecksum 14cbec026d61ae90a5a88b4832ca17b452abbd41a61359aeb04dd03b2c0a8e137203d51e1f0d3ebb3941773c87be45c51f1a90d5d81744bec5b5658c6e9e65f6
+srccontainersize 6204
+srccontainerchecksum 9dde1f041268f72cf9b77b7f0c3938591e860662d2be2a084a20895b7ab2a859b0902379129ff6804dcd2b446cdf0d72ce6b81a4a64566a951327e79e17ad37a
srcfiles size=5
texmf-dist/source/bibtex/bibcop/bibcop.dtx
texmf-dist/source/bibtex/bibcop/bibcop.ins
-runfiles size=8
+runfiles size=9
texmf-dist/scripts/bibcop/bibcop.pl
texmf-dist/tex/latex/bibcop/bibcop.sty
catalogue-contact-repository https://github.com/yegor256/bibcop
catalogue-ctan /biblio/bibtex/utils/bibcop
catalogue-license mit
catalogue-topics biblio-supp ext-code
-catalogue-version 0.0.20
+catalogue-version 0.0.21
name bibcop.aarch64-linux
category Package
@@ -37775,11 +37787,11 @@ binfiles arch=x86_64-linux size=7994
name biber.x86_64-linuxmusl
category Package
-revision 66863
+revision 71271
shortdesc x86_64-linuxmusl files of biber
-containersize 18119084
-containerchecksum 2e32d6405ed9dacfa4bc87aa857d986a1a04904a1b96577ba4c615a84d71a65e030ba8dfbeac7b6513432c5272e78cba06b39fc36d4fa5cb7751f5e2b378766d
-binfiles arch=x86_64-linuxmusl size=5846
+containersize 18438368
+containerchecksum e58f7f2d0d0905fd7079327a86df6a43224ac551da7077edea18113d91742255629bbcb67873963b90ad6d807e7631bf76a3fb1d8623905612510ccb38bc4519
+binfiles arch=x86_64-linuxmusl size=5930
bin/x86_64-linuxmusl/biber
name biber.x86_64-solaris
@@ -40939,7 +40951,7 @@ catalogue-version 1.1b
name biblatex-publist
category Package
-revision 70508
+revision 71216
shortdesc BibLaTeX bibliography support for publication lists
relocated 1
longdesc The package provides a BibLaTeX bibliography style file (*.bbx)
@@ -40948,10 +40960,10 @@ longdesc authoryear style, but provides some extra features often
longdesc desired for publication lists, such as the omission of the
longdesc author's own name from author or editor data. At least version
longdesc 3.4 of biblatex is required.
-containersize 12564
-containerchecksum a111b1291b10f4daccf12015cdd37cdefcecfc3f1f9c0bbf6251e673c3b6afac361d2ccf6ae34799fc8c97b2e616ef5525e3e9152bc9eaaa2844f03a2659978a
-doccontainersize 428476
-doccontainerchecksum 460443e7eba4bcffa76b2c17861dd97caa10b7030f1494b0500c35f93176a5c4788cf4680eb0384446c2c3f58b394e9de56fe2cdd5b6074cbe421a7118e4795f
+containersize 12728
+containerchecksum 62b6f2ca6c33d0a2f0473e56ced02a53d8dd78d2fac61a94a43eecc2a228aac2e1ab9535c3efb124b97390c6d38de5cafaa25c323a8530deecadf74750b23d9c
+doccontainersize 430648
+doccontainerchecksum d2f04b91f486a13eea5c421f3f0a3c796d183d6d95bedadb83d47cfbe20512a8bb5a6de32c7f87caa1676aec16da9fb9020dd41fe5353daf8092acef9c2d4155
docfiles size=120
RELOC/doc/latex/biblatex-publist/README details="Readme"
RELOC/doc/latex/biblatex-publist/biblatex-publist.pdf details="Package documentation"
@@ -40965,7 +40977,7 @@ catalogue-contact-repository https://github.com/jspitz/biblatex-publist
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-publist
catalogue-license lppl1.3
catalogue-topics biblatex
-catalogue-version 2.8
+catalogue-version 2.9
name biblatex-readbbl
category Package
@@ -43358,24 +43370,24 @@ catalogue-version 0.1
name bithesis
category Package
-revision 71133
+revision 71173
shortdesc Templates for the Beijing Institute of Technology
relocated 1
longdesc This package establishes a simple and easy-to-use LaTeX
longdesc template for Beijing Institute of Technology dissertations,
longdesc including general undergraduate theses and master theses.
-containersize 20788
-containerchecksum 87e72bad693d8da053615e1810ef075bd71a987bb99f17b35bf448fb32415bfca4a742bf8b6cee2ae59b5c5b7663f3c9690a7135ed69cd1219107f92ef94847e
-doccontainersize 751192
-doccontainerchecksum 4a51a522bf7a392afe0780eee15f1af53d1c9a18fb05935b0989e8fc340601efa69cbc05bf602757fba06b7c3efb4633a2d5bc880cea82c674bf5cf98304c3ed
+containersize 21136
+containerchecksum beff92580bd87ebe83eb93af50c8ced0baccf0711c9efb12319a4d841a1ad3402b690caec2352bee5fbc10e5a872fb24297f62d63ca166605c53dc187f57f1e6
+doccontainersize 751948
+doccontainerchecksum 0db34c90b28e32ddb356584ef767ed97bae512cf2ca89f5fc98e1048fe542c6632160838ff69f770a9d087763c56179c6d88b5569cd8ad6812f8b7e0053b5611
docfiles size=190
RELOC/doc/latex/bithesis/README.md details="Readme"
RELOC/doc/latex/bithesis/bithesis.pdf details="Package documentation" language="zh"
RELOC/doc/latex/bithesis/contributing-zh.md
RELOC/doc/latex/bithesis/contributing.md
RELOC/doc/latex/bithesis/dtx-style.sty
-srccontainersize 27488
-srccontainerchecksum 7b3a1b7601a16563b4ece6b791ee00fd567cbb891d03d5bdbb0441c5b780f99ea8fd40d53b746fce8dcb251e19369b2b067ae4f253b0cc0dba96c031be4aa80d
+srccontainersize 27816
+srccontainerchecksum e2ed4956bb221ad9a88675418f02a94f0a859559b1a9115a76993a67c20a3fd5766509f59412107585c5299878d2e6333b1bca9242ccaf3df6259976acde913f
srcfiles size=34
RELOC/source/latex/bithesis/bithesis.dtx
RELOC/source/latex/bithesis/bithesis.ins
@@ -43391,7 +43403,7 @@ catalogue-contact-support https://github.com/BITNP/BIThesis/discussions
catalogue-ctan /macros/unicodetex/latex/bithesis
catalogue-license lppl1.3c
catalogue-topics class dissertation doc-templ chinese expl3
-catalogue-version 3.7.6
+catalogue-version 3.7.7
name bitpattern
category Package
@@ -59459,16 +59471,16 @@ binfiles arch=x86_64-solaris size=1
name chktex
category TLCore
-revision 69783
+revision 71205
shortdesc Check for errors in LaTeX documents
longdesc The program reports typographic and other errors in LaTeX
longdesc documents. Filters are also provided for checking the LaTeX
longdesc parts of CWEB documents.
depend chktex.ARCH
-containersize 10232
-containerchecksum 49aeda17fe91741232a260b47b02a2c5cb0700091045d23728472c22429eaac722285bf4ed330279d91e68dc1a3dfac3ba517b90e8b5285917f13230c219ed9f
-doccontainersize 425796
-doccontainerchecksum 06c4e1a983d9c3c3d0e08e341492727a4c99bf6a7d9c9f85b2562e9a77260aaa0429bff53886dad508e22db5a8f1ea2261b97ee800774d8ba7abedad18189867
+containersize 10296
+containerchecksum bc4885e7be8dc032da7722d09493cf92e01d348dc807b83923fa67a2e64c5ec65b41984dae11b36e7ad309e94c837530468ca4b683cb332c083f0a3caf7af43a
+doccontainersize 425800
+doccontainerchecksum c5e74499b90b807f527acabcbe3cdf55e374b5320677c2e2c5b749997e21a8a3cb5aed394a4fd29aa777057b8a297328665d7d280632f8a69a7a0a368c7d766c
docfiles size=112
texmf-dist/doc/chktex/ChkTeX.pdf details="System documentation"
texmf-dist/doc/man/man1/chktex.1
@@ -59481,11 +59493,14 @@ runfiles size=8
texmf-dist/chktex/chktexrc
texmf-dist/scripts/chktex/chkweb.sh
texmf-dist/scripts/chktex/deweb.pl
-catalogue-contact-home http://www.nongnu.org/chktex/
+catalogue-contact-bugs https://savannah.nongnu.org/bugs/?group=chktex
+catalogue-contact-development https://savannah.nongnu.org/projects/chktex/
+catalogue-contact-home https://www.nongnu.org/chktex/
+catalogue-contact-repository https://git.savannah.nongnu.org/git/chktex.git/
catalogue-ctan /support/chktex
catalogue-license gpl2+
catalogue-topics debug-supp
-catalogue-version 1.7.8
+catalogue-version 1.7.9
name chktex.aarch64-linux
category TLCore
@@ -60689,7 +60704,7 @@ catalogue-version 10.5
name circuitikz
category Package
-revision 69757
+revision 71178
shortdesc Draw electrical networks with TikZ
relocated 1
longdesc The package provides a set of macros for naturally typesetting
@@ -60698,11 +60713,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 178132
-containerchecksum 5d2d8699c29a209f6f4eb1df363acfc1a7bcda8e7a1b110f50dfb65b97c8b09911a11528e7b1d8e5b64d9fdcf1f9fdf4feae40cf71df9a11b01cd13d64cde91e
-doccontainersize 1893448
-doccontainerchecksum 398f50f5b9d0e288a7cd91e0ab222aa20877138f4ddd1963c72caa5724539e1b37fbd54503a24f234270393c6c7f07667d6a39a05dbca6199e9a52785312beb1
-docfiles size=605
+containersize 179560
+containerchecksum d8816c8dc9f84ea4b6cf61c2ded304a10e831fe80126f904d32512fb5a29962c5303a7f9daa513004b96e61cfce6667d67e24364d254dfc41392df0192a89e42
+doccontainersize 2520088
+doccontainerchecksum 2c9b2d377eccd8d842a67f97d5aef0eaeee12d28210ab170d1252c8c2e06996ae5993318784148947984f0f054038bbb19d19ec5c0e30b8e18eeef289ada10b6
+docfiles size=768
RELOC/doc/context/third/circuitikz/circuitikz-context.pdf
RELOC/doc/context/third/circuitikz/circuitikz-context.tex
RELOC/doc/generic/circuitikz/CHANGELOG.md
@@ -60712,7 +60727,7 @@ docfiles size=605
RELOC/doc/latex/circuitikz/circuitikzmanual.tex
RELOC/doc/latex/circuitikz/compatibility.tex
RELOC/doc/latex/circuitikz/ctikzmanutils.sty
-runfiles size=3394
+runfiles size=3396
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-0.9.6.tex
@@ -60763,7 +60778,7 @@ catalogue-contact-repository https://github.com/circuitikz/circuitikz
catalogue-ctan /graphics/pgf/contrib/circuitikz
catalogue-license lppl gpl
catalogue-topics graphics diagram-circ pgf-tikz electronic
-catalogue-version 1.6.7
+catalogue-version 1.6.8
name circularglyphs
category Package
@@ -70625,7 +70640,7 @@ containerchecksum a8426893d3b9cfbddfffa383dc7898f7abe48271695dc6835abb2cda70ca19
name collection-fontsextra
category Collection
-revision 71123
+revision 71246
shortdesc Additional fonts
relocated 1
depend aboensis
@@ -70729,6 +70744,7 @@ depend crimsonpro
depend cryst
depend cuprum
depend cyklop
+depend cyrillic-modern
depend dancers
depend dantelogo
depend dejavu
@@ -70839,7 +70855,7 @@ depend kpfonts
depend kpfonts-otf
depend kurier
depend lato
-depend lato-math
+depend lete-sans-math
depend lexend
depend lfb
depend libertine
@@ -70987,8 +71003,8 @@ depend yfonts-t1
depend yinit-otf
depend ysabeau
depend zlmtt
-containersize 2040
-containerchecksum 3f962513c9dcb1f5fce0982c4b1de5edc64421c7b6b5c4c838819683c0b56792958ed3ea2268f6ab29064eae420148d1a7bf27439db0a428be0fb967d35a8750
+containersize 2056
+containerchecksum 9f3166bb69973743e71311b9105bd4fb50e9bf70e9c4cb506fcad2b4dddd849c898430edd0a2891f0c345c216885115eb66e18d69364a5870cbff5b2dbae274d
name collection-fontsrecommended
category Collection
@@ -71596,7 +71612,7 @@ containerchecksum 5fa87f174fc372c21b80ebe6b097525218da63892bc8445a29c24f2bfb015b
name collection-langfrench
category Collection
-revision 67951
+revision 71182
shortdesc French
relocated 1
longdesc Support for French and Basque.
@@ -71619,6 +71635,7 @@ depend e-french
depend epslatex-fr
depend expose-expl3-dunkerque-2019
depend facture
+depend faq-fr
depend formation-latex-ul
depend frenchmath
depend frletter
@@ -71649,7 +71666,7 @@ depend variations
depend visualfaq-fr
depend visualtikz
containersize 644
-containerchecksum 83be4aa190b32580ab6334a00785123be5678a95f84589dea2ccc2ce77a6328bf8954f28e683a9614b43a062901a28b3f6b060bd968876094aeab5b1f9aee816
+containerchecksum 985bee0167ad7aeb764ab8368c9170f55352f92b41393291b71e91f6b9d0a0cb746e538d97222b38b56249dc43ce955da4b6be908abdbb4732d2c6a1e72ba35c
name collection-langgerman
category Collection
@@ -72086,7 +72103,7 @@ containerchecksum 889eae40b82f31c7c4b3a17740399c763dabec7986fcb39261b252afff69a0
name collection-latexextra
category Collection
-revision 71063
+revision 71253
shortdesc LaTeX additional packages
relocated 1
longdesc A very large collection of add-on packages for LaTeX.
@@ -72315,6 +72332,7 @@ depend collection-latexrecommended
depend collection-pictures
depend colophon
depend color-edits
+depend colorblind
depend colordoc
depend colorframed
depend colorinfo
@@ -72970,6 +72988,7 @@ depend mathastext
depend mathexam
depend mathfam256
depend mathfont
+depend mathgreeks
depend maybemath
depend mcaption
depend mceinleger
@@ -73419,6 +73438,7 @@ depend svninfo
depend swfigure
depend swungdash
depend syntax
+depend synthslant
depend syntrace
depend synttree
depend tabbing
@@ -73519,6 +73539,7 @@ depend type1cm
depend typed-checklist
depend typeface
depend typoaid
+depend typog
depend typogrid
depend uassign
depend ucs
@@ -73603,6 +73624,7 @@ depend xfakebold
depend xfor
depend xhfill
depend xifthen
+depend ximera
depend xint
depend xkcdcolors
depend xkeymask
@@ -73637,8 +73659,8 @@ depend zref-clever
depend zref-vario
depend zwgetfdate
depend zwpagelayout
-containersize 7168
-containerchecksum 3e9bde7d81824e7f4b861d66b5f842832ab307090bfe002dbf46d0ed99c82a2ee87a1c8d11661b3fe7257ad15d81ec980f7692983bcddfc8fcf94bb6caeae3fd
+containersize 7180
+containerchecksum 50b2dfa369c0572271089ea9375e583dc3c1bc19f37bc65218e967c160f864d58575db2d6b7951994d2ea21e4bddddcd9eb9d5aa25114e99df9e192877875565
name collection-latexrecommended
category Collection
@@ -73842,7 +73864,7 @@ containerchecksum 2b0f8cb3ac13a978e4ea6687e5065cfd33332e96479ce5d89661c5a5620645
name collection-mathscience
category Collection
-revision 70842
+revision 71255
shortdesc Mathematics, natural sciences, computer science packages
relocated 1
depend 12many
@@ -74052,6 +74074,7 @@ depend resolsysteme
depend rest-api
depend revquantum
depend ribbonproofs
+depend rigidnotation
depend rmathbr
depend sankey
depend sasnrdisplay
@@ -74112,8 +74135,8 @@ depend youngtab
depend yquant
depend ytableau
depend zx-calculus
-containersize 1748
-containerchecksum 151b005ea6b6957e4065fb384cf4a8edc85595ee91e9639b9d715babecd0840f936c49da9af56dccbafe1f17a0b47e4a64a377809b7530108cfecf7b3d8f17e9
+containersize 1756
+containerchecksum ae32644818e56cfd2529e24854ac8422774261bd3f4d3d30555b640f5ea77bbf9784594f339b018dc092019d2cab91cce0482e9a692d1a45ed8c093cdd6783f2
name collection-metapost
category Collection
@@ -74220,7 +74243,7 @@ containerchecksum 26100feabd6d95d8b29f0160f7e9b86d06e5055387acc63fe6e47fa0e68156
name collection-pictures
category Collection
-revision 70530
+revision 71241
shortdesc Graphics, pictures, diagrams
relocated 1
longdesc Including TikZ, pict, etc., but MetaPost and PStricks are
@@ -74466,6 +74489,7 @@ depend tkz-elements
depend tkz-euclide
depend tkz-fct
depend tkz-graph
+depend tkz-grapheur
depend tkz-orm
depend tkz-tab
depend tkzexample
@@ -74485,12 +74509,12 @@ depend worldflags
depend xistercian
depend xpicture
depend xypic
-containersize 1684
-containerchecksum ee382a695fc29f8906fff420944140baaeab0b712c79bb3bf88585dfff619d3e82d2f72a163f8e01274442583c214b07ede64877b9c89f993a7a4aa99760ca54
+containersize 1680
+containerchecksum d4f47f535558eae61514b83a5a65c973ab5deb2e8cd146e5c1a651d7a47339114bb7f3a40436af773476b677c1255634b191305a78b2ac78ce0e2a9600def4fa
name collection-plaingeneric
category Collection
-revision 68675
+revision 71220
shortdesc Plain (La)TeX packages
relocated 1
longdesc Add-on packages and macros that work with plain TeX, often
@@ -74541,6 +74565,7 @@ depend graphics-pln
depend gtl
depend hlist
depend hyplain
+depend ifis-macros
depend inputnormalization
depend insbox
depend js-misc
@@ -74610,8 +74635,8 @@ depend xintsession
depend xlop
depend yax
depend zztex
-containersize 1004
-containerchecksum e162b0e32f52ea7ca60d5241ad6f653b29d2601eb05734ca0970224894e1acf3c21b1c160fdea652b8616f19cce5e812d5ba78ef10aa3cce784a90aebea960ef
+containersize 1008
+containerchecksum 4e54429ff7cb12037af1e7ae614b41000fc3dfa855e9bc1d22000e820836836843c1dab130c4629f882d189f64a2352768b1965b63075bf45e6e9e0189f0746c
name collection-pstricks
category Collection
@@ -74738,7 +74763,7 @@ containerchecksum 508276fe37018f3d9773fc7cda0cb37edcdd28e9cf8ab54ed5be16b07c2066
name collection-publishers
category Collection
-revision 70716
+revision 71147
shortdesc Publisher styles, theses, etc.
relocated 1
depend aastex
@@ -74910,6 +74935,7 @@ depend nwafuthesis
depend nwejm
depend onrannual
depend opteng
+depend osda
depend oststud
depend oup-authoring-template
depend philosophersimprint
@@ -75034,8 +75060,8 @@ depend yathesis
depend yazd-thesis
depend yb-book
depend york-thesis
-containersize 1768
-containerchecksum fe365d313dbed773be8561aad3586103c1673b8ee9a2a5c7dee094210b5e19017bd3b3065cb867e1c0ac87198d46d78cb328392026d75daee5afef2d7ad1d032
+containersize 1764
+containerchecksum 1d6efc18a59c185e21b631eac7879c17918e59d6fd367ae8e218427cfa925c2695ca74b9dfca151da6c4edd4c828ee5b6c4e9459c059e098798a85f935b425d1
name collection-texworks
category Collection
@@ -75208,6 +75234,43 @@ catalogue-license lppl1.3
catalogue-topics editorial colour
catalogue-version 1.1
+name colorblind
+category Package
+revision 71253
+shortdesc Easy colorblind-safe typesetting
+relocated 1
+longdesc In colorblind-safe documents, the contents are presented in a
+longdesc way that the same information is conveyed to readers regardless
+longdesc of a potential color vision deficiency. This package provides
+longdesc the tools necessary for colorblind-safe typesetting in LaTeX.
+longdesc It provides color schemes for a wide range of applications. The
+longdesc most commonly used schemes are qualitative schemes, providing
+longdesc easily distinguishable colors for use in graphics, but also for
+longdesc text coloring or highlighting. Additionally, diverging and
+longdesc sequential schemes are included which can be used for encoding
+longdesc quantitative information using colors. This package
+longdesc incorporates colorblind-safeness into the writing process,
+longdesc making it both less cumbersome and less error-prone.
+containersize 3576
+containerchecksum 84448c6f7029aa50ee4e82afe0e3c06edb226f6477cf6d437586538d1c16b0e36e7e061b28b3415a7886424356291c9b150e0811f91f454f2a1b50321dd5120d
+doccontainersize 108048
+doccontainerchecksum e123e6b7646fd48ab45e32eb4583cd43bd523cad09c412290b99b39921f7760151bc6ba5f6eacb98d9245dc25d630031f7cbed10fcb519d9502f6df13ac3e573
+docfiles size=33
+ RELOC/doc/latex/colorblind/ChangeLog
+ RELOC/doc/latex/colorblind/README.md details="Readme"
+ RELOC/doc/latex/colorblind/bib.bib
+ RELOC/doc/latex/colorblind/documentation.pdf details="Package documentation"
+ RELOC/doc/latex/colorblind/documentation.tex
+runfiles size=3
+ RELOC/tex/latex/colorblind/colorblind.sty
+catalogue-contact-bugs https://github.com/simon-pfahler/colorblind/issues
+catalogue-contact-home https://github.com/simon-pfahler/colorblind
+catalogue-contact-repository https://github.com/simon-pfahler/colorblind
+catalogue-ctan /macros/latex/contrib/colorblind
+catalogue-license lppl1.3c
+catalogue-topics typesetting colour
+catalogue-version 1.0
+
name colordoc
category Package
revision 18270
@@ -89369,7 +89432,7 @@ catalogue-version 1.0
name csvsimple
category Package
-revision 69494
+revision 71274
shortdesc Simple CSV file processing
relocated 1
longdesc The package provides a simple LaTeX interface for the
@@ -89379,11 +89442,11 @@ longdesc usage. Filtering and table generation are especially supported;
longdesc however, this lightweight tool offers no support for data
longdesc sorting or data base storage. The package depends on etoolbox,
longdesc ifthen, pgfrcs, pgfkeys, and shellesc.
-containersize 11828
-containerchecksum ef7d09c254982998b009c4856b69b263e7ee5df3b54c7513aa5459651d12989f38b1593ca9e3d4d3de51ae6cf8b02c89a8a9298213c7872157712fb4c1c61900
-doccontainersize 1740616
-doccontainerchecksum c6934e0bfc8448008c0fbe7ed06da871aa9a9073f7948551881e00dd8ca0d31f7da5132d14282a9b08564a2aa8e875f36cf67db900b94dcf4381530a2b6843c1
-docfiles size=584
+containersize 11820
+containerchecksum b095d4f8dd210a4967d5465baf961f5a99aa331690a879c78444b2a086de3a53106d8aca5a1359056f304c2b104886dc0f83039810434cabcd7d5e7a258ba9b4
+doccontainersize 1754600
+doccontainerchecksum 2e9367ff9a57db31adeaf37fac0b38a61d506d5e9f4c2e5784cdd1064c289659f19b5eb5cba7f3aef72a8f6ce012f9425bea13a1530457b488e5baba5cacee13
+docfiles size=589
RELOC/doc/latex/csvsimple/CHANGES.md
RELOC/doc/latex/csvsimple/README.md details="Readme"
RELOC/doc/latex/csvsimple/amountsort.xml
@@ -89412,7 +89475,7 @@ catalogue-also csvtools datatool
catalogue-ctan /macros/latex/contrib/csvsimple
catalogue-license lppl1.3
catalogue-topics data-import data-disp csv-support expl3
-catalogue-version 2.6.0
+catalogue-version 2.6.1
name ctable
category Package
@@ -92480,6 +92543,353 @@ binfiles arch=x86_64-solaris size=2
bin/x86_64-solaris/rubibtex
bin/x86_64-solaris/rumakeindex
+name cyrillic-modern
+category Package
+revision 71183
+shortdesc Slightly modified computer modern fonts with Cyrillics
+relocated 1
+longdesc The Cyrillic Modern fonts are based on the Computer Modern
+longdesc fonts designed in Metafont by D. E. Knuth and released in Type
+longdesc 1 format by the American Mathematical Society under the SIL
+longdesc Open Font License (OFL). The Cyrillic Modern fonts are intended
+longdesc to make the Cyrillic letters with classical shapes typical to
+longdesc the modern fonts. Currently, the fonts add support for the
+longdesc Russian language, the numero sign and quotation marks required
+longdesc for Russian typesetting.
+execute addMap nm.map
+containersize 3247356
+containerchecksum 46c13990603ac88cc304892f27251c49c6c257bdccf7df2eb95d1d759b83ad29e153eee28d3be8d6cabe69c4088f95a6aea5a39163234343f1cb2d1e5d5ad971
+doccontainersize 590316
+doccontainerchecksum 0c1bca5050293c6b813854575a295d25a03a126b71dbec076d95e6e65beea9657be4a17a9d163818bf56a780a81e6003b7cef798d5128a69fd128f5742b8e56f
+docfiles size=165
+ RELOC/doc/fonts/cyrillic-modern/FontLog.txt
+ RELOC/doc/fonts/cyrillic-modern/INSTALL
+ RELOC/doc/fonts/cyrillic-modern/OFL-FAQ.txt
+ RELOC/doc/fonts/cyrillic-modern/OFL.txt
+ RELOC/doc/fonts/cyrillic-modern/USAGE
+ RELOC/doc/fonts/cyrillic-modern/cyrillic-modern-sample.pdf details="Example of use"
+ RELOC/doc/fonts/cyrillic-modern/cyrillic-modern-sample.tex
+runfiles size=1589
+ RELOC/dvips/cyrillic-modern/config.nm
+ RELOC/fonts/afm/public/cyrillic-modern/nmb10.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmbx10.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmbx12.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmbx5.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmbx6.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmbx7.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmbx8.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmbx9.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmbxsl10.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmbxti10.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmcsc10.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmmi10.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmmi12.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmmi5.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmmi6.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmmi7.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmmi8.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmmi9.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmmib10.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmmib5.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmmib6.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmmib7.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmmib8.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmmib9.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmr10.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmr12.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmr17.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmr5.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmr6.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmr7.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmr8.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmr9.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmsl10.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmsl12.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmsl8.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmsl9.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmss10.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmss12.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmss17.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmss8.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmss9.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmssbx10.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmssdc10.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmssi10.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmssi12.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmssi17.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmssi8.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmssi9.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmti10.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmti12.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmti7.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmti8.afm
+ RELOC/fonts/afm/public/cyrillic-modern/nmti9.afm
+ RELOC/fonts/enc/dvips/cyrillic-modern/nm-7t.enc
+ RELOC/fonts/enc/dvips/cyrillic-modern/nm-7tsc.enc
+ RELOC/fonts/enc/dvips/cyrillic-modern/nm-7tti.enc
+ RELOC/fonts/enc/dvips/cyrillic-modern/nm-ls2.enc
+ RELOC/fonts/enc/dvips/cyrillic-modern/nm-t2a.enc
+ RELOC/fonts/enc/dvips/cyrillic-modern/nm-t2asc.enc
+ RELOC/fonts/enc/dvips/cyrillic-modern/nm-t2ati.enc
+ RELOC/fonts/enc/dvips/cyrillic-modern/nmmi.enc
+ RELOC/fonts/map/dvips/cyrillic-modern/nm.map
+ RELOC/fonts/opentype/public/cyrillic-modern/nmb10.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmbx10.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmbx12.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmbx5.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmbx6.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmbx7.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmbx8.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmbx9.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmbxsl10.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmbxti10.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmcsc10.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmmi10.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmmi12.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmmi5.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmmi6.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmmi7.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmmi8.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmmi9.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmmib10.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmmib5.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmmib6.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmmib7.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmmib8.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmmib9.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmr10.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmr12.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmr17.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmr5.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmr6.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmr7.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmr8.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmr9.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmsl10.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmsl12.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmsl8.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmsl9.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmss10.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmss12.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmss17.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmss8.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmss9.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmssbx10.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmssdc10.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmssi10.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmssi12.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmssi17.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmssi8.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmssi9.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmti10.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmti12.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmti7.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmti8.otf
+ RELOC/fonts/opentype/public/cyrillic-modern/nmti9.otf
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmb10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmbx10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmbx12.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmbx5.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmbx6.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmbx7.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmbx8.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmbx9.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmbxsl10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmbxti10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmcsc10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmr10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmr12.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmr17.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmr5.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmr6.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmr7.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmr8.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmr9.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmsl10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmsl12.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmsl8.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmsl9.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmss10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmss12.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmss17.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmss8.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmss9.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmssbx10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmssdc10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmssi10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmssi12.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmssi17.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmssi8.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmssi9.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmti10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmti12.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmti7.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmti8.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ls2-nmti9.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmb10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmbx10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmbx12.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmbx5.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmbx6.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmbx7.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmbx8.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmbx9.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmbxsl10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmbxti10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmcsc10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmmi10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmmi12.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmmi5.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmmi6.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmmi7.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmmi8.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmmi9.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmmib10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmmib5.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmmib6.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmmib7.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmmib8.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmmib9.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmr10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmr12.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmr17.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmr5.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmr6.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmr7.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmr8.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmr9.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmsl10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmsl12.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmsl8.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmsl9.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmss10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmss12.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmss17.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmss8.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmss9.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmssbx10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmssdc10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmssi10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmssi12.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmssi17.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmssi8.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmssi9.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmti10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmti12.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmti7.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmti8.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/nmti9.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmb10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmbx10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmbx12.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmbx5.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmbx6.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmbx7.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmbx8.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmbx9.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmbxsl10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmbxti10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmcsc10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmr10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmr12.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmr17.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmr5.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmr6.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmr7.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmr8.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmr9.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmsl10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmsl12.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmsl8.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmsl9.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmss10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmss12.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmss17.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmss8.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmss9.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmssbx10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmssdc10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmssi10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmssi12.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmssi17.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmssi8.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmssi9.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmti10.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmti12.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmti7.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmti8.tfm
+ RELOC/fonts/tfm/public/cyrillic-modern/ot1-nmti9.tfm
+ RELOC/fonts/type1/public/cyrillic-modern/nmb10.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmbx10.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmbx12.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmbx5.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmbx6.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmbx7.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmbx8.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmbx9.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmbxsl10.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmbxti10.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmcsc10.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmmi10.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmmi12.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmmi5.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmmi6.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmmi7.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmmi8.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmmi9.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmmib10.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmmib5.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmmib6.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmmib7.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmmib8.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmmib9.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmr10.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmr12.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmr17.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmr5.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmr6.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmr7.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmr8.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmr9.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmsl10.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmsl12.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmsl8.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmsl9.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmss10.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmss12.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmss17.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmss8.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmss9.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmssbx10.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmssdc10.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmssi10.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmssi12.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmssi17.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmssi8.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmssi9.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmti10.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmti12.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmti7.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmti8.pfb
+ RELOC/fonts/type1/public/cyrillic-modern/nmti9.pfb
+ RELOC/tex/latex/cyrillic-modern/ls2enc.def
+ RELOC/tex/latex/cyrillic-modern/ls2nmr.fd
+ RELOC/tex/latex/cyrillic-modern/ls2nmss.fd
+ RELOC/tex/latex/cyrillic-modern/nm.sty
+ RELOC/tex/latex/cyrillic-modern/omlnmm.fd
+ RELOC/tex/latex/cyrillic-modern/ot1nmr.fd
+ RELOC/tex/latex/cyrillic-modern/ot1nmss.fd
+ RELOC/tex/latex/cyrillic-modern/t2anmr.fd
+ RELOC/tex/latex/cyrillic-modern/t2anmss.fd
+ RELOC/tex/latex/cyrillic-modern/unmr.fd
+ RELOC/tex/latex/cyrillic-modern/unmss.fd
+catalogue-contact-home https://sourceforge.net/projects/cyrillic-modern/
+catalogue-contact-repository https://sourceforge.net/p/cyrillic-modern/code/
+catalogue-ctan /fonts/cyrillic/cyrillic-modern
+catalogue-license ofl
+catalogue-topics font font-body font-cm font-cyrillic font-otf font-proportional font-sans font-serif font-supp font-type1
+catalogue-version 0.4
+
name cyrplain
category Package
revision 45692
@@ -106573,7 +106983,7 @@ catalogue-topics notes editorial
name easybook
category Package
-revision 71125
+revision 71280
shortdesc Easily typesetting Chinese theses or books
relocated 1
longdesc easybook is a pure academic template created based on the
@@ -106584,16 +106994,16 @@ longdesc providing multiple commands and interfaces allows users to
longdesc easily customize the thesis template. Its basic macro package
longdesc easybase can also be used with CTeX and standard document
longdesc classes.
-containersize 17852
-containerchecksum ea64568c7e8ec8978a66554c106c3abcb17139130c98dd2bc0cb16fd5bf908becc3268e1113b2909fccf46f072abd3fdcdc8c7905e71263cd8e5e819e0ba7311
-doccontainersize 667248
-doccontainerchecksum 054c4d7d1b86da952cee06d59f8ffe26abd4ec90df7059f8b720713b2af002d379651edad6a6b508b1cf43fe387280bddf8f4df1978ca90cac07e87a18abeb62
-docfiles size=183
+containersize 18188
+containerchecksum 5ebdbb434749975dc1136ab015de6492a2b855a7ee3f4ff73a80491b7ac3adaa481ab18d181ef93547dc20aed2d441ece92870b39f6803e93cd2d3431f74edd5
+doccontainersize 659748
+doccontainerchecksum 636695d88600d69423319bfb970d0c58e8e09ed89cbaf31ab1c2be70f1ada5a9f811658806a5f7f05ec66d1307d6d2ef023c66266b8cb29fe4bd263a3c5b3580
+docfiles size=182
RELOC/doc/latex/easybook/README.md details="Readme"
RELOC/doc/latex/easybook/easybook.pdf details="Package documentation" language="zh"
RELOC/doc/latex/easybook/easybook.tex
-srccontainersize 17740
-srccontainerchecksum 672291750160a865e187ff525f567050d340866dfe9dc09e7d2be3451901d297263ecb9d6b13af00ee416192d9f682012d2fd59d6ae8ae2a152f916a39c7b467
+srccontainersize 18080
+srccontainerchecksum 8672c6ccdcf81204f0781e0ce4261f21ee187eb667149db03d7183bab92aa440795e42e746561629dfbbf9602f6cb31e7c07a5152f1cb56e8a53895a7f0522f8
srcfiles size=22
RELOC/source/latex/easybook/easybook.dtx
RELOC/source/latex/easybook/easybook.ins
@@ -106606,7 +107016,7 @@ catalogue-contact-repository https://gitee.com/texno3/easybook
catalogue-ctan /macros/latex/contrib/easybook
catalogue-license lppl1.3c
catalogue-topics book-pub dissertation class doc-templ chinese expl3
-catalogue-version 2024bc
+catalogue-version 2024br
name easydtx
category Package
@@ -112316,7 +112726,7 @@ catalogue-version 1.0.1
name els-cas-templates
category Package
-revision 62931
+revision 71189
shortdesc Elsevier updated LaTeX templates
relocated 1
longdesc This bundle provides two class and corresponding template files
@@ -112325,14 +112735,18 @@ longdesc Elsevier's updated workflow. One of the sets is meant for
longdesc one-column, the other for two-column layout. These are now
longdesc accepted for submitting articles both in Elsevier's electronic
longdesc submission system and elsewhere.
-containersize 54856
-containerchecksum ecb340e796a94aab2e26abeb7d4d72ba5d68adcb15a0d99d3511236b8be5f8ab21d8d32995b1dcf1b0a3ea15eb321df75bbc016c52630b06498b75e9e5f164f8
-doccontainersize 349288
-doccontainerchecksum b616f6a170484f75dea1134f0570133b63ba40fd1bd474e13ae3e46249224b8ee7a777d0d18e11e828d0e5e59c2635acfecea99537060a7cea03fc2761dca892
-docfiles size=262
+containersize 54872
+containerchecksum cdea81b550a3feb99a1667fb78b1aa0632a6be669ce16fb7e6b0e5b5642c18201b194ce2e9f614b86e08a27479860b66d935dc69ff236fba3f7ba17cb32419a5
+doccontainersize 1291616
+doccontainerchecksum 4177a89c9733478ddd47d10f88583b6d519f64bd3bdbd7baabfc77897c66e6601eca07290d7f9d5c9cfde6dc1173640a6165a9f90dbf408ba6d51597358ad97e
+docfiles size=897
RELOC/doc/latex/els-cas-templates/README details="Readme"
+ RELOC/doc/latex/els-cas-templates/cas-dc-sample.pdf details="Example of use (two columns)"
+ RELOC/doc/latex/els-cas-templates/cas-dc-sample.tex
RELOC/doc/latex/els-cas-templates/cas-dc-template.tex
RELOC/doc/latex/els-cas-templates/cas-refs.bib
+ RELOC/doc/latex/els-cas-templates/cas-sc-sample.pdf details="Example of use (one column)"
+ RELOC/doc/latex/els-cas-templates/cas-sc-sample.tex
RELOC/doc/latex/els-cas-templates/cas-sc-template.tex
RELOC/doc/latex/els-cas-templates/doc/dc-sample.pdf
RELOC/doc/latex/els-cas-templates/doc/elsdoc-cas.pdf details="Package documentation"
@@ -112342,6 +112756,9 @@ docfiles size=262
RELOC/doc/latex/els-cas-templates/doc/pdfwidgets.sty
RELOC/doc/latex/els-cas-templates/doc/rvdtx.sty
RELOC/doc/latex/els-cas-templates/doc/sc-sample.pdf
+ RELOC/doc/latex/els-cas-templates/figs/cas-grabs.pdf
+ RELOC/doc/latex/els-cas-templates/figs/cas-munnar-2024.jpg
+ RELOC/doc/latex/els-cas-templates/figs/cas-pic1.pdf
RELOC/doc/latex/els-cas-templates/manifest.txt
runfiles size=43
RELOC/bibtex/bst/els-cas-templates/cas-model2-names.bst
@@ -112355,9 +112772,9 @@ runfiles size=43
RELOC/tex/latex/els-cas-templates/thumbnails/cas-twitter.jpeg
RELOC/tex/latex/els-cas-templates/thumbnails/cas-url.jpeg
catalogue-ctan /macros/latex/contrib/els-cas-templates
-catalogue-license lppl1.2
+catalogue-license lppl
catalogue-topics class doc-templ journalpub
-catalogue-version 2.3
+catalogue-version 2.4
name elsarticle
category Package
@@ -121078,17 +121495,17 @@ catalogue-version 2.1
name fadingimage
category Package
-revision 71001
+revision 71190
shortdesc Add full width fading pictures at the top or bottom of a page
relocated 1
longdesc This package provides commands for adding full width fading
longdesc pictures at the top or bottom of a page. It is based on TikZ
longdesc with the fadings library. Welcome to feedback bugs or ideas via
longdesc email to xiamyphys@gmail.com.
-containersize 1300
-containerchecksum 182159c463004b1d023cd331cb628f66c11c802b6e0595b5e67e159d314c7646aec0897700ee3019bd0b4b9cd26c3dfb3a5adc8bd8ad0b7440aeb0bd7151c27e
-doccontainersize 142572
-doccontainerchecksum 225936f9350d3cb303446c3f1c7df518ff0187b8db0f503475eb55537ad6dbdfcee98b3a6d45c534960294c77b65c50538f7b28f41ec5e0c5b92df56018e2144
+containersize 1336
+containerchecksum da3d6cce62d835fb3c449f74a2473502020d015872a5ccb681221e0f4eaf474249eaeb523cb8e19f76e4be86441ae4dc12ecc351353fb0e8f3f0fe6921aa1c03
+doccontainersize 141300
+doccontainerchecksum 94ea4ed145a152379324712b747537dc2f8127dce1ac7449ba9696c6b6aa9079888c35a8d34087a490e5c5d50889ca4468986d59f3ae8c20352963e01e5f94f7
docfiles size=64
RELOC/doc/latex/fadingimage/Beautiful-realities.jpeg
RELOC/doc/latex/fadingimage/License
@@ -121097,15 +121514,16 @@ docfiles size=64
RELOC/doc/latex/fadingimage/fadingimage.tex
runfiles size=1
RELOC/tex/latex/fadingimage/fadingimage.sty
-catalogue-contact-announce https://t.me/hsiastexcafe
+catalogue-contact-announce https://qm.qq.com/q/RGFmHwBecC
catalogue-contact-bugs https://github.com/xiamyphys/fadingimage/issues
catalogue-contact-development https://github.com/xiamyphys
+catalogue-contact-home https://github.com/xiamyphys/fadingimage
catalogue-contact-repository https://github.com/xiamyphys/fadingimage
catalogue-contact-support https://qm.qq.com/q/RGFmHwBecC
catalogue-ctan /macros/latex/contrib/fadingimage
catalogue-license lppl1.3c
catalogue-topics background graphics-incl pgf-tikz
-catalogue-version 0.2a
+catalogue-version 0.3a
name fail-fast
category Package
@@ -121724,6 +122142,50 @@ catalogue-license gpl
catalogue-topics font chinese font-cjk font-otf
catalogue-version 0.3
+name faq-fr
+category Package
+revision 71182
+shortdesc French LaTeX FAQ (sources)
+relocated 1
+longdesc (English version below) Ce package contient les sources de la
+longdesc faq LaTeX francophone, actuellement maintenue a jour sur un
+longdesc wiki ouvert a tous: https://www.latex-fr.net/ Si vous souhaitez
+longdesc lire la FAQ, nous vous conseillons de consulter URL ci-dessus.
+longdesc Vous pourrez egalement vous ouvrir un compte sur le wiki pour
+longdesc participer au projet (en francais). Toutes les contributions
+longdesc sont les bienvenues. Ce package est essentiellement mis a
+longdesc disposition sur le CTAN pour encourager la reutilisation de ce
+longdesc contenu, et pour en conserver une copie perenne. Le fichier
+longdesc "REUSE" contient les informations techniques pour la
+longdesc reutilisation. English version: This package contains the
+longdesc source files of the French-speaking FAQ, now hosted on an open
+longdesc wiki: https://www.latex-fr.net/ If you just want to read the
+longdesc FAQ, please visit the URL above. You're also welcome if you
+longdesc want to contribute to this resource (in French): just request
+longdesc an account, it's open to everyone. This package is on CTAN
+longdesc mostly to encourage reuse, and for archival purposes. Read the
+longdesc "REUSE" file to get technical data about reusing the contents.
+containersize 972
+containerchecksum 5a74db071038309d3c0277e771bf026b657436acd050116bb015c18efd377b6d53ce3ebdb21a54025db97ed17a7410c6eea4b5dffe41717688f65468ca3e1fdd
+doccontainersize 3874888
+doccontainerchecksum 8113c9f033faf987f8cfa78b96cdb1bf65a5e847e5ec11634df0153a0b806dd19f708eae1351c95f3ad2a3b2b1996de42ea6e4f27071dd79f69ac59047f5d5d0
+docfiles size=1134
+ RELOC/doc/latex/faq-fr/FAQ-fr_pages.tar.gz
+ RELOC/doc/latex/faq-fr/FAQ_leaflet_fr.pdf details="Leaflet"
+ RELOC/doc/latex/faq-fr/README details="Readme"
+ RELOC/doc/latex/faq-fr/REUSE
+ RELOC/doc/latex/faq-fr/VERSION
+ RELOC/doc/latex/faq-fr/legacy_versions/LaTeX-FAQ-francaise_2001.tar.gz
+ RELOC/doc/latex/faq-fr/legacy_versions/README details="Readme"
+ RELOC/doc/latex/faq-fr/legacy_versions/README.fr
+ RELOC/doc/latex/faq-fr/legacy_versions/faqfr-20041111-3.00.alpha.pdf
+ RELOC/doc/latex/faq-fr/statistics.pdf
+catalogue-contact-announce https://www.latex-fr.net/feed.php
+catalogue-contact-home https://www.latex-fr.net/
+catalogue-ctan /help/LaTeX-FAQ-francaise
+catalogue-license cc-by-sa-4
+catalogue-topics faq french-doc
+
name fascicules
category Package
revision 54080
@@ -132019,15 +132481,15 @@ catalogue-version 0.7.3
name fontscale
category Package
-revision 71126
+revision 71281
shortdesc A flexible interface for setting font sizes
relocated 1
longdesc This package provides an interface for selecting (arbitrary)
longdesc font sizes and associated values.
-containersize 6600
-containerchecksum a09b1417d5c39575d30964ed3330c1d8fb6dd8a2c8b74483f942c2ef56540eb318708977a898e6e3a4fa97d9d04f46a92ac3f664be78cdcc43e4694222e4d928
-doccontainersize 123584
-doccontainerchecksum 8460cd6c0a2d64ef8bee8399288f68940515baadfd02987b996e6ff832e78dbbe7406204f60c2a934b6cb06ed6d6102c80da241f4563a85c7d8c1f5a57e18c92
+containersize 6984
+containerchecksum abc72c4fc716046f5221baa878894f93500a52995664c63711f92d99a318b8d8eb96b5a6a88a076a5ef446c1687e6f749a5a11074368d5c2412f39c8d575b61a
+doccontainersize 123808
+doccontainerchecksum 14a222ac99eff6caa021a68e11826cefa1d4f4b3afd2e4527193c2ab269f2d0802d4665f31408f98e7e845fde62b47ee28bd2a8e8f61243665029af061f36830
docfiles size=42
RELOC/doc/latex/fontscale/CHANGELOG.md
RELOC/doc/latex/fontscale/README.txt details="Readme"
@@ -132037,14 +132499,14 @@ docfiles size=42
RELOC/doc/latex/fontscale/fontscale-manual-table-modular-musical.tex
RELOC/doc/latex/fontscale/fontscale-manual.pdf details="Package documentation"
RELOC/doc/latex/fontscale/fontscale-manual.tex
-runfiles size=13
+runfiles size=12
RELOC/tex/latex/fontscale/fontscale.sty
catalogue-also fix-cm scrartcl
catalogue-contact-repository https://github.com/beeryoliver/fontscale
catalogue-ctan /macros/latex/contrib/fontscale
catalogue-license lppl1.3c
catalogue-topics expl3 font-sel
-catalogue-version 1.2.2
+catalogue-version 1.3.0
name fontsetup
category Package
@@ -132141,7 +132603,7 @@ catalogue-version 0.8.5
name fontspec
category Package
-revision 71101
+revision 71237
shortdesc Advanced font selection in XeLaTeX and LuaLaTeX
relocated 1
longdesc Fontspec is a package for XeLaTeX and LuaLaTeX. It provides an
@@ -132155,19 +132617,19 @@ depend l3kernel
depend l3packages
depend lm
depend xunicode
-containersize 27364
-containerchecksum 8540ae95254b1d13a21c42455a0a094a17df63b950f628001ed09a5d07164d6c550cb7806fcb44069aeae68da2667427539da2dca16c7f1a7b6809bfb3d57a48
-doccontainersize 1155292
-doccontainerchecksum e36a581e4d954b05009329bcd285c0c6d741b3b69fb9d3624208a994b0a334daccea4734699d79426264050f4c4382b75f6f2a3d773f1193f32eec27a97be9db
-docfiles size=308
+containersize 27416
+containerchecksum 4522aa49135438eef9b8b7a426f7c31a354fd672b59be0914319bb059c95c53c4e160fe9038e81160aef4e833d6390518689a1c2e8ff41873810f69ac4af6868
+doccontainersize 1157776
+doccontainerchecksum 8cfd96fa7324af42ef712bbdfee065b54af7026aef2c0818277bb0318dda8c6d6406ecc8e76c91676b605693e8dc364e0bdcee63aa823cd309f584adf84627e7
+docfiles size=311
RELOC/doc/latex/fontspec/CHANGES.md
RELOC/doc/latex/fontspec/LICENSE
RELOC/doc/latex/fontspec/README.md details="Package README"
RELOC/doc/latex/fontspec/fontspec-code.pdf
RELOC/doc/latex/fontspec/fontspec-example.tex
RELOC/doc/latex/fontspec/fontspec.pdf details="Package documentation"
-srccontainersize 85824
-srccontainerchecksum a37dd389b0a0b8563ed8258ef5450c18073af199f141c6df967ffb0b60d2b088e8b9237077f2782b686bffe5043256dfb91b374b30683bfd40ff682a5aed2cb8
+srccontainersize 85944
+srccontainerchecksum ba56d0d9ab9a653f0564b4e293580be8dc43c867f7c4caf63ae1927799f41f1ee45059428a6f60a93b5f57df22b024d8173a99cd8fb1eb9d285160553a1bdfda
srcfiles size=122
RELOC/source/latex/fontspec/fontspec-code-api.dtx
RELOC/source/latex/fontspec/fontspec-code-closing.dtx
@@ -132215,7 +132677,7 @@ catalogue-contact-repository https://github.com/latex3/fontspec/
catalogue-ctan /macros/unicodetex/latex/fontspec
catalogue-license lppl1.3c
catalogue-topics font-sel luatex xetex
-catalogue-version 2.9b
+catalogue-version 2.9e
name fonttable
category Package
@@ -134311,35 +134773,35 @@ catalogue-version 1.3
name frenchmath
category Package
-revision 70158
+revision 71205
shortdesc Typesetting mathematics according to French rules
relocated 1
longdesc The package provides: capital letters in roman (upright shape)
longdesc in mathematical mode according to French rule (can be
-longdesc optionnally disabled), correct spacing in math mode after
+longdesc optionally disabled), correct spacing in math mode after
longdesc commas, before a semicolon and around square brackets, some
longdesc useful macros and aliases for symbols used in France: \infeg,
longdesc \supeg, \paral, ... several macros for writing french operator
longdesc names like pgcd, ppcm, Card, rg, Vect, ... optionally lowercase
longdesc Greek letters in upright shape,
-containersize 2960
-containerchecksum ab4922e2fd68c2fe2636fab30eed29523fa6f60d0197a1682d098ccf39b3bc59d07c2a4bfa2c6136a1e55f595e8beb5933d746df598bdd2b44d7dee1c9da71f1
-doccontainersize 580692
-doccontainerchecksum 393d9f80f9bfdde4b4f0b34309c888ee95fab2a2b4faf9bb33d76e1cb162160b98f522cb799f3522dac262d0405f240b02c8fb455b09fe092fb4eb6d35279c35
-docfiles size=143
+containersize 2532
+containerchecksum e6a6780876392fea06187437e6ebd06933f7bab1808dbed342c0a5a9d6c0e362f4b2b4dd47436f636bd563c9ddd602d16a6d60c3fd35827c951e8b7b2e4d270d
+doccontainersize 865076
+doccontainerchecksum dd0ffeca213fa87e02637b76ca96b5090612c6694ff76af869ba8e64c93d3136c98cb0d2b1d150a71e33bf17bcc1205d428509c35af3b463aa9ad604f62de66a
+docfiles size=213
RELOC/doc/latex/frenchmath/README.md details="Readme"
RELOC/doc/latex/frenchmath/frenchmath.pdf details="Package documentation" language="fr"
-srccontainersize 15448
-srccontainerchecksum 0cf50c15e208170ab61f332b2cf7b794b948476bc48b54a0b32209471917d32d00d71a5532f241621c05accc84e8ac55d0759891286493ac6e949510504cc28a
+srccontainersize 16320
+srccontainerchecksum 7127370085469cb414f0c520ba2ba906d59504890fe77a61290cc2973f0db0018f241636d8cb0b25795fe8180f42c2a2262d8a762b3cf3cf69eddaeeea32a594
srcfiles size=13
RELOC/source/latex/frenchmath/frenchmath.dtx
RELOC/source/latex/frenchmath/frenchmath.ins
-runfiles size=3
+runfiles size=2
RELOC/tex/latex/frenchmath/frenchmath.sty
catalogue-ctan /macros/latex/contrib/frenchmath
catalogue-license lppl1.3
catalogue-topics maths french
-catalogue-version 2.10
+catalogue-version 3.1
name frimurer
category Package
@@ -134814,7 +135276,7 @@ catalogue-version 1.2
name fvextra
category Package
-revision 70838
+revision 71282
shortdesc Extensions and patches for fancyvrb
relocated 1
longdesc fvextra provides several extensions to fancyvrb, including
@@ -134822,16 +135284,17 @@ longdesc automatic line breaking and improved math mode. It also patches
longdesc some fancyvrb internals. Parts of fvextra were originally
longdesc developed as part of pythontex and minted.
depend fancyvrb
-containersize 13728
-containerchecksum 28446e618ac63cbe3067916e91b592c1f3f7030cee91747cbea6db24a8aa7d26a2752032032a9705bc007ac91caf40e82a7d3a5eb05bb6af1ccefba924653e3f
-doccontainersize 882620
-doccontainerchecksum a635fc7d433baa1b109307f2d5f1a82de6fa341a44d2533db1f068533275574d9e817f64230baf1c2368e0d5e220d34e5edd34ac4779276255f6a52139b75c4f
-docfiles size=222
+containersize 13820
+containerchecksum e50a98062d3cca03dd9c075ec42573cc448131cf80778584d0baeeca2f428b84770944c58f0e79bbe81e914a3b45c1a44bca276f20619b212faf81842402089e
+doccontainersize 876892
+doccontainerchecksum bedd169543f5dec34126609c4cc398d40220dc4c0d1a0e6f8dfc5c57b0d5ab08d8c5afba414b277a05cd43f8f9ecb314f8696d794fd421cde6f3b4fde19bcda9
+docfiles size=223
+ RELOC/doc/latex/fvextra/CHANGELOG.md
RELOC/doc/latex/fvextra/README details="Readme"
RELOC/doc/latex/fvextra/fvextra.pdf details="Package documentation"
-srccontainersize 59788
-srccontainerchecksum fb58fe039ee4eacd419d608a1370c345485af0957e53b2c3e3257b60e2c6e6b1229a5740b459e210f0222b319d57ab411e5f3d3053e694967bacc05a719e20c1
-srcfiles size=80
+srccontainersize 57972
+srccontainerchecksum 8ef9db8cf2c8961347c6a4a7a167b4be641a4109729b7b103a8ace0c795c901eb2a574dd96e40b9e0943bac0b2e69549f8760cadb363a1f45a75a0401a7884ef
+srcfiles size=78
RELOC/source/latex/fvextra/fvextra.dtx
RELOC/source/latex/fvextra/fvextra.ins
runfiles size=25
@@ -134840,7 +135303,7 @@ catalogue-contact-home https://github.com/gpoore/fvextra
catalogue-ctan /macros/latex/contrib/fvextra
catalogue-license lppl1.3
catalogue-topics verbatim
-catalogue-version 1.6.1
+catalogue-version 1.7.0
name fwlw
category Package
@@ -149486,8 +149949,8 @@ catalogue-version 0.18.3
name huaz
category Package
-revision 71112
-shortdesc Automatic Hungarian definite articles
+revision 71180
+shortdesc Automatic definite articles for Hungarian
relocated 1
longdesc In Hungarian there are two definite articles, "a" and "az",
longdesc which are determined by the pronunciation of the subsequent
@@ -149496,20 +149959,20 @@ longdesc pronounced word is a vowel, otherwise it is "a". The huaz
longdesc package helps the user to insert automatically the correct
longdesc definite article for cross-references and other commands
longdesc containing text.
-containersize 5632
-containerchecksum dbbb13e05854f67da9435798abb3d37819d26e7bdfebc64461b01f5d25f6af37e834865881f6aa60f16db59039ffea2fd57370b5a2a8e297a64ad47aad48e28f
-doccontainersize 360196
-doccontainerchecksum 525a81105328288888ff782583fae4488a5fc4e05d56794616078f615f2b92279811506ebbc4e9bb5df193dd6e58c008244a177fa51106e974710473020f9d41
-docfiles size=98
+containersize 6052
+containerchecksum 03ab6c1d7679c0b91db31f917ae0f691071a668c92289a6ccf0018a7f73bd48f28d1b9c95db1e88ffbd1bcfcf628991917d5e540a9563b4ab5d89cf7bd403202
+doccontainersize 374860
+doccontainerchecksum 051e2fd65173c395caa03bd46cb1c5cb1f4c028af9effa147225d1a7d986eab1f9b70924972ffb95d29d3fcd6523cf41a5a763eb31114578315462450719422b
+docfiles size=101
RELOC/doc/latex/huaz/README details="Readme"
RELOC/doc/latex/huaz/huaz.pdf details="Package documentation" language="hu"
RELOC/doc/latex/huaz/huaz.tex
-runfiles size=7
+runfiles size=8
RELOC/tex/latex/huaz/huaz.sty
catalogue-ctan /macros/latex/contrib/huaz
catalogue-license lppl1.3
catalogue-topics hungarian
-catalogue-version 2.0
+catalogue-version 2.1
name huffman
category Package
@@ -149911,16 +150374,16 @@ catalogue-version 0.01
name hvqrurl
category Package
-revision 69723
+revision 71267
shortdesc Insert a QR code in the margin
relocated 1
longdesc This package allows to draw an URL as a QR code into the margin
longdesc of a one- or twosided document. The following packages are
longdesc loaded by default: qrcode, marginnote, url, xcolor and xkeyval.
-containersize 1488
-containerchecksum cfeaea8387dfd425278cc9a8f278d7a0a1590336e24a8b8112b6407a808688012c970822973fa7b4a2816fdf0422171ec6e2926bb51a012f02c7a5b273465a9b
-doccontainersize 117728
-doccontainerchecksum ee7e0e77406e2e486a2898710953db49aebc28a9bf39d0e40cda20c38a1aa67d0f48f7936fd36bd417658600f82641f6f7d39d12b328d615ac694abd49d76f69
+containersize 1540
+containerchecksum 083f706ebd1b4b676a66e0aa26159330cf5d8fe53062cd33ef459062175c405e82bc0ed461552bb985d0b8636cfca74167ec32b6c68df5368bd358e656d10238
+doccontainersize 119000
+doccontainerchecksum 89f03a12414c8d5bfe3c799b49aab7e09eb4a02045a37cb9caadf6b668d85affddc7754befb2defd7caa521abe9c1e4490074711e4c947d0e57992ab138a5443
docfiles size=33
RELOC/doc/latex/hvqrurl/Changes
RELOC/doc/latex/hvqrurl/README details="Readme"
@@ -149931,7 +150394,7 @@ runfiles size=1
catalogue-ctan /macros/latex/contrib/hvqrurl
catalogue-license lppl1.3
catalogue-topics qrcode
-catalogue-version 0.07
+catalogue-version 0.08
name hwemoji
category Package
@@ -153070,6 +153533,30 @@ catalogue-license lppl1.3
catalogue-topics font-mgmt
catalogue-version 1.0.0
+name ifis-macros
+category Package
+revision 71220
+shortdesc Check if a given input string is a number or dimension for TeX
+relocated 1
+longdesc This package provides two macros: \ifisint and \ifisdim. They
+longdesc test if a given input string represents either a valid integer
+longdesc or a valid dimension for TeX.
+containersize 2120
+containerchecksum ce71dab5c5074506bc9673b3af1e9845f02fa794844e22a536df04e6322f58b81aa8b726b135112207b55f5801d3068fe5df74d100405d6d7b8cbec82d701b3a
+doccontainersize 20984
+doccontainerchecksum e3eae9e17dde0e522932cd4f3b27c543c66bccb0e3783308b21cdfd4598114efe90fd5245d102fc654d87ab6d8e1681a341700ed7c761aff068f306eb3533e8d
+docfiles size=9
+ RELOC/doc/plain/ifis-macros/README details="Readme"
+ RELOC/doc/plain/ifis-macros/ifis-macros-doc.pdf details="Package documentation"
+ RELOC/doc/plain/ifis-macros/ifis-macros-doc.tex
+runfiles size=2
+ RELOC/tex/plain/ifis-macros/ifisdimension.tex
+ RELOC/tex/plain/ifis-macros/ifisinteger.tex
+catalogue-ctan /macros/plain/contrib/ifis-macros
+catalogue-license gpl3+
+catalogue-topics plain-ext macro-supp
+catalogue-version 1.0
+
name ifmslide
category Package
revision 20727
@@ -159965,7 +160452,7 @@ catalogue-version 0.1.2
name iran-bibtex
category Package
-revision 69347
+revision 71187
shortdesc Iran Manual of Style Citation Guide for BibTeX
relocated 1
longdesc The iran-bibtex package, designed for LaTeX, provides BibTeX
@@ -159982,15 +160469,17 @@ longdesc This file, derived from the ascii.csf file, serves the purpose
longdesc of arranging references in the desired order. It is important
longdesc to note that this package relies on the natbib package, which
longdesc is automatically loaded.
-containersize 14744
-containerchecksum 0dd643474cdec8c5d15ce28dcad815978d9e3a76d0327cffeff021ff6811ba2313e44a5f21a4ed23a1bbf09433c479e551ad0a49c0d074d38a777df66daefa9a
-doccontainersize 101784
-doccontainerchecksum 51f903f7ee725dc2ffe58d594e64bebe5639e5efcabcde15206ec5e9583f8d4771fd2b457f8a79b2fe691fcf77d03854d1f5cb291d0b33fb7f2d5272a17a18bd
-docfiles size=43
+containersize 14712
+containerchecksum c145f10dde7ed7da5bb87cce7f709dbfeecda9d5049000dbf2a9b905b68850b31ebaa4c5d5a484393ce8d69c656eb1d26818b4f945ac77c22f0fcc66c11f35d7
+doccontainersize 163896
+doccontainerchecksum f57595f83b3de781d7e11f7477293e13c622846c03f1f4bd25c569488298a508af065194c50aaa8b393a3f323727cfbc462a8fb3cc6cea595c3d0517964a259f
+docfiles size=63
RELOC/doc/bibtex/iran-bibtex/LICENSE.txt
RELOC/doc/bibtex/iran-bibtex/README.md details="Readme"
- RELOC/doc/bibtex/iran-bibtex/iran-bibtex-structure.pdf details="Reference Sheet" language="fa"
- RELOC/doc/bibtex/iran-bibtex/iran-bibtex-structure.tex
+ RELOC/doc/bibtex/iran-bibtex/iran-bibtex-pattern.pdf details="Reference sheet" language="fa"
+ RELOC/doc/bibtex/iran-bibtex/iran-bibtex-pattern.tex
+ RELOC/doc/bibtex/iran-bibtex/iran-bibtex-userguide-fa.pdf details="User guide" language="fa"
+ RELOC/doc/bibtex/iran-bibtex/iran-bibtex-userguide-fa.tex
runfiles size=151
RELOC/bibtex/bst/iran-bibtex/iran-unsrt.bst
RELOC/bibtex/bst/iran-bibtex/iran-year.bst
@@ -160005,7 +160494,7 @@ catalogue-contact-repository https://github.com/farshadrasuli/iran-bibtex
catalogue-ctan /biblio/bibtex/contrib/iran-bibtex
catalogue-license lppl1.3c
catalogue-topics persian bibtex-sty
-catalogue-version 0.4.0
+catalogue-version 0.4.1
name is-bst
category Package
@@ -176569,7 +177058,7 @@ binfiles arch=x86_64-solaris size=3
name kpathsea
category TLCore
-revision 70941
+revision 71233
shortdesc Path searching library for TeX-related files
longdesc Kpathsea is a library and utility programs which provide path
longdesc searching facilities for TeX file types, including the
@@ -176578,10 +177067,10 @@ longdesc layered on top of a general search mechanism. It is not
longdesc distributed separately, but rather is released and maintained
longdesc as part of the TeX Live sources.
depend kpathsea.ARCH
-containersize 32912
-containerchecksum e4ff81c6d50942635903e19c3c8b4c7af58b61760667ff530708c6302b1e3197515eaff03837e017d8a3955f8a495c5db3072ec085c2996c4396350d66aecfe4
-doccontainersize 1057476
-doccontainerchecksum 2df36ec6aec74c62f01ffef9a6b378587691f4b2da53990bfd71250217bd3459f460b693147c171042439d6508ff874bb3a9453b586b6dc4d6f55eddb5c2ee14
+containersize 33084
+containerchecksum b9285f3859fe21af94b5b8c7de80dd1881b9049f4381fdbbc685b6b4317a9483ad2c9d40fde252f71a219e87e4696e3fbff88086fb25ca0d40847d4fae01bdb1
+doccontainersize 1057472
+doccontainerchecksum 772fa7de8258fa1d54cce894111503d0e7ef5a371d034deb92f7587339abdc4e4e7f7b267c4c50121a459fdc13ff564eaf06c1554e6d52683833bb0f74c05ec1
docfiles size=584
texmf-dist/doc/info/dir
texmf-dist/doc/info/kpathsea.info
@@ -176748,10 +177237,10 @@ binfiles arch=universal-darwin size=154
name kpathsea.windows
category TLCore
-revision 70269
+revision 71215
shortdesc windows files of kpathsea
-containersize 518896
-containerchecksum bfe709bd77312316e231624a07eae49db6ae246d427510274cc6120ad9679cc3d91689392377ad73393f679ce446ca397b1cab0254c8ce50bbf6e05873e41828
+containersize 518864
+containerchecksum fbc636602e074e21b8148a99dceb0eb938dc83d526c6817fc2e781c2adde9b7485897eec6a8f0278af5d5e443e27da6232ee67e536d25284d18f1d7de8a73988
binfiles arch=windows size=401
bin/windows/kpathsealibw64.dll
bin/windows/kpseaccess.exe
@@ -178775,7 +179264,7 @@ catalogue-version 3.35
name kpfonts-otf
category Package
-revision 69636
+revision 71153
shortdesc OTF version of the Kp-fonts
relocated 1
longdesc This bundle provides OpenType versions of the Type1 Kp-fonts
@@ -178789,11 +179278,11 @@ longdesc st), ancient long-s and a long-tailed capital Q are available
longdesc via font features. Math fonts cover all usual symbols including
longdesc AMS'; a full list of available symbols is provided, see the
longdesc 'List of glyphs'.
-containersize 1115540
-containerchecksum 5c90bbd34da4ff9b610e5d1d407787cf658cc1a649c42c43d64bd374d04f43038956a5dcd159efbe912fb952d5a11370388870c87bf0a4094f19c019965a173b
-doccontainersize 2035528
-doccontainerchecksum 677dc5c94ab24a047028b403db43a0493acb4bf8644ff6b63cbdfba12f1de11541eaca6836290c4ed822c1800dba299e2b5afb9f5455164db038c01e7ef0f17a
-docfiles size=565
+containersize 1120524
+containerchecksum 1f765652903691c14fbf984bd791628baf41f6fa60969c3b7335d072e5c9a765beb9029cf45c272e395d9dd996d72c18c7c801f092b1d0cd3de0ca483911d041
+doccontainersize 2046356
+doccontainerchecksum 66f6e8db7c002ec8a7d3b5519c7f7cbf2c90987ef403468fad00abc248adfe1a44046d06e4c9551b91c0bd735bc6fb674b7cfd712368e3b177d75fc72b57b6df
+docfiles size=566
RELOC/doc/fonts/kpfonts-otf/Kpfonts-OTF-Doc-English.ltx
RELOC/doc/fonts/kpfonts-otf/Kpfonts-OTF-Doc-English.pdf details="Package documentation (English)" language="en"
RELOC/doc/fonts/kpfonts-otf/Kpfonts-OTF-Doc-French.ltx
@@ -178801,7 +179290,7 @@ docfiles size=565
RELOC/doc/fonts/kpfonts-otf/README.md details="Readme"
RELOC/doc/fonts/kpfonts-otf/unimath-kpfonts.ltx
RELOC/doc/fonts/kpfonts-otf/unimath-kpfonts.pdf details="List of glyphs"
-runfiles size=838
+runfiles size=845
RELOC/fonts/opentype/public/kpfonts-otf/KpMath-Bold.otf
RELOC/fonts/opentype/public/kpfonts-otf/KpMath-Light.otf
RELOC/fonts/opentype/public/kpfonts-otf/KpMath-Regular.otf
@@ -178836,7 +179325,7 @@ catalogue-also kpfonts
catalogue-ctan /fonts/kpfonts-otf
catalogue-license ofl lppl1.3
catalogue-topics font font-body font-maths font-mono font-otf font-proportional font-sans font-serif font-supp
-catalogue-version 0.62
+catalogue-version 0.63
name ksfh_nat
category Package
@@ -179938,23 +180427,23 @@ catalogue-topics latex3 expl3 macro-supp pre-release
name l3backend-dev
category Package
-revision 70977
+revision 71211
shortdesc LaTeX3 backend drivers (dev)
relocated 1
longdesc This is a pre-release version of the l3backend package. It
longdesc accompanies the pre-testing kernel code (latex-base-dev), and
longdesc is intended for testing by knowledgeable users.
-containersize 16132
-containerchecksum 9856451435e5e610f50dd5d65bed6f365697e15e7f74aff93ac4d6c0eec538b778bdb085bca73aa6ed5d08f95dec1c28914c8534232a76be78944717851bda47
+containersize 16128
+containerchecksum 00b65edbcc4ada59b04d73655749b2a3e8a6f2def3af3e207ca34d2557cc0fc1028936284fc3d593fb694a43dd8f8d2faeea21c201a8277c67065602c2797ce2
doccontainersize 862356
-doccontainerchecksum 749cf99b6eef9f512b8f6592044624eb67c6b08cb4acd9dd9453e4f2ddfd5b9d6c588a88e439649a303308dac8b46843ebd575538544ddf940431c4c7d25ac05
+doccontainerchecksum b59dc75cd87e4c7167753b63560cbf1f9e3f8aa1ff3f1ada76c4d1fae8a28cd5836b11a32e0b7c12ccc1fcb48b9794a55677f48adb87587d8afa92e50672cca1
docfiles size=227
RELOC/doc/latex-dev/l3backend/CHANGELOG.md
RELOC/doc/latex-dev/l3backend/README.md details="Readme"
RELOC/doc/latex-dev/l3backend/l3backend-code.pdf details="Package documentation"
RELOC/doc/latex-dev/l3backend/l3backend-code.tex
-srccontainersize 33820
-srccontainerchecksum c792ed443cb5a3c080208cf34cb87ef661669ec3af3ef4158a19c9f915dec48a73c4fc40bae2161f5893ab5c6b8d7dae5bb11562bb60ad694d14c5f330e3b21d
+srccontainersize 33812
+srccontainerchecksum be332fda2c7b4765819af2f011e5b291f8c411c00fa0f8960eecbbe1556356c049a61e12c5eada5f52dd11a35931573cf203a19855bc01956c90bf33dd637040
srcfiles size=58
RELOC/source/latex-dev/l3backend/l3backend-basics.dtx
RELOC/source/latex-dev/l3backend/l3backend-box.dtx
@@ -180409,18 +180898,18 @@ catalogue-topics format latex3 pre-release
name l3kernel-dev
category Package
-revision 70976
+revision 71211
shortdesc Development pre-release of l3kernel
relocated 1
longdesc This is a pre-release version of the l3kernel package. It
longdesc accompanies the pre-testing kernel code (latex-base-dev), and
longdesc is intended for testing by knowledgeable users.
depend l3backend-dev
-containersize 180216
-containerchecksum 0b6d0fdebe62b0a2b9996c68220c104854675ee0a513480073b6b44e22696253a0cc7d968df3c11a63bbe7179a47b4386556807042b4f70849e966d43216e0c6
-doccontainersize 12063500
-doccontainerchecksum cfc11ecb99534a7fc60964b03388c7dc3120abc563385abc5a71076dac5d11386e330a4b8c8b03ba39fee873c3d0190ea04641c0ad1d8d9f0cacf3c6441a4e97
-docfiles size=3519
+containersize 180112
+containerchecksum 01b0e718e15ce0b0db97584becb5f4bdf8c2294a4bb4a3674696bbf814121ef988d03b5e41abd2761bb2bba6050ae70e696306a0b8b84c6e5a24d9cd0d74492a
+doccontainersize 12061108
+doccontainerchecksum 6848fb98320ced2e2b64794a7e219d5dd417dfae0a6aa21e9c2f44e20d6b52a15db07f8d100a605606b1c02a6f38376f6c5831041a3ad7df6b688559e2189576
+docfiles size=3513
RELOC/doc/latex-dev/l3kernel/CHANGELOG.md
RELOC/doc/latex-dev/l3kernel/README.md details="Readme"
RELOC/doc/latex-dev/l3kernel/expl3.pdf details="The LaTeX3 Programming Language"
@@ -180467,9 +180956,9 @@ docfiles size=3519
RELOC/doc/latex-dev/l3kernel/source3.pdf
RELOC/doc/latex-dev/l3kernel/source3.tex
RELOC/doc/latex-dev/l3kernel/source3body.tex
-srccontainersize 622280
-srccontainerchecksum 999b275473e84e01c708e8ee122331f607bd260c69939e46bdf4f036318ad4d3c3a266594bb25a8f6e41e5e9f10d8e4be8f9dd26435f151db24d7f560ab2dc85
-srcfiles size=960
+srccontainersize 622568
+srccontainerchecksum 18ae84979addc56068c2e6189e072c793b5cc8db9c731defa672dc1e4b6e1bd24ceb20f16d48ea42b08967080f9c93757149cf68724323dd5bd0349c47e327b3
+srcfiles size=961
RELOC/source/latex-dev/l3kernel/expl3.dtx
RELOC/source/latex-dev/l3kernel/l3.ins
RELOC/source/latex-dev/l3kernel/l3basics.dtx
@@ -180532,7 +181021,7 @@ srcfiles size=960
RELOC/source/latex-dev/l3kernel/l3tl.dtx
RELOC/source/latex-dev/l3kernel/l3token.dtx
RELOC/source/latex-dev/l3kernel/l3unicode.dtx
-runfiles size=369
+runfiles size=368
RELOC/tex/latex-dev/l3kernel/expl3-code.tex
RELOC/tex/latex-dev/l3kernel/expl3-generic.tex
RELOC/tex/latex-dev/l3kernel/expl3.ltx
@@ -185069,21 +185558,22 @@ catalogue-topics book-ex
name latex2e-help-texinfo
category Package
-revision 65552
+revision 71252
shortdesc Unofficial reference manual covering LaTeX2e
relocated 1
longdesc The manual is provided as Texinfo source (which was originally
longdesc derived from the VMS help file in the DECUS TeX distribution of
longdesc 1990, with many subsequent changes). This is a collaborative
longdesc development, and details of getting involved are to be found on
-longdesc the package home page. A French translation is available as a
-longdesc separate package. All the other formats in the distribution are
-longdesc derived from the Texinfo source, as usual.
-containersize 732
-containerchecksum 34b91b19e1b71b1df6d0f57dda4d6976a93b16afac259656c9d4e331b0c23a9b0550563c1a10dd7a95640e3740b3b15597c1023f6c2721bf2a64800466b9cd09
-doccontainersize 2122104
-doccontainerchecksum d4584d9259f3c1867e7445d4a219e4decc5ba3b305e20d1e780180a47fbad8df4d55552726d8288e78c8388823a2b652b81080c8139b00f4ea3ca10e5789375b
-docfiles size=2139
+longdesc the package home page. A Spanish translation is included here,
+longdesc and a French translation is available as a separate package.
+longdesc All the other formats in the distribution are derived from the
+longdesc Texinfo source, as usual.
+containersize 748
+containerchecksum db97a475565a8d4aa509c6ceb6fa7b14845cc326dfc4a7e8600885ba6b0e3e14f00e13a2d6794da685320adf6ba1209cabdd95e92a86590c24293016c4aef514
+doccontainersize 2181440
+doccontainerchecksum a94f672ce2069a00006fe967d99599043a756e4722bd5b5de44daeacfce4de721068e66c1940fa8796eb33c11f3c4562b24d8f01f36b13abee9cfc69ccf1ae20
+docfiles size=2209
RELOC/doc/info/latex2e.info
RELOC/doc/latex/latex2e-help-texinfo/ChangeLog
RELOC/doc/latex/latex2e-help-texinfo/Makefile
@@ -185543,7 +186033,7 @@ binfiles arch=x86_64-solaris size=1
name latex2pydata
category Package
-revision 68919
+revision 71283
shortdesc Write data to file in Python literal format
relocated 1
longdesc This package writes data to file using Python literal syntax.
@@ -185552,26 +186042,27 @@ longdesc ast.literal_eval() function or the latex2pydata Python package.
longdesc The data can also be hashed within LaTeX (mdfivesum) so that it
longdesc is possible to check for the existence of external cached
longdesc content generated with the data.
-containersize 3460
-containerchecksum 7da5e33f287bac42a378bf33073ec6a982dff7000097fdb865844299efeb9e7a1647ae49bd3332b036755dd4da6be34fbb197c8148d2c2af5c60b7580d0420d1
-doccontainersize 287516
-doccontainerchecksum 8d78f4bfe6ddd1742baaa792842ab9ada5cdf4e1eeb3fb3496780e3a31120406d56be4be7cbbade5815f72cab57b76a5218e3bd86ef4593d1fc75fa2196e7212
-docfiles size=73
+containersize 3744
+containerchecksum 37ffe0d9c938aed61395b12a7a3d6570c729ddf47a3b609b2f006ef17832a080d78a3e6f01be13d6262d6052d18d53f4482f836ed1dffa88dce4358e98b7a5bb
+doccontainersize 292272
+doccontainerchecksum 52b1ae2cd10d67a1ec3e0a787238d7fa30b153952ae3a4bee0cfa1f6297ab146f1301bbcee4dc62d60af63ea22a9cd3628b210b422dfd0f1032c042546fc7f99
+docfiles size=75
+ RELOC/doc/latex/latex2pydata/CHANGELOG.md
RELOC/doc/latex/latex2pydata/README details="Readme"
RELOC/doc/latex/latex2pydata/latex2pydata.pdf details="Package documentation"
-srccontainersize 12228
-srccontainerchecksum fe7111c44158c400af7d0feda67e2bc8a1cc313ab8bca7c101ed75e57ca1a00fe434232ad4c5b78a19fad388d8a8cfa0af6cd53c7f84b809209d7bf955f8e05c
-srcfiles size=14
+srccontainersize 12692
+srccontainerchecksum eefb1210b84b70f1066b36f18d8b45951fc59f9ca57f1fa044535e15721dc8daf7ce6e2d5f2f1b29c4d7af2353332bcdba323660b04a84dd3d97be01b92f0804
+srcfiles size=15
RELOC/source/latex/latex2pydata/latex2pydata.dtx
RELOC/source/latex/latex2pydata/latex2pydata.ins
runfiles size=5
RELOC/tex/latex/latex2pydata/latex2pydata.sty
-catalogue-contact-bugs https://github.com/gpoore/latex2pydata_tex/issues
-catalogue-contact-repository https://github.com/gpoore/latex2pydata_tex
+catalogue-contact-bugs https://github.com/gpoore/latex2pydata/issues
+catalogue-contact-repository https://github.com/gpoore/latex2pydata
catalogue-ctan /macros/latex/contrib/latex2pydata
catalogue-license lppl1.3c
catalogue-topics data-manip
-catalogue-version 0.1
+catalogue-version 0.2.0
name latex4musicians
category Package
@@ -186434,16 +186925,16 @@ catalogue-topics version-control doc-mgmt
name latexindent
category Package
-revision 71114
+revision 71245
shortdesc Indent a LaTeX document, highlighting the programming structure
longdesc The Perl script processes a LaTeX file, indenting parts so as
longdesc to highlight the structure for the reader. Included are also
longdesc binary (executable) files for Windows, Ubuntu Linux, and macOS.
depend latexindent.ARCH
-containersize 76404
-containerchecksum 1c0481a44ddd4df0b76205bec7a1e9ac59f88d90d3a65e55239b1bbeb6d2999414c97524b2f8aacdf093df5091ac5e8badf00e27949ec154ec8caf51ad87a9e8
-doccontainersize 1373316
-doccontainerchecksum 206dbf9b54ad60aa7a6b816e4a4085db51541b0e0d422f70b7d5653bc2038ce59e617af57eaab7ea7321eb8c1178285d88526cec04ac9e9d25960e0bf670d5a6
+containersize 76412
+containerchecksum b696b07137914f78cf523aa5d9364024729894aa1c61d6a61ae575f964c85ccf8f4c89c60c7c2adb2f340b88ddcc2979994826684ac469a35ed8722cd6f649b7
+doccontainersize 1373928
+doccontainerchecksum 866152a59dd9a5dea0e82c9a00a5840df143b1164300c8668e8fc58b949fc93b34f676f76f3fcdd1bf35cf6012da137c44043cd3a76caad60b0101030a1f53de
docfiles size=460
texmf-dist/doc/support/latexindent/README details="Readme"
texmf-dist/doc/support/latexindent/contributors.bib
@@ -186504,7 +186995,7 @@ catalogue-contact-repository https://github.com/cmhughes/latexindent.pl
catalogue-ctan /support/latexindent
catalogue-license gpl3
catalogue-topics code-layout
-catalogue-version 3.24
+catalogue-version 3.24.1
name latexindent.aarch64-linux
category Package
@@ -186589,10 +187080,10 @@ binfiles arch=universal-darwin size=1
name latexindent.windows
category Package
-revision 71114
+revision 71245
shortdesc windows files of latexindent
-containersize 3851272
-containerchecksum bc1d0bc9f9312a99c1733cd2990a927306aa6b32978e6dd72695b52c8d84214927669d7cc22f6f3810657e29670b47f4408efaf0dd2a1c5d3a94391659e911eb
+containersize 3853220
+containerchecksum c2ce9c54239e95a6edd0fc0512516c65eea1fd9d5753b1c90b6bfb88bf601310bfd11ed1e31285c83921c2bf98f8566bb36488623e0827b467916e3f8bbfddcb
binfiles arch=windows size=2312
bin/windows/latexindent.exe
@@ -188941,35 +189432,6 @@ catalogue-license ofl lppl1.3c
catalogue-topics font font-type1 font-ttf font-sans
catalogue-version 3.3
-name lato-math
-category Package
-revision 70982
-shortdesc Lato based OpenType Math font for LuaTeX and XeTeX
-relocated 1
-longdesc This package provides a Unicode Math font LatoMath.otf meant to
-longdesc be used together with Lato sans-serif TrueType Text fonts in
-longdesc LuaLaTeX or XeLaTeX documents.
-containersize 273120
-containerchecksum cf732fb518f818873278316a3fe4a8e8d830d63305398eae3a7b7169417903e9a2390ff9dae75ed007bea35dfcf7c09d1d44a3212631e39f4c2ef893627acfa0
-doccontainersize 2048668
-doccontainerchecksum fdfc5fd3754f7c74f644fb14ac55b444a6503fab4e3fcb4b90bd8922a7ff9e7c19201f1aeb71a53b415ba3e9aca2f6637db492dafff9f8a26065b3e25ea558c2
-docfiles size=537
- RELOC/doc/fonts/lato-math/LatoMath.ltx
- RELOC/doc/fonts/lato-math/LatoMath.pdf details="Package documentation"
- RELOC/doc/fonts/lato-math/README.md details="Readme"
- RELOC/doc/fonts/lato-math/unimath-lato.ltx
- RELOC/doc/fonts/lato-math/unimath-lato.pdf details="List of glyphs"
-runfiles size=142
- RELOC/fonts/opentype/public/lato-math/LatoMath-Bold.otf
- RELOC/fonts/opentype/public/lato-math/LatoMath.otf
- RELOC/tex/latex/lato-math/lato-math.sty
-catalogue-also lato
-catalogue-contact-home https://github.com/abccsss/LatoMath
-catalogue-ctan /fonts/lato-math
-catalogue-license lppl1.3c ofl
-catalogue-topics font-maths font-otf
-catalogue-version 0.37
-
name layaureo
category Package
revision 19087
@@ -189949,6 +190411,37 @@ catalogue-license lppl1.3
catalogue-topics units misc-conv expl3
catalogue-version 1.0a
+name lete-sans-math
+category Package
+revision 71247
+shortdesc Lato-based OpenType Math font for LuaTeX and XeTeX
+relocated 1
+longdesc This package provides a Unicode Math font LeteSansMath.otf
+longdesc meant to be used together with Lato sans-serif TrueType Text
+longdesc fonts in LuaLaTeX or XeLaTeX documents. Note: "Lato" means
+longdesc "Summer" in Polish, same as "l'ete" in French.
+containersize 273188
+containerchecksum e5b202e755ca2b0a7293699d56d94430357d753ce7978cb25ed24eb297f12132ffb2b99f677f8a92f12c04f965338aea349ab2e4e5adf4d00548f3d59eef12a0
+doccontainersize 2050140
+doccontainerchecksum fa07ede9129cddd551a3c3634f49e1fc09acddd224b40904bc28ffa4a46ea8338b2a25f863cdbbed22a7b151bb41a9a1b55df314870f088fcb18c0c35ba8d8a9
+docfiles size=539
+ RELOC/doc/fonts/lete-sans-math/LeteSansMath.ltx
+ RELOC/doc/fonts/lete-sans-math/LeteSansMath.pdf details="Package documentation"
+ RELOC/doc/fonts/lete-sans-math/README.md details="Readme"
+ RELOC/doc/fonts/lete-sans-math/unimath-lete.ltx
+ RELOC/doc/fonts/lete-sans-math/unimath-lete.pdf details="List of glyphs"
+runfiles size=142
+ RELOC/fonts/opentype/public/lete-sans-math/LeteSansMath-Bold.otf
+ RELOC/fonts/opentype/public/lete-sans-math/LeteSansMath.otf
+ RELOC/tex/latex/lete-sans-math/lete-sans-math.sty
+catalogue-alias lato-math
+catalogue-also lato
+catalogue-contact-home https://github.com/abccsss/LeteSansMath
+catalogue-ctan /fonts/lete-sans-math
+catalogue-license ofl lppl1.3c
+catalogue-topics font-maths font-otf
+catalogue-version 0.40
+
name letgut
category Package
revision 70491
@@ -199372,17 +199865,17 @@ catalogue-version 0.2b
name litesolution
category Package
-revision 71017
-shortdesc A template providing a light design for solutions of test papers
+revision 71205
+shortdesc A LaTeX class for typesetting solutions of problems in exams, textbooks, etc.
relocated 1
-longdesc This template provides a fresh design for typesetting solutions
-longdesc of exams, textbooks or other exercises. Welcome to feedback
-longdesc bugs or ideas via email xiamyphys@gmail.com.
-containersize 3672
-containerchecksum 8e88728253c2bef9662559f6558bcdbef9390e4f144fe11d830312b813d02cdbd7095df52fd5578bd534ea66bb3ed786581fd51ab160069669aadb6e9d60c4bd
-doccontainersize 654840
-doccontainerchecksum 9e9b01b51fc84d8ff8aa190fce3bda88b0c862ea84adb1ec02f28f873524daa3ed5ed3da072d6453a744a44c429f17775f4c8abc39d70fb3aa1430cc40ab02a2
-docfiles size=211
+longdesc This LaTeX class has been designed for typesetting solutions of
+longdesc problems in exams, textbooks etc. Welcome to feedback bugs or
+longdesc ideas via email xiamyphys@gmail.com.
+containersize 4180
+containerchecksum cb7588591a05b9fe5c32f80a70e294393b547fc85a7f1525af1d4c3e3f12a7aaff839871223707071a7ba52bc04e352f078747b3a3c8a1a771aa57a58203e077
+doccontainersize 281752
+doccontainerchecksum 35618931ca05207fd5bfef1847439c16ce4c09faddbc2e75ac626cbbcc4f04de5078ba87df8050c76b798b96408954b2eb36bef5665c9549dfea1a878b3f55d1
+docfiles size=125
RELOC/doc/latex/litesolution/License
RELOC/doc/latex/litesolution/README.md details="Readme"
RELOC/doc/latex/litesolution/figure/Beautiful-realities.jpeg
@@ -199401,7 +199894,7 @@ catalogue-contact-support https://qm.qq.com/q/RGFmHwBecC
catalogue-ctan /macros/latex/contrib/litesolution
catalogue-license lppl1.3c
catalogue-topics class doc-templ
-catalogue-version 2.1c
+catalogue-version 2.2b
name litetable
category Package
@@ -203607,7 +204100,7 @@ catalogue-version 0.87
name lua-uca
category Package
-revision 61023
+revision 71218
shortdesc Unicode Collation Algorithm library for Lua
relocated 1
longdesc The Lua-UCA library provides basic support for Unicode
@@ -203616,23 +204109,25 @@ longdesc strings according to rules of particular languages. It can be
longdesc used in other Lua projects that need to sort text in a language
longdesc dependent way, like indexing processors, bibliographic
longdesc generators, etc.
-containersize 74192
-containerchecksum e6c703b5576c7d66372a3989618609f2fe4a2b41de78c624e15bd0905744559b2adb3f70536b9680f83897a3997a492a558e285818d38b63ee7e99798bf376c0
-doccontainersize 75516
-doccontainerchecksum a842063786a53c558bcd4bead5b6affbe9e448618d421435f49722e0a55087c28b36bc9d6bbcb874c3c794a9f5b303c62429b4386801e03f78e2f60c83cb1d1d
-docfiles size=23
+containersize 249956
+containerchecksum c1ceea1c3427caafabb4733c0c175a414eba05b5ddcba81b93877746d0a7ed2b32096d5d686c4e25d38b5d3b41b606138ab773d39994ed774edcadea9690f973
+doccontainersize 76884
+doccontainerchecksum e43c49971ed390b7d0ba10ee1368052167aec1bca909db1d984dcafd467908cb8e6b671659ca7bc93b5013e0d6512011355659d521c6714a0386ecd73433ac5e
+docfiles size=24
RELOC/doc/support/lua-uca/CHANGELOG.md
RELOC/doc/support/lua-uca/HACKING.md
RELOC/doc/support/lua-uca/LICENSE
RELOC/doc/support/lua-uca/README.md details="Readme"
RELOC/doc/support/lua-uca/lua-uca-doc.pdf details="Package documentation"
RELOC/doc/support/lua-uca/lua-uca-doc.tex
-srccontainersize 1136
-srccontainerchecksum 7bea2f473bf12fccdc21534653f6237ea3b71c57bdaf651b8f543c5447ba25b3ae3bf735c3a0e7840b31907b777aa87215b358d152c1ba29c0e372a2672b0e44
+srccontainersize 1184
+srccontainerchecksum 5d41f556b8a94e580af92149c4223ab0a639110d06bd575ea02f7d1a646b14d850671309bcbd8ba35970b1265c34aa1b78ab7ce946007e0718294442e7a6e170
srcfiles size=1
RELOC/source/support/lua-uca/Makefile
-runfiles size=464
+runfiles size=993
+ RELOC/scripts/lua-uca/lua-uca-chinese.lua
RELOC/scripts/lua-uca/lua-uca-collator.lua
+ RELOC/scripts/lua-uca/lua-uca-ducet-jit.lua
RELOC/scripts/lua-uca/lua-uca-ducet.lua
RELOC/scripts/lua-uca/lua-uca-languages.lua
RELOC/scripts/lua-uca/lua-uca-reordering-table.lua
@@ -203642,7 +204137,7 @@ catalogue-contact-repository https://github.com/michal-h21/lua-uca
catalogue-ctan /support/lualibs/lua-uca
catalogue-license mit
catalogue-topics typesetting luatex
-catalogue-version 0.1b
+catalogue-version 0.1d
name lua-ul
category Package
@@ -205181,29 +205676,29 @@ catalogue-version 1.1
name luamplib
category Package
-revision 71078
+revision 71225
shortdesc Use LuaTeX's built-in MetaPost interpreter
relocated 1
longdesc The package enables the user to specify MetaPost diagrams
longdesc (which may include colour specifications from the color or
longdesc xcolor packages) into a document, using LuaTeX's built-in
longdesc MetaPost library. The facility is only available in PDF mode.
-containersize 14968
-containerchecksum 47b1bbf65f91fe33f26e0dca8c480e37c20976193654c3e30572f601a9f16f2f6d6434ad290f87312dd1b8e9d9591834e900547cbf6f4ecb2cbd23b0a58a2f8c
-doccontainersize 174304
-doccontainerchecksum fd4d91b257cc35819808daf27dc300c33ab68ca82305fe3e2f95b46c444e475f39a2436ea279291c743a54733adffe0bca80ae2b91fa2a8da151c5c6b4d678c0
-docfiles size=50
+containersize 16956
+containerchecksum a80539a07399792fea6907b6fb1317f8340f624aa8ec1bb051cb234d2dc1748f35b0df0ed17302930eea3c35d4f869195498b00042afd49cb1212f5d7a429c80
+doccontainersize 189388
+doccontainerchecksum 0dffc0f917ba69669b043fa4e48365534a05d597f9ad8f38bc2f151b4d5ab81cc3eb717f180cff2ab9ff9683a2a34bc27dc4fd4dfa29c3e846753399f2eb59ca
+docfiles size=54
RELOC/doc/luatex/luamplib/NEWS
RELOC/doc/luatex/luamplib/README details="Readme"
RELOC/doc/luatex/luamplib/luamplib.pdf details="Package documentation"
RELOC/doc/luatex/luamplib/test-luamplib-latex.tex
RELOC/doc/luatex/luamplib/test-luamplib-plain.tex
-srccontainersize 31068
-srccontainerchecksum 2b84fd7af564862d0030dbdc12a44bfe6f491e7bfdb46bac54f8d4c22b0cee1cac35cfbc2d21ab747fdfed31a32d13e4cbc20e44a10cc39d4f6f7a351a51bdc9
-srcfiles size=29
+srccontainersize 34480
+srccontainerchecksum bc8b9bcb71b025761e3f2c136ce2196edbf32a47f51b0aeec04decb8d74aad9f9681591e297ecaa069ee098de8f880fd54e9497886eecdaf761d25954d977578
+srcfiles size=32
RELOC/source/luatex/luamplib/Makefile
RELOC/source/luatex/luamplib/luamplib.dtx
-runfiles size=16
+runfiles size=18
RELOC/tex/luatex/luamplib/luamplib.lua
RELOC/tex/luatex/luamplib/luamplib.sty
catalogue-contact-bugs https://github.com/lualatex/luamplib/issues
@@ -205211,7 +205706,7 @@ catalogue-contact-repository https://github.com/lualatex/luamplib
catalogue-ctan /macros/luatex/generic/luamplib
catalogue-license gpl2
catalogue-topics mp-use graphics-in-tex luatex
-catalogue-version 2.28.2
+catalogue-version 2.30.0
name luanumint
category Package
@@ -206150,18 +206645,18 @@ catalogue-version 1.3
name luatexja
category Package
-revision 69987
+revision 71181
shortdesc Typeset Japanese with Lua(La)TeX
relocated 1
longdesc The package offers support for typesetting Japanese documents
longdesc with LuaTeX. Either of the Plain and LaTeX2e formats may be
longdesc used with the package.
depend luatexbase
-containersize 193296
-containerchecksum bc8388cb11f1ecc8b38755952900f4369222545916a23378abcdc61ecd562c4b3f026844ba4be957413b19cf1f62b0aa3d0c58feee1898c86b5758b61a908a0b
-doccontainersize 3242944
-doccontainerchecksum 59a1ac6b5c683a3725776f4609abb2e2bc226b12a0d2a4dbb1774052b4d21219af8443a307f2882da6ca12c3b3c32e6d9e26620430c9f0ee63493f52f7017c22
-docfiles size=977
+containersize 193580
+containerchecksum 136a9c477e76325881395911c0fb70d66421400ac2de868d65673fce68bbece788921f761ceef173386a78f93c39f46832af321bb4754b1bb2b99bb0c67417b6
+doccontainersize 3241916
+doccontainerchecksum 60ba8d0a7d190cd9384fc30e3616bfaafbaa8f0639c558584570a55030a1999dd33a0aeace7d42ec2ac8103b6237293adfd07e4fbc43e7d6ff969ad3c56ce4b1
+docfiles size=976
RELOC/doc/luatex/luatexja/COPYING
RELOC/doc/luatex/luatexja/README details="Readme"
RELOC/doc/luatex/luatexja/jfm-test.lua
@@ -206179,7 +206674,7 @@ docfiles size=977
RELOC/doc/luatex/luatexja/luatexja.dtx
RELOC/doc/luatex/luatexja/luatexja.ins
srccontainersize 83900
-srccontainerchecksum ce649fcf18f0845e4f1d70cb3db8a2c303239261a58f7783f857f28d19efe101e869b342202ef1395302d5fa58476a82ae6036dafc757490b5362b05b5a8495d
+srccontainerchecksum 8b6c6fc393711d3548f11985a9b1276b27ad2767b22c698fc94ca660f974a14dc98006b7150481bf15a0ce6d5240ef88309f32e4c4430009ff012e1746272aca
srcfiles size=119
RELOC/source/luatex/luatexja/ltjclasses.dtx
RELOC/source/luatex/luatexja/ltjclasses.ins
@@ -206204,10 +206699,11 @@ srcfiles size=119
RELOC/source/luatex/luatexja/tool/table_jisx0208.tex
RELOC/source/luatex/luatexja/tool/test_exist_nodelib.tex
RELOC/source/luatex/luatexja/tool/unicodeBlocks.tex
-runfiles size=415
+runfiles size=419
RELOC/tex/luatex/luatexja/addons/luatexja-adjust.sty
RELOC/tex/luatex/luatexja/addons/luatexja-ajmacros.sty
RELOC/tex/luatex/luatexja/addons/luatexja-fontspec-27c.sty
+ RELOC/tex/luatex/luatexja/addons/luatexja-fontspec-29c.sty
RELOC/tex/luatex/luatexja/addons/luatexja-fontspec.sty
RELOC/tex/luatex/luatexja/addons/luatexja-otf.sty
RELOC/tex/luatex/luatexja/addons/luatexja-preset.sty
@@ -206303,8 +206799,8 @@ catalogue-contact-home https://github.com/luatexja/luatexja/wiki/Home(en)
catalogue-contact-repository https://github.com/luatexja/luatexja
catalogue-ctan /macros/luatex/generic/luatexja
catalogue-license bsd
-catalogue-topics japanese luatex class macro-gen
-catalogue-version 20240219.0
+catalogue-topics japanese luatex class macro-gen expl3
+catalogue-version 20240505.0
name luatexko
category Package
@@ -206440,7 +206936,7 @@ catalogue-version 1.3
name luavlna
category Package
-revision 67442
+revision 71156
shortdesc Prevent line breaks after single letter words, units, or academic titles
relocated 1
longdesc In some languages, like Czech or Polish, there should be no
@@ -206456,11 +206952,11 @@ longdesc units. The package supports both plain LuaTeX and LuaLaTeX.
longdesc BTW: "vlna" is the Czech word for "wave" or "curl" and also
longdesc denotes the tilde which, in TeX, is used for "unbreakable
longdesc spaces".
-containersize 9068
-containerchecksum 012bdbcca4062a2f551b28dbbd781c885fbb557f5c1258157db01fff7141c8380341f53a9e58c3f844c022af64a748299efb703de5e37f05acaa0d385b8ab8ed
-doccontainersize 95120
-doccontainerchecksum a785d65816ff637c4c08f6a0ce95e5a65c4121885f6af32b3e68574845adc10886685451cf3fb68cff05b4ab29c792b3c02f793d912e86ace55f2602af6d63e6
-docfiles size=27
+containersize 9164
+containerchecksum 42239e3f975d17137ae3d6319e6d6f1f4f06cf8ae69c06d3e1b959739f2b8965936b4dc01cdae06aa87693dc52ba6da32ae1b075af989866fea99f623de846e9
+doccontainersize 87996
+doccontainerchecksum ae4f6c69799bb30b9ce497e1c2f5252c46579233fa263cfdcd00acb1a4ed0bbe90ce670e95fe778aa1785102d3febd6a85d9f9a3ac5fa102cfce44059ff9e99c
+docfiles size=25
RELOC/doc/luatex/luavlna/README.md details="Readme"
RELOC/doc/luatex/luavlna/luavlna-doc.pdf details="Package documentation"
RELOC/doc/luatex/luavlna/luavlna-doc.tex
@@ -206481,7 +206977,7 @@ catalogue-contact-repository https://github.com/michal-h21/luavlna
catalogue-ctan /macros/luatex/generic/luavlna
catalogue-license lppl1.3
catalogue-topics typesetting czech slovak polish luatex
-catalogue-version 0.1l
+catalogue-version 0.1m
name luaxml
category Package
@@ -211799,6 +212295,35 @@ catalogue-license lppl1.3c
catalogue-topics font-mgmt font-use maths
catalogue-version 2.3
+name mathgreeks
+category Package
+revision 71248
+shortdesc Use different Greek letter fonts in math mode
+relocated 1
+longdesc The purpose of this package is to provide access to numerous
+longdesc Greek letter fonts for math mode, without altering other
+longdesc mathematical characters and symbols and without loading whole
+longdesc extensions that provide these fonts. Moreover, the chosen font
+longdesc or shape can be changed dynamically throughout the document.
+containersize 5256
+containerchecksum aafbb4e4a0fe51125bc4019fd2487b78acca38b9c021e82d12765a2776e21ba170e6c098bd4b527b17dbc068f9a0e7d7e5c8e2228623617d7010e1bc863a7cff
+doccontainersize 1706612
+doccontainerchecksum aa605f0e65c8dfec96e34684c16a9b5d75bcb40a57e9b9f99e25116333fdcf69dce32b0c28f0ba9ae08278e90620669b691f2a7f38ce0ec9365fcdd09269d608
+docfiles size=421
+ RELOC/doc/latex/mathgreeks/README.md details="Readme"
+ RELOC/doc/latex/mathgreeks/mathgreeks.pdf details="Package documentation"
+srccontainersize 12132
+srccontainerchecksum f12cd750bfeb2a2b2e8d921783e1c5ab02b461f4998ea54c8d929aea77d33589e4bbc0bd8e00742d08cecf3c2b122304f0ebf5d8db1604d7f921ec64cf158feb
+srcfiles size=14
+ RELOC/source/latex/mathgreeks/mathgreeks.dtx
+ RELOC/source/latex/mathgreeks/mathgreeks.ins
+runfiles size=7
+ RELOC/tex/latex/mathgreeks/mathgreeks.sty
+catalogue-ctan /macros/latex/contrib/mathgreeks
+catalogue-license lppl1.3c
+catalogue-topics font-supp-maths
+catalogue-version 1.2
+
name mathlig
category Package
revision 54244
@@ -219573,26 +220098,26 @@ catalogue-version 1.8f
name mismath
category Package
-revision 70255
+revision 71172
shortdesc Miscellaneous mathematical macros
relocated 1
longdesc The package provides some mathematical macros to typeset:
longdesc mathematical constants e, i, p in upright shape (automatically)
longdesc as recommended by ISO 80000-2, vectors with nice arrows and
-longdesc adjusted norm (and tensors), some standard operator names,
-longdesc improved spacings in mathematical formulas, systems of
-longdesc equations and small matrices, displaymath in double columns for
-longdesc lengthy calculations.
-containersize 4612
-containerchecksum b9ab82136bf50c1c90c2765108ea46320ff01b2adc03e4c8c9159c454008a4f62e9a132dc237e7b6192c55ff0ac54d7b638857d13042144dd391e5875105e05c
-doccontainersize 152328
-doccontainerchecksum 7199dbf6d533058820713ba115a1bfa614712e28208aa9e6badc7c6d61640931d7e122158f6e2c48dec1d1c79336dfa6fc9515ae3f09f43421ae11c8a8ce454a
-docfiles size=39
+longdesc adjusted norm (and tensors), tensors in sans serif bold italic
+longdesc shape, some standard operator names, improved spacings in
+longdesc mathematical formulas, systems of equations and small matrices,
+longdesc displaymath in double columns for lengthy calculations.
+containersize 4912
+containerchecksum 8dc385c7715062904b0f7f73100ccf9b9dc148ceb9fcac6f167ce8146c82c95d534cb4884d56cf1df267ba180f37209badfc4a61d7368d40076627275745be26
+doccontainersize 404964
+doccontainerchecksum e0c2c010be7f64fc25c4ecc8823c47bcab6b3cc46fbfcfe2903b5577b4b954d23011ae58ffa5d25099d3e733fdb19153e5075ab60c3b18ebb0163fc0265bd44b
+docfiles size=109
RELOC/doc/latex/mismath/README.md details="Readme"
RELOC/doc/latex/mismath/mismath.pdf details="Package documentation"
-srccontainersize 24368
-srccontainerchecksum 604ede6439698bbfa0f4ea54e875c3ede4041a38afd95271d785cdafb4f54fa51a9049a377af694069038101989e2e1f325093acb719239cc6bb8702ef16d8b6
-srcfiles size=21
+srccontainersize 26200
+srccontainerchecksum 05e28daa35f6a19397dd80a7560cb3801dceab0b603974dc231307422be9748e03f3186231a2b5659f47788d1beaac993d1c3c1061c2a31eb2e4d79952ba0cda
+srcfiles size=23
RELOC/source/latex/mismath/mismath.dtx
RELOC/source/latex/mismath/mismath.ins
runfiles size=4
@@ -219600,7 +220125,7 @@ runfiles size=4
catalogue-ctan /macros/latex/contrib/mismath
catalogue-license lppl1.3
catalogue-topics maths
-catalogue-version 2.12
+catalogue-version 3.0
name missaali
category Package
@@ -228218,7 +228743,7 @@ catalogue-topics psychology journalpub bibtex-sty apa
name msu-thesis
category Package
-revision 70844
+revision 71284
shortdesc Class for Michigan State University Master's and PhD theses
relocated 1
longdesc This is a class file for producing dissertations and theses
@@ -228228,11 +228753,11 @@ longdesc Dissertations. The class should meet all current requirements
longdesc and is updated whenever the university guidelines change. The
longdesc class is based on the memoir document class, and inherits the
longdesc functionality of that class.
-containersize 13516
-containerchecksum f840dc7d347140766e7bde399303ffd6044b4d3b0c075bc884374bbbd3b20c8ba8e714034a2cc3c90f89ae878248337af0eb3ae135cc203b37ff9c2c008726ba
-doccontainersize 539736
-doccontainerchecksum e69f782e5f381417e0087f9ac31e4af07331410484801de3fce4434e91bb5527c2901f0a8846e6ada66494bc83dcb518f0a5b6cf9e3dcedab000442f3b8eaf49
-docfiles size=157
+containersize 13680
+containerchecksum 370e2f320646a7e233eb415f31defeaccc6e7dc11318090cc2eaa8589db2b2a6d4d2f54406e54bd2b00dcefac22428260f1d0fdefe2afcde8342b6ac6b8aa156
+doccontainersize 543500
+doccontainerchecksum 4a4acf6813add8cc97a77ac476f29e162fa6199efa27287d915c800977f21dd3c01739c5cd5e29ee48037141c082a984adef0158dfb04157f9682b70153c56bb
+docfiles size=158
RELOC/doc/latex/msu-thesis/README.md details="Readme"
RELOC/doc/latex/msu-thesis/docs/msu-thesis.tex
RELOC/doc/latex/msu-thesis/msu-thesis.pdf details="Package documentation"
@@ -228255,7 +228780,7 @@ catalogue-contact-repository https://github.com/amunn/msu-thesis
catalogue-ctan /macros/latex/contrib/msu-thesis
catalogue-license lppl1.3
catalogue-topics class dissertation doc-templ std-conform
-catalogue-version 4.2
+catalogue-version 4.2b
name mtgreek
category Package
@@ -237415,17 +237940,17 @@ catalogue-version 2.4
name notebeamer
category Package
-revision 71002
+revision 71192
shortdesc A template for printing presentations on notepaper
relocated 1
longdesc This template provides an easy way to put Beamer presentations
longdesc on note paper and quickly produce notebooks. It is optimized
longdesc for Goodnotes' default paper size.
-containersize 2408
-containerchecksum ca675449350fbe56a81ffd0327282b5c3ecfd5bec61634ac45afc3163b9f2ca881c784b89ec48b5dae53b8df09350acabd0dcd308eee0660f5b2ea41ac84ed89
-doccontainersize 3434376
-doccontainerchecksum 06b2dc01902b95a3b2e02f1fdd17e8c6af4b12c462292091b28ffb7614e80ebc3ce291ac39864286f9a916def922ad033edf59262d33031f93b273d62352f18e
-docfiles size=1059
+containersize 2424
+containerchecksum 299a643ddc055b195a7a45abc2ae2b5da9456eaedf60d1ddb289d1d0815f0384000fbde01e01497dcb73f72edfa2c929bd2bf7462f9b3a6db744f42e709cd366
+doccontainersize 2870836
+doccontainerchecksum 6b806a177bbb2540a9ca6d5143d4d62d61eb42e75797b494a095cf6f6f6bf72b2e76021838cf98fa891f6e4ef47693889a6e674586b75b9c8dbbdaf5740f41ef
+docfiles size=949
RELOC/doc/latex/notebeamer/License
RELOC/doc/latex/notebeamer/README.md details="Readme"
RELOC/doc/latex/notebeamer/figures/beamerdemo.pdf
@@ -237434,15 +237959,16 @@ docfiles size=1059
RELOC/doc/latex/notebeamer/notebeamer.tex
runfiles size=3
RELOC/tex/latex/notebeamer/notebeamer.sty
-catalogue-contact-announce https://t.me/hsiastexcafe
+catalogue-contact-announce https://qm.qq.com/q/RGFmHwBecC
catalogue-contact-bugs https://github.com/xiamyphys/notebeamer/issues
catalogue-contact-development https://github.com/xiamyphys
+catalogue-contact-home https://github.com/xiamyphys/notebeamer
catalogue-contact-repository https://github.com/xiamyphys/notebeamer
catalogue-contact-support https://qm.qq.com/q/RGFmHwBecC
catalogue-ctan /macros/latex/contrib/notebeamer
catalogue-license lppl1.3c
catalogue-topics notes presentation doc-templ pgf-tikz
-catalogue-version 3.0a
+catalogue-version 3.0b
name notes
category Package
@@ -249892,6 +250418,46 @@ catalogue-license lppl1.3
catalogue-topics legal biblatex
catalogue-version 1.7
+name osda
+category Package
+revision 71147
+shortdesc Commands for Proceedings of the Workshop on Open-Source Design Automation
+relocated 1
+longdesc This package automatically places a copyright notice as an
+longdesc un-numbered footnote on the title page of a document that calls
+longdesc \maketitle, indicating the information on the workshop where
+longdesc the paper was presented, along with additional information on
+longdesc the host conference, the license under which the document is
+longdesc published, and a link to the corresponding web page of the
+longdesc paper. The generated copyright notice contains a logo of the
+longdesc workshop, and a QR code that points to the paper's web page (to
+longdesc lead to further material). For cases when the copyright notice
+longdesc is not automatically set in the title page's footnote, the
+longdesc copyright notice can be set manually as well.
+containersize 5360
+containerchecksum d7cfd315d963f0e5889265a03278de20b0510e8ea957d0de3b5a986d796506a4474011d8169b0b12410f42c759a854be2077ec0830d9c5157917498dc99706c8
+doccontainersize 371836
+doccontainerchecksum 055d31d2873d1bf3493d64476e6521b4c98a7e36d081743ef692f7cd571de33a4ed791550ac93b4466630078d22ea0ed3b883acfa504a1f2c8a77d5fff730bec
+docfiles size=101
+ RELOC/doc/latex/osda/README.md details="Readme"
+ RELOC/doc/latex/osda/example.png
+ RELOC/doc/latex/osda/osda.pdf details="Package documentation"
+srccontainersize 9348
+srccontainerchecksum b418ba437b5d90c16a84c8e09da63f1fb5f5ab2838aea80fc816b24f5db289277928e38b60970fca27dad3df3cb34fc18fe713e326f40af6e070f032027095b9
+srcfiles size=9
+ RELOC/source/latex/osda/osda.dtx
+ RELOC/source/latex/osda/osda.ins
+runfiles size=4
+ RELOC/tex/latex/osda/osda.sty
+catalogue-contact-bugs https://osda.ws/r/vZnf4
+catalogue-contact-development https://osda.ws/r/AGryr
+catalogue-contact-home https://osda.ws/r/ir2rh
+catalogue-contact-repository https://osda.ws/r/X0mQT
+catalogue-ctan /macros/latex/contrib/osda
+catalogue-license lppl1.3 other-nonfree
+catalogue-topics journalpub footnote
+catalogue-version 1.4.0
+
name oststud
category Package
revision 67217
@@ -254835,7 +255401,7 @@ catalogue-version 0.3
name pdfjam
category Package
-revision 68597
+revision 71219
shortdesc Shell scripts interfacing to pdfpages
longdesc The package makes available the pdfjam shell script that
longdesc provides a simple interface to much of the functionality of the
@@ -254846,11 +255412,11 @@ longdesc output. It is useful for joining files together, selecting
longdesc pages, reducing several source pages onto one output page,
longdesc etc., etc.
depend pdfjam.ARCH
-containersize 12784
-containerchecksum ce5f86bc1091795bd749d79b348d5f2e5e9e012925222552c9b9431100d1608a20356fb6379c15cfcbc76096e65b2fac6725ecaa485952a28408191db2c46652
-doccontainersize 107244
-doccontainerchecksum c72b039c93eb3ae542351117de5d52eaec2bb7a191092ff8547947b11e9d1a6a921010d211a1366f71846121576cd6ac105d3002f95ebd3fd4aaa8106855ba5e
-docfiles size=41
+containersize 13024
+containerchecksum 4a998e156902274505d8e9e34e59855961f93dc5a0ab53ea95669878697214d93db657700cdf194bb8d94205a0867fdb77f91187dca0469e450e0249244b22e0
+doccontainersize 159588
+doccontainerchecksum 6b8a14ecee8b71a429873df491fa8a183bd8c309a5d00d7fe68d74673862de99821c48191a8ca3744ad39e074c3312292d31955a3947a17dce128759f682317e
+docfiles size=54
texmf-dist/doc/man/man1/pdfjam.1
texmf-dist/doc/man/man1/pdfjam.man1.pdf
texmf-dist/doc/support/pdfjam/COPYING
@@ -254858,13 +255424,13 @@ docfiles size=41
texmf-dist/doc/support/pdfjam/VERSION
texmf-dist/doc/support/pdfjam/pdfjam.conf
texmf-dist/doc/support/pdfjam/tests.zip
-runfiles size=11
+runfiles size=12
texmf-dist/scripts/pdfjam/pdfjam
catalogue-contact-repository https://github.com/rrthomas/pdfjam
catalogue-ctan /support/pdfjam
catalogue-license gpl2+
catalogue-topics pdfprocess
-catalogue-version 3.10
+catalogue-version 3.11
name pdfjam.aarch64-linux
category Package
@@ -260992,23 +261558,23 @@ catalogue-topics doc-supp
name piton
category Package
-revision 71132
-shortdesc Typeset Python listings with LPEG
+revision 71244
+shortdesc Typeset informatic listings with LPEG of LuaLaTeX
relocated 1
longdesc This package uses the Lua library LPEG to typeset and highlight
longdesc informatic listings in several languages. It requires the use
longdesc of LuaLaTeX. It won't work with XeLaTeX, nor pdfLaTeX.
-containersize 19864
-containerchecksum 2bd8da68b6c66b7757f709d939cb27bdea74ec65fcdd1a98883c2db9a8e191df0bee5f048f49c6e703becd9cbf3ca80f658aae1cb1aede851e00b1a647b2ba8c
-doccontainersize 875516
-doccontainerchecksum 9d0fce071ac6db145abaa6084a7f608c70f725d5b54c9e4370adc612e0ddbf42c33979990fd8d98d78deac7afd77da84693867cb8c6ec6fbd5f92e55df7317a6
-docfiles size=386
+containersize 19920
+containerchecksum 7eba4be6f3c56584e859b3ec33132348433c227684c3890fa04ce836340065461ada5d36ca403129bfd094f6205bcfcd9104093bb119433f390f31c874a8c374
+doccontainersize 875684
+doccontainerchecksum 324d4add24642125449fafba723e3639decc058fb453de219b620e29a6f8f823d74e22e6f0e67890aa01f9bb687954753c0819f070e7a0ce9df531e835434dfc
+docfiles size=383
RELOC/doc/lualatex/piton/README.md details="Readme"
RELOC/doc/lualatex/piton/piton-french.pdf details="Package documentation (French)" language="fr"
RELOC/doc/lualatex/piton/piton-french.tex
RELOC/doc/lualatex/piton/piton.pdf details="Package documentation (English)"
-srccontainersize 57044
-srccontainerchecksum 2e7189f2fb217ff089ee0c4997bcb8cf6b66e615ac20aa041608a54ccd16be661d79cf7514690b2353b8502e2fc6195feda6393e1ce9e6cfbae27a05a24db220
+srccontainersize 57212
+srccontainerchecksum 6c2de2ebb8e560358b6f187c366ba1e7d8c119ac4a342e524eeb251d7e8f4114b969703abb24340a96a20d5dd42b97d6f06ba4e13d6dd381ce99e9d1bb6add1e
srcfiles size=69
RELOC/source/lualatex/piton/piton.dtx
RELOC/source/lualatex/piton/piton.ins
@@ -261020,7 +261586,7 @@ catalogue-contact-repository https://github.com/fpantigny/piton
catalogue-ctan /macros/luatex/latex/piton
catalogue-license lppl1.3
catalogue-topics listing synt-hlt luatex expl3
-catalogue-version 3.0
+catalogue-version 3.0a
name pittetd
category Package
@@ -267508,7 +268074,7 @@ catalogue-version 0.13c
name ppt-slides
category Package
-revision 69568
+revision 71155
shortdesc Good-looking slide decks a la PowerPoint (PPT)
relocated 1
longdesc This LaTeX package helps you create slide decks as good-looking
@@ -267527,18 +268093,18 @@ depend tikzpagenodes
depend tools
depend varwidth
depend xcolor
-containersize 4116
-containerchecksum 9206d0b59cb501b129ffcca39639593317d2941ba1a982d036296800ce9486bebbf87d0194b43ca811365044a9dc8d27ad59169b2e187d229511db4b08b878f7
-doccontainersize 791428
-doccontainerchecksum 4565f7aadae38518e2e5f68fd9994670a62b492c2e57344cbeaff4a60d601bd95da23f0c5a74c98507f5023d87d24c73199bcda6fbf7cbae6719951debe7ec77
+containersize 4120
+containerchecksum 9abb6f6a878fa10e3a2872248e2e1f83439ceaa44f5e5019629f492bda0b12dac346bd19a3de6c17b545d3eaee7ac5e3106ff3ef1e078b0c7a6e6bccec1267ea
+doccontainersize 791448
+doccontainerchecksum fbc1b0bb51118c3eaafb1344f8803c5409babb2138f5221fc85aa4eea27c98ed71b77fd429a0a291c063dc7f02c9bd1aad33808cb017df53b1a997c41823523c
docfiles size=256
RELOC/doc/latex/ppt-slides/DEPENDS.txt
RELOC/doc/latex/ppt-slides/LICENSE.txt
RELOC/doc/latex/ppt-slides/README.md details="Readme"
RELOC/doc/latex/ppt-slides/ppt-slides.pdf details="Package documentation and example of use"
RELOC/doc/latex/ppt-slides/socrates.jpg
-srccontainersize 6688
-srccontainerchecksum 2a7bf0d2b9229678565ccdce5c8d01fafd07cc5bc3b2000add41e027ecff7a38149bee9bb04d841dfe0e9993e91c0b9456bd5039c2479b775e4710169540bde0
+srccontainersize 6692
+srccontainerchecksum 29051cd8dac11ac45ca5b52d820835ede9ef7473c2a0f620ed00a364a04a89de417e630b5f7812c643c37f676cc552353220f2bded741f921bde44d57905c920
srcfiles size=7
RELOC/source/latex/ppt-slides/ppt-slides.dtx
RELOC/source/latex/ppt-slides/ppt-slides.ins
@@ -267553,7 +268119,7 @@ catalogue-contact-repository https://github.com/yegor256/ppt-slides
catalogue-ctan /macros/latex/contrib/ppt-slides
catalogue-license mit
catalogue-topics presentation
-catalogue-version 0.3.2
+catalogue-version 0.3.3
name pracjourn
category Package
@@ -268223,7 +268789,7 @@ catalogue-version 1.1
name profcollege
category Package
-revision 71100
+revision 71295
shortdesc A LaTeX package for French maths teachers in college
relocated 1
longdesc This package provides some commands to help French mathematics
@@ -268233,16 +268799,16 @@ longdesc \Pythagore{ABC}{5}{7} to write the entire calculation of AC
longdesc with the Pythagorean theorem, \Trigo[Cosinus]{ABC}{3}{}{60} to
longdesc write the entire calculation of AC with cosine, ... and some
longdesc others.
-containersize 1343496
-containerchecksum 2b5ad8bf8471cd56f4edf7ec1a6f19a40e5b80ba1bbb6e2966fb573956b6c03a7cefdd2ab76f2f93475df4190e1d65fd7c88d4df597e5931df31d3785e242af8
-doccontainersize 15037612
-doccontainerchecksum 1b6d15f915eed716ab998c2245d7f5914ddb16071f4e060e6ba36960a804a008fe1ae3d3f619d400e5daa1a110116941f66488dead147db5aa5870d813aa9fd9
-docfiles size=3917
+containersize 1345996
+containerchecksum 0e4182ed212382c4b0621aa89a5f47c3d31e15bf55fc8fdbf5ef997047e1ed61813e10209ba88995bbf2ec7a7ca176e32af15143d52916865b89d2bbf1fc5204
+doccontainersize 15086100
+doccontainerchecksum 421fa6175d5044764978da1b553fe7a6071ac88cf1b2f59ed962f924b82d00dc7e5325ab1eb949f2a759d203aa6a0cc3fb14b64e3bddb481d7300469f0b15af5
+docfiles size=3930
RELOC/doc/latex/profcollege/PfCLogoNumberHive.png
RELOC/doc/latex/profcollege/ProfCollege-doc.pdf details="Package documentation" language="fr"
- RELOC/doc/latex/profcollege/ProfCollege-doc.zip
RELOC/doc/latex/profcollege/README details="Readme"
-runfiles size=2945
+ RELOC/doc/latex/profcollege/profcollege-doc.zip
+runfiles size=2950
RELOC/metapost/profcollege/PfCAfficheur.mp
RELOC/metapost/profcollege/PfCAllumettes.mp
RELOC/metapost/profcollege/PfCArithmetique.mp
@@ -268466,6 +269032,7 @@ runfiles size=2945
RELOC/metapost/profcollege/PfCzambie.dat
RELOC/metapost/profcollege/PfCzimbabwe.dat
RELOC/tex/latex/profcollege/PfCAllumettes.tex
+ RELOC/tex/latex/profcollege/PfCArbreChiffre.tex
RELOC/tex/latex/profcollege/PfCAssemblagesSolides.tex
RELOC/tex/latex/profcollege/PfCAutomatismes.tex
RELOC/tex/latex/profcollege/PfCAutonomie.tex
@@ -268605,6 +269172,7 @@ runfiles size=2945
RELOC/tex/latex/profcollege/PfCTrigonometrie.tex
RELOC/tex/latex/profcollege/PfCTrio.tex
RELOC/tex/latex/profcollege/PfCTriominos.tex
+ RELOC/tex/latex/profcollege/PfCVisualisationMulDeci.tex
RELOC/tex/latex/profcollege/PfCVueCubes.tex
RELOC/tex/latex/profcollege/PfCYohaku.tex
RELOC/tex/latex/profcollege/PfCdobble.lua
@@ -268613,7 +269181,7 @@ catalogue-also proflycee
catalogue-ctan /macros/latex/contrib/profcollege
catalogue-license lppl1.3c
catalogue-topics maths french teaching
-catalogue-version 0.99-A-d
+catalogue-version 0.99-A-f
name proflabo
category Package
@@ -268640,7 +269208,7 @@ catalogue-version 1.0
name proflycee
category Package
-revision 71019
+revision 71235
shortdesc A LaTeX package for French maths teachers in high school
relocated 1
longdesc This package provides some commands to help French mathematics
@@ -268649,20 +269217,17 @@ longdesc create splines with "derivative control";
longdesc \CalculFormelParametres and \CalculFormelLigne in order to
longdesc create an xcas-windows-like; \CodePythonLstFichier to create
longdesc code presentation and code execution with pythontex.
-containersize 69912
-containerchecksum c41bacf622a9daa2400d7f0a885981a549273ea6e15b52d86f30be55157c434b4e8126584ad78c352670f514a1664e3a86636a925be2d6b4825cebd571a219fa
-doccontainersize 2024508
-doccontainerchecksum bd4f193b69d563fba8672db9430f4538d7fe89892cda9004a998bffae25de9e0e1a74d8497b3aaf6ff3d48145dc2939df5a68d5f55a92b82fc1e3178f9e79667
-docfiles size=518
+containersize 72500
+containerchecksum c184dd596d6524654ec03976a88dd152777340c83c37635347190d4622afb073d8e636cedf0d050fcc4020e4c44cd6ff5896a45202e65f84aa8514f72c7c731f
+doccontainersize 2115472
+doccontainerchecksum b6d2d6d0be88ab07fb755397c9f29c0a604c08a08191b2bf0f72757532382025bd3abaaeea4e42a04b350e985658989641fbdf249aae69b3eabc5e72af183a57
+docfiles size=535
RELOC/doc/latex/proflycee/ProfLycee-doc.pdf details="Package documentation" language="fr"
- RELOC/doc/latex/proflycee/ProfLycee-doc.tex
RELOC/doc/latex/proflycee/ProfLycee-docctan.zip
RELOC/doc/latex/proflycee/ProfLycee-exemples-pyluatex.pdf details="Examples using pyluatex" language="fr"
- RELOC/doc/latex/proflycee/ProfLycee-exemples-pyluatex.tex
RELOC/doc/latex/proflycee/ProfLycee-exemples-pythontex.pdf details="Examples using python" language="fr"
- RELOC/doc/latex/proflycee/ProfLycee-exemples-pythontex.tex
RELOC/doc/latex/proflycee/README.md details="Readme"
-runfiles size=136
+runfiles size=143
RELOC/metapost/proflycee/PfLEspace.mp
RELOC/tex/latex/proflycee/ProfLycee.sty
RELOC/tex/latex/proflycee/proflycee-tools-aleatoire.tex
@@ -268690,41 +269255,41 @@ catalogue-contact-repository https://github.com/cpierquet/ProfLycee
catalogue-ctan /macros/latex/contrib/proflycee
catalogue-license lppl1.3c
catalogue-topics maths french teaching expl3 pgf-tikz
-catalogue-version 3.03d
+catalogue-version 3.04b
name profmaquette
category Package
-revision 71128
+revision 71161
shortdesc Use exercises in different types of documents
relocated 1
longdesc This LaTeX package can help French maths teachers to put one
longdesc and the same exercise into different sorts of documents.
-containersize 24912
-containerchecksum 0eeffbe6891495244c45c3b0631f442ebd9fde6a9175818448b10af95161a687ce9858d6af6efd101bcbaa8ea27c9bbbf42bbdec1fab536377936ce2cd6bcc3c
-doccontainersize 385624
-doccontainerchecksum f69b4ffe915e1b636b008ce6247492b3f5dbac5208cb26e753dc5e40167716e5dacdf33c8f4d615a125cebfd70675250c9f42b078945ea8f9eaf37bfbff9c700
-docfiles size=101
+containersize 25092
+containerchecksum a9eb036903176aa68c4362a491feaa0820bfeea5db9dd1aaca1c2f069f4e3f9302fc784a27075065c55e313ac13554a12566bcfc5ae2a997aa5bf96004efa5b4
+doccontainersize 385104
+doccontainerchecksum 71c019ad709daf8f453a0bc02670f4afa8d902babc7a64917d6f359d1ac8f927eee62413968fdef337d6503816f99f3f4ae5a18b4d03e57a7f6386675a2f42cd
+docfiles size=100
RELOC/doc/latex/profmaquette/ProfMaquette-doc.pdf details="Package documentation" language="fr"
RELOC/doc/latex/profmaquette/ProfMaquette-doc.zip
RELOC/doc/latex/profmaquette/README details="Readme"
-runfiles size=35
+runfiles size=36
RELOC/tex/latex/profmaquette/ProfMaquette.sty
catalogue-ctan /macros/latex/contrib/profmaquette
catalogue-license lppl1.3c
catalogue-topics teaching exercise maths
-catalogue-version 0.93
+catalogue-version 0.94
name profsio
category Package
-revision 71014
+revision 71240
shortdesc Commands (with TikZ) to work with French "BTS SIO" maths themes
relocated 1
longdesc This package provides some commands (in French) to work with:
longdesc tables of Karnaugh ; MPM graphs ; simple graphs.
-containersize 18260
-containerchecksum e313a1dda54e2d10ba581689fc375b41a22e73ad6457995d1f1c899baafba40337fdbd51ac51e698d2d848f3883131f648cf43b7e618e067fde0f746b5be522d
-doccontainersize 505760
-doccontainerchecksum 34648494fb74dfd34931e70b205fc84e164da6664f71d457f418182256679863a6f97afa6ae91011dd0daea725cfe2df93ff6e6da9b7b0d751ba2b1c77fbcc96
+containersize 18276
+containerchecksum a8d464dfb86c3804b60ff445c1feb6f543f946b4912b9778e1b3fe48cd15a4de4bbc4bb8b0b24f5a886abde4aea0ffd8689bed7fd1a561fa131f87cb4f056de7
+doccontainersize 505836
+doccontainerchecksum c762865a1493b1d5728d806b97cffe78fe24134510694ff8cd39af394091b0d4241e98ef0a819b45815d1d2cad1dff4a9fbc2a05cf537888061399de57278440
docfiles size=144
RELOC/doc/latex/profsio/ProfSio-doc-fr.pdf details="Package documentation" language="fr"
RELOC/doc/latex/profsio/ProfSio-doc-fr.tex
@@ -268736,7 +269301,7 @@ catalogue-contact-repository https://github.com/cpierquet/profsio
catalogue-ctan /graphics/pgf/contrib/profsio
catalogue-license lppl1.3c
catalogue-topics graphics pgf-tikz maths
-catalogue-version 0.2.6
+catalogue-version 0.2.7
name program
category Package
@@ -272353,17 +272918,17 @@ catalogue-version 0.67
name pst-mirror
category Package
-revision 60506
+revision 71294
shortdesc Images on a spherical mirror
relocated 1
longdesc The package provides commands and supporting PostScript
longdesc material for drawing images as if reflected by a spherical
longdesc mirror.
-containersize 12192
-containerchecksum 316a6cd32fb2b8c59f554a49695ad097627e641982d1a6a8b1e5db12949c2cc84dd150a190834604d57ca10735779cb09983c28e7339e92f3cb82d642dc9b61b
-doccontainersize 6784012
-doccontainerchecksum f577868d1cf76a372a3c248f6dde28ed423beaa5e445a6a343d9b5e4c2ab9f737e4266c12702fcbf6dda91a6639624ff99b4cba29d65ebd4c7a0c3f3ce1323b3
-docfiles size=1778
+containersize 12212
+containerchecksum fbb93946a878ebc74bfd120def441840674362cb1e9bca71daddd5e557d9b6dc7f0ca8f958beeaf8f652fa5f087519443b5ec7460af89c7e5e44cb7effd23284
+doccontainersize 7288916
+doccontainerchecksum a66d33d450133b03be288abd3997a10d7857215dc603f0fe8966d10743907535cd3219cd14464e9057539be5efb11297c9acc8165ef4a636d5503e0c9c679033
+docfiles size=2005
RELOC/doc/generic/pst-mirror/Changes
RELOC/doc/generic/pst-mirror/README details="Readme"
RELOC/doc/generic/pst-mirror/createEPS/make.sh
@@ -272373,10 +272938,15 @@ docfiles size=1778
RELOC/doc/generic/pst-mirror/createEPS/test.pdf
RELOC/doc/generic/pst-mirror/createEPS/test.sh
RELOC/doc/generic/pst-mirror/createEPS/test.tex
+ RELOC/doc/generic/pst-mirror/createEPS/tiger-b.eps
+ RELOC/doc/generic/pst-mirror/createEPS/tiger-c.eps
+ RELOC/doc/generic/pst-mirror/createEPS/tiger.eps
RELOC/doc/generic/pst-mirror/createEPS/xa.eps
RELOC/doc/generic/pst-mirror/createEPS/xa.tex
RELOC/doc/generic/pst-mirror/createEPS/xb.eps
+ RELOC/doc/generic/pst-mirror/createEPS/xb.pdf
RELOC/doc/generic/pst-mirror/createEPS/xc.eps
+ RELOC/doc/generic/pst-mirror/createEPS/xc.pdf
RELOC/doc/generic/pst-mirror/pst-mirror-doc.bib
RELOC/doc/generic/pst-mirror/pst-mirror-doc.pdf details="Package documentation" language="fr"
RELOC/doc/generic/pst-mirror/pst-mirror-doc.tex
@@ -272387,7 +272957,7 @@ runfiles size=21
catalogue-ctan /graphics/pstricks/contrib/pst-mirror
catalogue-license lppl
catalogue-topics graphics-use pstricks
-catalogue-version 1.02
+catalogue-version 1.02a
name pst-moire
category Package
@@ -272565,17 +273135,17 @@ catalogue-version 6.1
name pst-optic
category Package
-revision 67052
+revision 71278
shortdesc Drawing optics diagrams
relocated 1
longdesc A package for drawing both reflective and refractive optics
longdesc diagrams. The package requires pstricks later than version
longdesc 1.10.
-containersize 14692
-containerchecksum 132b3eb936678d51a4581efc14998c794047959f89789ed22098326912d00eaa0e39396608d3c1aa78f1fe8bccb21ba2ab454bd2b3744ba252c24f164c58e23c
-doccontainersize 311200
-doccontainerchecksum a7169c870dbcb336025aec5d475afa9691ee524b35ef3404f2e3244c4e4c0f08def16a8eb458eed1a8ebce27c969ec80004904484615588fdbb401b863052efb
-docfiles size=128
+containersize 14696
+containerchecksum 9385315da01d3545188916ccd1c96926d222e75f085ba2f3d23918b13a54c7f0d98a445974d8daa906a55a077cd616f346619738eb91a99b0d4b09db1702c69c
+doccontainersize 313388
+doccontainerchecksum 21cfe853f5fb5cef257f9200c347be2c6f26b878cbbb3710f4d50d0232360430ac2bd4cc49bce2e381dd34b6a8089ffedb012a7155297d323f5c439efaa5f1a9
+docfiles size=142
RELOC/doc/generic/pst-optic/Changes
RELOC/doc/generic/pst-optic/README details="Readme"
RELOC/doc/generic/pst-optic/pst-optic-doc.bib
@@ -272587,7 +273157,7 @@ runfiles size=20
catalogue-ctan /graphics/pstricks/contrib/pst-optic
catalogue-license lppl
catalogue-topics physics optics diagram pstricks
-catalogue-version 1.02a
+catalogue-version 1.03
name pst-osci
category Package
@@ -281671,7 +282241,7 @@ catalogue-version 0.0.3
name reledmac
category Package
-revision 70202
+revision 71236
shortdesc Typeset scholarly editions
relocated 1
longdesc A package for typesetting scholarly critical editions,
@@ -281680,11 +282250,11 @@ longdesc itself was a LaTeX port of the plain TeX EDMAC macros. The
longdesc package supports indexing by page and by line numbers, and
longdesc simple tabular- and array-style environments. The package is
longdesc distributed with the related reledpar package.
-containersize 55856
-containerchecksum 14d61ddad1df554dd885ca64e25fd1acb319e7ee8c749dd81526a8a8ccce38bf89c8dd46ea27929cc9a5a601db215be170d1e573739eb40449f3dc122a7fa53a
-doccontainersize 10465172
-doccontainerchecksum 42165888b7902d2fcd69582e403f3e67326608b27c7c73ef876a6978a9d3213a51809ca1a0e72c8fa9670dff624fb9a872aab4d96622dd74ab118c5cf8eb1490
-docfiles size=3416
+containersize 55884
+containerchecksum 44a5e00b0906a668a85426de80559806391bcf19e045dcdf073aa8f036fd433795a4c67ff974696509492e76fbb2631d6031a82cdb38e932258dd44259db6427
+doccontainersize 10461544
+doccontainerchecksum 3c60ce5191517719cd6023fea95c2080ac5961c6e265004e5392d4fe9ffd02422aaaea287678494ff318994d081671595e60fd38336010267750caace016c862
+docfiles size=3415
RELOC/doc/latex/reledmac/README.md details="Readme"
RELOC/doc/latex/reledmac/doc-include/migrate-mac.dtx
RELOC/doc/latex/reledmac/doc-include/migrate-par.dtx
@@ -281790,15 +282360,15 @@ docfiles size=3416
RELOC/doc/latex/reledmac/migration.pdf
RELOC/doc/latex/reledmac/reledmac.pdf details="Package documentation"
RELOC/doc/latex/reledmac/reledpar.pdf
-srccontainersize 210188
-srccontainerchecksum 4edb81f9f50e2336a464e1303adf2b077b07300ada3c8fe36858ac0ff1a107a4cf606f03c0a97e24c8f10bcc0368a802337ef01afa1863c9591fc0c8ea3c7c13
+srccontainersize 210224
+srccontainerchecksum 8fab3ca2ffe9399e78b6df2c7f884a8a7e5937e89a2791d56511f3c9423f80018d159ad7e65f495d72135f8f072635eac4835cec05c0b67a0d830bf22f89e8cc
srcfiles size=300
RELOC/source/latex/reledmac/migration.dtx
RELOC/source/latex/reledmac/reledmac.dtx
RELOC/source/latex/reledmac/reledmac.ins
RELOC/source/latex/reledmac/reledpar.dtx
RELOC/source/latex/reledmac/reledpar.ins
-runfiles size=100
+runfiles size=101
RELOC/tex/latex/reledmac/reledmac.sty
RELOC/tex/latex/reledmac/reledpar.sty
catalogue-also ednotes poemscol ledmac eledmac
@@ -281808,7 +282378,7 @@ catalogue-contact-support http://geekographie.maieul.net/146
catalogue-ctan /macros/latex/contrib/reledmac
catalogue-license lppl1.3
catalogue-topics crit-ed
-catalogue-version 2.40.0
+catalogue-version 2.40.1
name relenc
category Package
@@ -282652,6 +283222,41 @@ catalogue-license lppl1.3
catalogue-topics proof
catalogue-version 1.0
+name rigidnotation
+category Package
+revision 71264
+shortdesc Typeset vectors and matrices following the RIGID notation
+relocated 1
+longdesc This package provides LaTeX macros to easily and concisely
+longdesc typeset vectors and matrices in a flexible way such as to
+longdesc follow the RIGID notation convention. The package enables the
+longdesc user to define custom commands that can then be used in any
+longdesc math-mode environment to efficiently and rigorously typeset the
+longdesc notational elements commonly used in robotics research (and
+longdesc many other fields) for position vectors, rotation matrices,
+longdesc pose matrices, etc.
+depend l3packages
+depend mathtools
+containersize 2140
+containerchecksum 3d86939eed9fe74755550c22e045229ae42c3890704d752a22fa78beace8bbcfbf0d9d73c76fc7301234807902f53df6d2b0112c44670ac380994928656a4c43
+doccontainersize 273576
+doccontainerchecksum 77604f52e7fd72528e732bb01bdea196dea9c6ffd14602425c4672146d41a41471f55843290a3bf78b67644f8314db2e343b1b6b5f78f2855840f61712c1ea0c
+docfiles size=68
+ RELOC/doc/latex/rigidnotation/README.md details="Readme"
+ RELOC/doc/latex/rigidnotation/rigidnotation.pdf details="Package documentation"
+srccontainersize 5184
+srccontainerchecksum 618cc40e752b56d590f46a81d737c666d74f6b17231418f29218c9587cf3d94f0875b652d19fc570eed3a729441e74ea1b5bafc63fb039bb60e19dd779d9ca40
+srcfiles size=6
+ RELOC/source/latex/rigidnotation/rigidnotation.dtx
+ RELOC/source/latex/rigidnotation/rigidnotation.ins
+runfiles size=3
+ RELOC/tex/latex/rigidnotation/rigidnotation.sty
+catalogue-contact-repository https://github.com/PhilNad/rigidnotation-latex
+catalogue-ctan /macros/latex/contrib/rigidnotation
+catalogue-license lppl1.3c
+catalogue-topics maths engineering
+catalogue-version 1.0.0
+
name rit-fonts
category Package
revision 67659
@@ -288913,7 +289518,7 @@ catalogue-version 2.2
name rpgicons
category Package
-revision 71129
+revision 71269
shortdesc Icons for tabletop role-playing games
relocated 1
longdesc This package provides a set of high-quality icons for use in
@@ -288922,11 +289527,11 @@ longdesc be used in the body text, but they can also be used in other
longdesc contexts such as graphics or diagrams. The package comes in two
longdesc variants, one based on the l3draw package, and the other on
longdesc PGF/TikZ.
-containersize 17780
-containerchecksum ee1fe86fdaa7d1cc89c4bf0e3818cfd620b02193151e8ab2496ef2ececcd4f954aca98bdd886b8ef37624a3803c11ea40c0e7d6e7618e06acf5edb08e8f42de8
-doccontainersize 462284
-doccontainerchecksum 40c6380af4edd47e0ca9f3fde79d239b79dd15c573010ff09a015c1540e819cc32298cbffe77c961e7cb805a3988fc38760fc6f4ca9ee9ad416ac3a32443d407
-docfiles size=137
+containersize 17800
+containerchecksum 114c9063e34d987602e28c713f4a3c121e27ee434b04aef7e7906ce82c732760ba9a02f5c198e2c002e7cf1e02d2044370ae1960c70c82ef10211a9bbececb17
+doccontainersize 467884
+doccontainerchecksum 5db2079f59fa7212aa608780bc221fc242a59553ec03ed93078719f73347ba3c3bb0379fcd83f4273cd4b99deccede9b3adfa3a4c4f74883b51fc0695e1018b4
+docfiles size=141
RELOC/doc/latex/rpgicons/LICENSE
RELOC/doc/latex/rpgicons/README.md details="Readme"
RELOC/doc/latex/rpgicons/rpgicons-doc.pdf details="Package documentation"
@@ -288940,7 +289545,7 @@ catalogue-contact-repository https://github.com/jasperhabicht/rpgicons
catalogue-ctan /macros/latex/contrib/rpgicons
catalogue-license lppl1.3c
catalogue-topics games graphics pgf-tikz expl3
-catalogue-version 1.8.2
+catalogue-version 1.8.3
name rrgtrees
category Package
@@ -293615,7 +294220,7 @@ catalogue-version 1.2.1
name se2thesis
category Package
-revision 71020
+revision 71285
shortdesc A Thesis Class for the Chair of Software Engineering II at the University of Passau, Germany
relocated 1
longdesc The se2thesis bundle provides a document class for writing a
@@ -293628,10 +294233,10 @@ longdesc title page, it still provides large degrees of freedom to its
longdesc users. However, the package's documentation also provides
longdesc recommendations regarding several aspects, for example,
longdesc recommending BibLaTeX for bibliographies.
-containersize 9768
-containerchecksum 2f083778e011605b8c34cc1d6cb7460f54e12557f29d7633c98eb20f71da72c597a163b6976dd3ace6816f1ab124de8e2ae5b10ee32351a1a595acaa78f46e6f
-doccontainersize 585376
-doccontainerchecksum 1bad0cf81eca1e2b246b65c2059c2381fde090756640095e2bb43c755b4dd00587e7bc5f40bbe39462cd8c8056179860fa0cde8a9eecdf06d077bbbb7740084c
+containersize 9752
+containerchecksum 3cf7376762f78daee867fa0e4b7cc0881665dd9b204bb5cfab26bc530e5ef04ba94e4a1ddd0aec93259e2445ec04391e6b9484fe261bb9452c2576aef5dd8aa0
+doccontainersize 583180
+doccontainerchecksum b683f14944bbc6d4acf3b246fe84dbd19265508739c71a7dbbb2e3b8868bb43c524387553c1cafefc67211759c1a1125b8f311726d63c58c8449dd31cd46da0d
docfiles size=156
RELOC/doc/latex/se2thesis/CHANGELOG.md
RELOC/doc/latex/se2thesis/LICENSE.txt
@@ -293641,14 +294246,14 @@ docfiles size=156
RELOC/doc/latex/se2thesis/se2thesis.pdf details="Package documentation"
RELOC/doc/latex/se2thesis/se2thesis.tex
srccontainersize 25328
-srccontainerchecksum 5688acc29a785ccf2038b239b7b0b30ca5b0fa971caf457c17be882af8800e561cd7ce3985f0b169b05597ff1929cb733c9db3e47b23ecb571248680e2985271
+srccontainerchecksum 140775c68fc2198ad8d1bb3e15d5692dbfc730ac195c6cdaf22c017b355d71fceeedcfe3dea81076629cd332c8d755cdd45c1e017bd17292cc36f56f4ab14fba
srcfiles size=31
RELOC/source/latex/se2thesis/se2colors.dtx
RELOC/source/latex/se2thesis/se2fonts.dtx
RELOC/source/latex/se2thesis/se2packages.dtx
RELOC/source/latex/se2thesis/se2thesis.dtx
RELOC/source/latex/se2thesis/se2thesis.ins
-runfiles size=15
+runfiles size=14
RELOC/tex/latex/se2thesis/se2colors.sty
RELOC/tex/latex/se2thesis/se2fonts.sty
RELOC/tex/latex/se2thesis/se2packages.sty
@@ -293660,7 +294265,7 @@ catalogue-contact-repository https://github.com/se2p/se2thesis
catalogue-ctan /macros/latex/contrib/se2thesis
catalogue-license lppl1.3c
catalogue-topics class dissertation expl3
-catalogue-version 3.4.0
+catalogue-version 4.0.1
name secdot
category Package
@@ -297042,7 +297647,7 @@ catalogue-version 1.36
name siunitx
category Package
-revision 71066
+revision 71193
shortdesc A comprehensive (SI) units package
relocated 1
longdesc Typesetting values with units requires care to ensure that the
@@ -297065,17 +297670,17 @@ longdesc sistyle, unitsdef and units. The aim is to have one package to
longdesc handle all of the possible unit-related needs of LaTeX users.
longdesc The package relies on LaTeX 3 support from the l3kernel and
longdesc l3packages bundles.
-containersize 67888
-containerchecksum 4a6b115ab7fe6f14853ef3c544eb33327e8f3319c2b87d23657bf7c6b76e747214693c848a029ea79a6488414bf6ccf254b607550ad729ad0e29a46bf3503695
-doccontainersize 1285832
-doccontainerchecksum fa9e7471e565736f99265b0ab5f29e84bb9aae37fe77f88cdaae79b79881e305d35b73d4c94f246759df5ca8a92032653fe95606d7f913091fd05a681a68a330
+containersize 67920
+containerchecksum 1de9ac41f82a457ae4f1d6e0eba999580d10ed818229cba464fa6771bc858a2262d5858d38221679204aa0221642646d66f2d57ce0fe71e88050eea623542ff0
+doccontainersize 1286820
+doccontainerchecksum 1d4b74290024f15bb659d4d9a422f0c287ae7eeccede2eb767ef3211fbce5582bd399f537d4632d21d974d58a30d51a8d3307b97e6a05b00846c55019952aacf
docfiles size=351
RELOC/doc/latex/siunitx/CHANGELOG.md
RELOC/doc/latex/siunitx/README.md details="Readme"
RELOC/doc/latex/siunitx/siunitx-code.pdf details="Code documentation"
RELOC/doc/latex/siunitx/siunitx.pdf details="User manual"
srccontainersize 123104
-srccontainerchecksum e3056a4067d140656ede067b752514ffdf9f0aafb96514083e97841328cca850ef29390c9f6d15fdfd32384e72d84e66cf6ea1420972ea8b4badb68c7e626dad
+srccontainerchecksum e8acf4668987ab40e4c49e3096f0b4961a4c87635058a58bf38febf6da01b678e93827ca8adc0f017265218f6960cf9abfab8de91dd613c1c2d9edd02700d0be
srcfiles size=190
RELOC/source/latex/siunitx/siunitx-abbreviation.dtx
RELOC/source/latex/siunitx/siunitx-angle.dtx
@@ -297107,7 +297712,7 @@ catalogue-contact-repository https://github.com/josephwright/siunitx
catalogue-ctan /macros/latex/contrib/siunitx
catalogue-license lppl1.3c
catalogue-topics units scientific-docs expl3
-catalogue-version 3.3.16
+catalogue-version 3.3.17
name sjtutex
category Package
@@ -301983,18 +302588,18 @@ catalogue-version 2.7
name spbmark
category Package
-revision 71067
+revision 71256
shortdesc Customize superscripts and subscripts
relocated 1
longdesc This package provides three commands \super, \sub and \supersub
longdesc to improve the layout of superscripts and subscripts which can
longdesc be adjusted with respect to relative position and format, and
longdesc can be used in text and math mode.
-containersize 3928
-containerchecksum c8bdcd15b4c4903a5e14e55a896fd939502259a81568b12f530d080374c60a5974d98f704e46035be7e1b3c95b80aa21dac7684df8b5f3d394f9df9e25fc3021
-doccontainersize 99196
-doccontainerchecksum fb78b8b276d1b98b2d39e26e8edd24296853a7146547a4a3fccdcf6ea45d6c4bede330a860bcf877ee32b148263360effa2985d08254133826edecd5f5f5847f
-docfiles size=30
+containersize 3924
+containerchecksum e726a80b4f117fbff3d9369f4bd53a819d0f9d1f8819682cbdcf02c8a1d441f16db5fceb1d414adf748cea8dc6628e29f764a47670e2d38a013b6f7afca8d563
+doccontainersize 95744
+doccontainerchecksum d37b3dbfffb329eda93829be73e1438267ded295369c134c5a23f6fec5f1ba310c9475b0275da00268fa789ece0a5848d769ad39d720c26ff1e6749c468d0114
+docfiles size=29
RELOC/doc/latex/spbmark/README.md details="Readme"
RELOC/doc/latex/spbmark/spbmark.pdf details="Package documentation"
RELOC/doc/latex/spbmark/spbmark.tex
@@ -302004,7 +302609,7 @@ catalogue-contact-repository https://github.com/texno3/spbmark
catalogue-ctan /macros/latex/contrib/spbmark
catalogue-license cc-by-4
catalogue-topics subsup-pos expl3
-catalogue-version 1.46f
+catalogue-version 1.46i
name spectral
category Package
@@ -309093,6 +309698,49 @@ catalogue-license lppl1.3
catalogue-topics graphics diagram diagram-flow pgf-tikz
catalogue-version 0.8.2
+name synthslant
+category Package
+revision 71249
+shortdesc Synthetically slant text
+relocated 1
+longdesc This package allows to slant ("shear") short pieces of text to
+longdesc the left or to the right by an arbitrary angle, thus creating
+longdesc for example "fake italics" or upright italics. Several
+longdesc back-ends that do the actual shearing are supported, though
+longdesc currently the pdfLaTeX back-end works best concerning output
+longdesc quality and processing speed.
+containersize 2824
+containerchecksum f79b2108c7e9815025f4cfd85f7e3d0edba52f8a5ede437bee1e7e2127cce6e809c0b7ba44117d6d8d92ac7de8a72abed54846a021b095a417f22e2dab422da1
+doccontainersize 1103696
+doccontainerchecksum 0df5b1a1f5bf860a2e270ce2dc48957e53af8b9c9759b57764b4e13bdf58526091f4b4495470b4d47eff4260cc1484dd44295b360a789742a9c1e7bf70c905c9
+docfiles size=299
+ RELOC/doc/latex/synthslant/LICENSE
+ RELOC/doc/latex/synthslant/README.md details="Readme"
+ RELOC/doc/latex/synthslant/RELEASE-HOWTO.md
+ RELOC/doc/latex/synthslant/compare-with-the-gimp.png.base64
+ RELOC/doc/latex/synthslant/index.md
+ RELOC/doc/latex/synthslant/shear-transform.mp
+ RELOC/doc/latex/synthslant/synthslant-gauge.pdf
+ RELOC/doc/latex/synthslant/synthslant-gauge.tex
+ RELOC/doc/latex/synthslant/synthslant.ist
+ RELOC/doc/latex/synthslant/synthslant.pdf details="Package documentation"
+ RELOC/doc/latex/synthslant/title.mp
+srccontainersize 157428
+srccontainerchecksum 69744131aa79b86d73fb100e5ed35d1a4ce265606a1d6142523ff32693baf3fb91323655b531ea1acc28f4cdd9845bca838b55a2ba808bc587ba57bd43a9f2a4
+srcfiles size=72
+ RELOC/source/latex/synthslant/Makefile
+ RELOC/source/latex/synthslant/synthslant.dtx
+ RELOC/source/latex/synthslant/synthslant.ins
+runfiles size=2
+ RELOC/tex/latex/synthslant/synthslant.sty
+catalogue-contact-bugs https://github.com/cspiel/synthslant/issues
+catalogue-contact-home https://github.com/cspiel/synthslant
+catalogue-contact-repository https://github.com/cspiel/synthslant.git
+catalogue-ctan /macros/latex/contrib/synthslant
+catalogue-license lppl1.3c
+catalogue-topics font-use font-supp
+catalogue-version 0.1
+
name syntrace
category Package
revision 15878
@@ -310731,7 +311379,7 @@ catalogue-version 1.4a
name tblr-extras
category Package
-revision 69794
+revision 71270
shortdesc Extra libraries for tabularray for caption and babel compatibility
relocated 1
longdesc The tabularray package offers a modern and nice way to typeset
@@ -310742,20 +311390,22 @@ longdesc text in tabularray headers: caption library: Use the caption
longdesc package captions with tabularray environments (talltblr and
longdesc longtblr), babel library: Translated "continued" text for babel
longdesc languages (spanish, french, ngerman).
-containersize 1744
-containerchecksum 3cbff9817f6a0eaf84a7e58c896b4ff4708d3f755dd035235af53dc7de251ea2a6ddd14784892d41fd0bd87d44468f9e8108619f7f6e14968827c60a71456561
-doccontainersize 20932
-doccontainerchecksum 0041925b1e3c938441ced5200eacd84faaae4e24354f30014bb5c2f2cc4cd1f195e61ff1e6d43a3e58481fd43082d6d6dc168297a069e6be5393ae5e79a2885e
-docfiles size=9
+containersize 2148
+containerchecksum 5ba83c97dd58b607798b8dce96160b8a73058096ccba2489e0b44ca3640f70c34b7f3d00d1bfebd0d36e0befa0daca1165828b5085d8ea39f624cf6f304dc7f1
+doccontainersize 22924
+doccontainerchecksum 2bc4eb74aa66d759f481be66d9b8e6e8abfcc50616fec791519b821049e95986730c094216e0f11614a103cd795657c93b0992b59323ca4ba7792ae06a55fd75
+docfiles size=10
RELOC/doc/latex/tblr-extras/README.md details="Readme"
RELOC/doc/latex/tblr-extras/tblr-extras-doc-EN.pdf details="Package documentation"
RELOC/doc/latex/tblr-extras/tblr-extras-doc-EN.tex
-runfiles size=1
+runfiles size=2
RELOC/tex/latex/tblr-extras/tblr-extras.sty
+catalogue-contact-bugs https://github.com/mmerino25/tblr-extras/issues
+catalogue-contact-repository https://github.com/mmerino25/tblr-extras
catalogue-ctan /macros/latex/contrib/tblr-extras
catalogue-license lppl1.3c
catalogue-topics table table-long expl3
-catalogue-version 1.0
+catalogue-version 1.1
name tcldoc
category Package
@@ -314086,7 +314736,7 @@ binfiles arch=x86_64-solaris size=1
name tex4ht
category Package
-revision 71072
+revision 71257
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
@@ -314107,10 +314757,10 @@ longdesc files from them is nontrivial, and generally done with the
longdesc Makefile in development, from which the TeX4ht package in TeX
longdesc Live is updated.
depend tex4ht.ARCH
-containersize 1140668
-containerchecksum c8c08a213921fa35630298b59c4d824233e9f0eee7009afcae4bf5c5f4d8983b79768dd7d614b1b0c46a13e72791c72e79e846481a887baded86b741f739d9f1
+containersize 1131816
+containerchecksum a89027f27105d63fcc7ff948d1eb5b5813acd6e7aa4f28f428fd0a328ffbe66317553f0457f13126db9b29ac63cb8b8c26c0580f1bb1199f3534e69a5400d7c4
doccontainersize 136384
-doccontainerchecksum e1bf7f3b20b0d15c20b8220ea5b8d0adac2515c6b17e87df746b9c9c0ef1f78b841cd100618218be0a7862f0495faa59f64dbe7869a246331c5a69ea639b56b5
+doccontainerchecksum cd451468dab4d81a5257a47f98ca9a80240efc167872df9dcba7ea611ec3b86d231f3e24829f8d158f78c64593d44b6f41f47d8066bac611918d6dba4751a192
docfiles size=260
texmf-dist/doc/generic/tex4ht/Makefile
texmf-dist/doc/generic/tex4ht/README details="Readme"
@@ -314182,8 +314832,8 @@ docfiles size=260
texmf-dist/doc/generic/tex4ht/mn56.html
texmf-dist/doc/generic/tex4ht/mn5x.png
texmf-dist/doc/generic/tex4ht/mn6x.png
-srccontainersize 1489484
-srccontainerchecksum af764e61f4d7e34d1a3be86aa5829dcd618b5bc32a3b64cf4bbb32298963c6c7ab97ffc5cd523ebc90bc57dcfebdbda8cb12f87fca3df6ada6e76d8f6014aa19
+srccontainersize 1495764
+srccontainerchecksum aa27b1984d4c5713e8d84b8699c00c0acee8beecc83cc1da90cb935ff861d6f71de75f067b46b8f1ea138850790bf0b15581c9474f06bacf1b0efd1c1b27b01e
srcfiles size=4647
texmf-dist/source/generic/tex4ht/ChangeLog
texmf-dist/source/generic/tex4ht/Makefile
@@ -314264,7 +314914,7 @@ srcfiles size=4647
texmf-dist/source/generic/tex4ht/update-htfonts
texmf-dist/source/generic/tex4ht/wripro.tex
texmf-dist/source/generic/tex4ht/xtpipes.tex
-runfiles size=13095
+runfiles size=13096
texmf-dist/scripts/tex4ht/ht.sh
texmf-dist/scripts/tex4ht/htcopy.pl
texmf-dist/scripts/tex4ht/htlatex.sh
@@ -314713,6 +315363,7 @@ runfiles size=13095
texmf-dist/tex/generic/tex4ht/tabularx.4ht
texmf-dist/tex/generic/tex4ht/tabulary-a.4ht
texmf-dist/tex/generic/tex4ht/tabulary.4ht
+ texmf-dist/tex/generic/tex4ht/tagpdf-base-hooks.4ht
texmf-dist/tex/generic/tex4ht/tagpdf-hooks.4ht
texmf-dist/tex/generic/tex4ht/tasks.4ht
texmf-dist/tex/generic/tex4ht/tcilatex.4ht
@@ -326371,13 +327022,13 @@ docfiles size=651
name texlive-en
category TLCore
-revision 71042
+revision 71152
shortdesc TeX Live manual (English)
relocated 1
-containersize 272
-containerchecksum 4b4288540e1f445e3798a425a42adca0ba64d3080d6bd3382038ee2f2e45a1b1689ee0c0508ed547b2725d549694363bc5edf07cc67bace5b2a91e487b0676cb
-doccontainersize 1894240
-doccontainerchecksum f58f99d2dc2315629b2a6b1908f31db77394fe7c4757555c2bc0b2a61e75c664759e829fba30a0a8323421ef9375e964d309db91dc72b783751e73ac4d5c1d09
+containersize 276
+containerchecksum ffe4e1677dcb26c104df12d3ebe12a7d1fe810f329d6b5f20c16b865586f1576417cbc8026df061546e6513588b8ec7c907cdcd52e74f05570fda702f3362a03
+doccontainersize 1894416
+doccontainerchecksum 598d8229c0ae50fc4697909b7305ef614e5d3d8a884e5375c87da32b138c071b54dd0766a4a8080fe9863e3793e480c5c89afd8231f795560cbfe718a8bea16b
docfiles size=1634
RELOC/doc/info/tlbuild.info
RELOC/doc/texlive/texlive-en/.dict.pws
@@ -326542,14 +327193,14 @@ docfiles size=748
name texlive-msg-translations
category TLCore
-revision 70662
+revision 71159
shortdesc translations of the TeX Live installer and TeX Live Manager
longdesc This package contains the translated messages of the TeX Live
longdesc installer and TeX Live Manager. For information on creating or
longdesc updating translations, see
longdesc http://tug.org/texlive/doc.html#install-tl-xlate.
-containersize 152076
-containerchecksum 2d2253add2d6b0b333eefabe1d495ff9e5faae21f4d50eefd60402a44d68677fb515ac6bc3ed92755722a712223daac516839bccd2d527e99137e6e3c269b80d
+containersize 152052
+containerchecksum f9e423284208ea71bc3e14138517309b6544cdaefd43cc135b6192ee6db0a435b073bf8dce1103fba641a20b2cf64ef01b482056d48677fa7b3b883f9af1f2d0
runfiles size=377
tlpkg/translations/README
tlpkg/translations/cs.po
@@ -326611,7 +327262,7 @@ docfiles size=376
name texlive-scripts
category TLCore
-revision 71141
+revision 71298
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.
@@ -326619,11 +327270,11 @@ depend texlive-scripts.ARCH
depend texlive.infra
execute addMap mathpple.map
postaction shortcut type=menu name="TeX Live command-line" cmd=TEXDIR/tlpkg/installer/tl-cmd.bat
-containersize 114160
-containerchecksum 8e8620d16579cace450f8cb4d851e6e66434e4e410d553f0bf41fd6faf812b2094241d01e0783d5abe53fa3b15004b150a21a2ef4f0c06c8ae2072f2e1377d06
-doccontainersize 434928
-doccontainerchecksum ed5d48fdca274eac080d6375527673165cdc32a1ae1ff3ea18a5effedf48e99f6372f1ad5b52f487a5a673cbbe1744b2438c3641292e9e40cc38acb05a596d7a
-docfiles size=568
+containersize 114364
+containerchecksum 8c3253dee46338b0aafb6005de17726c390e3a795033cfb06da7d4e4ce5404ea155bc3736fe8d85e213d0c4274b4a0aeefcf1f98f8970f871edda51a7e207a86
+doccontainersize 435608
+doccontainerchecksum ec6b867323b7d92f2f6fa2a96c28c8c5758138ebe34c8dfdc30e6031e77e4604e8badd7e083c2d02be9ae03cd20a2cde1b458d0ebf565ea94c8ee9bb3e078f1f
+docfiles size=569
doc.html
texmf-dist/doc/man/man1/fmtutil-sys.1
texmf-dist/doc/man/man1/fmtutil-sys.man1.pdf
@@ -327337,10 +327988,10 @@ binfiles arch=universal-darwin size=13
name texlive-scripts.windows
category TLCore
-revision 70934
+revision 71215
shortdesc windows files of texlive-scripts
-containersize 60548
-containerchecksum 1c798b73bdf0f6b208ddafeeea071e64d10f01e20d4905d245ed15e4b2a09abd4c890e003d7de861ac0fa7a1f932f48f6ae7d3b9bcbcbd876e32704d8dc24ff9
+containersize 60592
+containerchecksum 0810e6794b9c93275c9c1451205d136be38ce2a1647b4ff5bf1ee3e3c181b7f40262c5d5f914570d487301d7ecb64ebe6c41ce05143157144df5c70a7a218b5d
binfiles arch=windows size=55
bin/windows/fmtutil-sys.exe
bin/windows/fmtutil-user.exe
@@ -335982,6 +336633,35 @@ catalogue-license lppl1.3
catalogue-topics maths graphics pgf-tikz
catalogue-version 2.0
+name tkz-grapheur
+category Package
+revision 71241
+shortdesc A LaTeX package with tools for graph plotting (and TikZ)
+relocated 1
+longdesc This package provides some commands to help French mathematics
+longdesc teachers for 15-18 years olds, with graphs of functions :
+longdesc define and draw functions and interpolations curves ; work with
+longdesc integrals, tangents, intersersections ; get coordinates of
+longdesc points ; ... The syntax is rather explicit, like
+longdesc \DefinirCourbe, \RecupererCoordonnees,\TrouverIntersections,
+longdesc etc
+containersize 8636
+containerchecksum 863033e6a3b51a1cc309563e916b3eb122b1b355f6efbd6566dc1225ba3976dd0e96f579517ed10af18a4c9c110889dcf4b403ddc2344726a21bcff74019a083
+doccontainersize 671464
+doccontainerchecksum 173b900e2fd008eef75632f4ae24c4d0e299681d0be1d4d3553c9b6ab0433ab7949f7384f5b70be3fb5bd8f08dcea057843e529593bc70a2ff2e101e33b0841f
+docfiles size=181
+ RELOC/doc/latex/tkz-grapheur/README.md details="Readme"
+ RELOC/doc/latex/tkz-grapheur/tkz-grapheur-doc-fr.pdf details="Package documentation"
+ RELOC/doc/latex/tkz-grapheur/tkz-grapheur-doc-fr.tex
+runfiles size=10
+ RELOC/tex/latex/tkz-grapheur/tkz-grapheur.sty
+catalogue-contact-home https://forge.apps.education.fr/pierquetcedric/package-latex-tkz-grapheur
+catalogue-contact-repository https://forge.apps.education.fr/pierquetcedric/package-latex-tkz-grapheur
+catalogue-ctan /graphics/pgf/contrib/tkz-grapheur
+catalogue-license lppl1.3c
+catalogue-topics graphics maths pgf-tikz
+catalogue-version 0.1.0
+
name tkz-orm
category Package
revision 61719
@@ -338784,7 +339464,7 @@ binfiles arch=x86_64-solaris size=1
name tlgs.windows
category TLCore
-revision 70494
+revision 71290
catalogue ghostscript
shortdesc Freely available PostScript interpreter
longdesc Ghostscript is a freely available PostScript interpreter which
@@ -338793,8 +339473,8 @@ longdesc complement to a TeX installation, used in many utilities,
longdesc including PostScript/PDF viewers such as gv and GSview.
longdesc Ghostscript is no longer held on CTAN: please see the home page
longdesc for downloads.
-containersize 8545728
-containerchecksum 4fa06caebec3acbeec13f08664c94588bac24310a3f0137a65d00018b96b8f95075d02e33ca2fcf44ac3b16f79f563c52cd3930b1f01f90741c6c9971ba3f202
+containersize 8541856
+containerchecksum 605cadc6ea257f10046eaa279f7a360d109bda3a4eaabf89c4685e41356a99c6b30b360357178e2a3ab0bc2cd00aa9afca9eb6a12114dc49ee3ffb702053ed2c
runfiles size=8023
texmf-dist/scripts/tlgs/eps2eps.lua
texmf-dist/scripts/tlgs/pdf2dsc.lua
@@ -344615,7 +345295,7 @@ catalogue-version 1.0
name tuda-ci
category Package
-revision 71032
+revision 71209
shortdesc LaTeX templates of Technische Universitat Darmstadt
relocated 1
longdesc The TUDa-CI-Bundle provides a possibility to use the Corporate
@@ -344623,11 +345303,11 @@ longdesc Design of TU Darmstadt in LaTeX. It contains documentclasses as
longdesc well as some helper packages and config files together with
longdesc some templates for user documentation, which currently are only
longdesc available in German.
-containersize 48640
-containerchecksum a1fe14cdcaaf71b1fa6b5b4b41ed8853e9a25eddb1b3a5985473fbd22a72e4c5827db57848d0628573fb8d9a1282e2ab633ea85bb3f54d04dd96fc421928dea2
-doccontainersize 1163784
-doccontainerchecksum 6259f73130817a342061a94a446b9c708f3bedd52850bdf8b28809f576b951b57c343cd8f94926a4c49fe7ce0fd9984c0971e15f1073a1a572fd90716e72afba
-docfiles size=1753
+containersize 48816
+containerchecksum 11733db74777da85508404b4d5ff7ce87c0ea051bdbc2bfeb949242cd2cb8360cf8485b0609b5609fc36ee57377dbe3c330567efce306fdb07d2ced120cb95a8
+doccontainersize 1168744
+doccontainerchecksum 824655dd29c705e75ea9f2339c41ab05937292f7ddce41b26e3d1766a677473ee22de5910e813f3a8e91413bdf675a261a5b9bc9ac66bfc039b1da3bed101e8c
+docfiles size=1748
RELOC/doc/latex/tuda-ci/DEMO-TUDaAnnouncement.pdf
RELOC/doc/latex/tuda-ci/DEMO-TUDaAnnouncement.tex
RELOC/doc/latex/tuda-ci/DEMO-TUDaBeamer.pdf
@@ -344698,7 +345378,7 @@ catalogue-contact-repository https://github.com/tudace/tuda_latex_templates
catalogue-ctan /macros/latex/contrib/tuda-ci
catalogue-license lppl1.3c
catalogue-topics class doc-templ letter dissertation presentation poster std-conform
-catalogue-version 3.37
+catalogue-version 3.38
name tudscr
category Package
@@ -346236,6 +346916,197 @@ catalogue-license lppl1.3c
catalogue-topics font-devel typeset-tool
catalogue-version 0.4.7
+name typog
+category Package
+revision 71202
+shortdesc Typographic fine-tuning and micro-typographic enhancements
+longdesc This package provides macros for micro-typographic
+longdesc enhancements. It covers a variety of topics: Precise
+longdesc hyphenation control Disable/break ligatures Manual italic
+longdesc correction Extra kerning for slash and hyphen Raising selected
+longdesc characters (e.g. hyphen, en-dash, and em-dash) Aligning of the
+longdesc last line of a paragraph Filling of the last line of a
+longdesc paragraph Word spacing control Microtype front-end Slightly
+longdesc sloppy paragraphs Vertically partially-tied paragraphs
+longdesc Breakable displayed equations Setspace front-end Smooth
+longdesc ragged-right paragraphs Moreover, typog provides an environment
+longdesc to flag interesting parts of the information deluge typically
+longdesc accumulating in a LaTeX log-file and an associated tool,
+longdesc typog-grep, that selectively retrieves these parts.
+depend typog.ARCH
+containersize 12904
+containerchecksum 09ffe0ce16384d79e8d415aaee1d4a8d5d0d0dbebfbf5d5e53264c694510540b1eeebc808861b1a8db15456573decaee6871d1672b6a037c711eb59277f4f54a
+doccontainersize 1824604
+doccontainerchecksum ca34927262bc6288c1b249bdcc3b3cf3604c8d7bbf091e4865765bd7516e013e99dfe6769099d5ed365b0fedde431b83e8b30abbec7a671096fe9a6a5ba4e7b3
+docfiles size=485
+ texmf-dist/doc/latex/typog/README.md details="Readme"
+ texmf-dist/doc/latex/typog/RELEASE-HOWTO.md
+ texmf-dist/doc/latex/typog/crooked-paragraphs.mp
+ texmf-dist/doc/latex/typog/index.md
+ texmf-dist/doc/latex/typog/slant-angle.mp
+ texmf-dist/doc/latex/typog/smooth-parshapes.mp
+ texmf-dist/doc/latex/typog/teximan2latex.sed
+ texmf-dist/doc/latex/typog/title.mp
+ texmf-dist/doc/latex/typog/typog-example.pdf details="Examples of use"
+ texmf-dist/doc/latex/typog/typog-example.tex
+ texmf-dist/doc/latex/typog/typog-grep.1.pdf details="Man page for typog-grep"
+ texmf-dist/doc/latex/typog/typog-grep.pod
+ texmf-dist/doc/latex/typog/typog-nomt.tex
+ texmf-dist/doc/latex/typog/typog.ist
+ texmf-dist/doc/latex/typog/typog.pdf details="Package documentation"
+ texmf-dist/doc/man/man1/typog-grep.1
+ texmf-dist/doc/man/man1/typog-grep.man1.pdf
+srccontainersize 74392
+srccontainerchecksum 830d65b065d4a7bc144f2ab7402f6f719be615c8894afb7f3881a63bbcbdc2c60face180bbc466fbc9fb78b219464d8df4a6474eacdfc20d50cb4178b355d78b
+srcfiles size=89
+ texmf-dist/source/latex/typog/Makefile
+ texmf-dist/source/latex/typog/typog.dtx
+ texmf-dist/source/latex/typog/typog.ins
+runfiles size=18
+ texmf-dist/scripts/typog/typog-grep.pl
+ texmf-dist/tex/latex/typog/typog.sty
+catalogue-contact-bugs https://github.com/cspiel/typog/issues
+catalogue-contact-repository https://github.com/cspiel/typog
+catalogue-ctan /macros/latex/contrib/typog
+catalogue-license lppl1.3c
+catalogue-topics micro-layout letterspace
+catalogue-version 0.3
+
+name typog.aarch64-linux
+category Package
+revision 71202
+shortdesc aarch64-linux files of typog
+containersize 344
+containerchecksum f1a25bab39ec42d025158a76ecc2cc85138705b6cf7fa8edf47b8d44543dedc231ad3f635019872a7eccdeea0adef3a8e144b990009aca3275f49aa6d3f6579b
+binfiles arch=aarch64-linux size=1
+ bin/aarch64-linux/typog-grep
+
+name typog.amd64-freebsd
+category Package
+revision 71202
+shortdesc amd64-freebsd files of typog
+containersize 344
+containerchecksum 0d750ad05ad9d0015f83ade95606d7559a1e8b2766c27e59ebebf304745ee4353f85f84d5f2259dc7ef0f2420284cd75f313c6eee65141b493d476678d7de1ed
+binfiles arch=amd64-freebsd size=1
+ bin/amd64-freebsd/typog-grep
+
+name typog.amd64-netbsd
+category Package
+revision 71202
+shortdesc amd64-netbsd files of typog
+containersize 344
+containerchecksum 86d54a8d2f2292acc26731a4546f76b37fce8907d14fc5ad48933dcf25b13ff96d44a73685869b982c3189db51350589c76fbbb80ba524f521224a51dde5d266
+binfiles arch=amd64-netbsd size=1
+ bin/amd64-netbsd/typog-grep
+
+name typog.armhf-linux
+category Package
+revision 71202
+shortdesc armhf-linux files of typog
+containersize 340
+containerchecksum 1c3e965530c6e016895dbbb5ab8cc6a17f90b9fb0a5e874df26379512948270dee26980312661394579bd77796562d86d9af81442de1bdbd5b13326a5cca84f8
+binfiles arch=armhf-linux size=1
+ bin/armhf-linux/typog-grep
+
+name typog.i386-freebsd
+category Package
+revision 71202
+shortdesc i386-freebsd files of typog
+containersize 344
+containerchecksum 21707def3b225b2bc7989d4d07ac73067dcf59e682b4c2034ba5f8be3b87de3b0510ad991f15070fa4bc1cd7a79e5795b031658863af5f71a04d8e0fd98f0298
+binfiles arch=i386-freebsd size=1
+ bin/i386-freebsd/typog-grep
+
+name typog.i386-linux
+category Package
+revision 71202
+shortdesc i386-linux files of typog
+containersize 344
+containerchecksum 69442067ae0952fc91c9d42bbd3fdedf914fe8bda180be083416eea7158ad2938a0cc45320856200536359e577e698f1ff95fe8b1dddeece42db6d20bf9e9b45
+binfiles arch=i386-linux size=1
+ bin/i386-linux/typog-grep
+
+name typog.i386-netbsd
+category Package
+revision 71202
+shortdesc i386-netbsd files of typog
+containersize 340
+containerchecksum 70b5c24a447e549784e8508823c01920a028bc126041c5bb74e52e04ca135b5c23f67c5ee65baceeb2a42e6ef593fc5b528c73fbf0498457ee011f16d78b0150
+binfiles arch=i386-netbsd size=1
+ bin/i386-netbsd/typog-grep
+
+name typog.i386-solaris
+category Package
+revision 71202
+shortdesc i386-solaris files of typog
+containersize 344
+containerchecksum 1a42fc878ef9145b51cf432eb6fb59d3d5a30b0d3d5ca13e52e447ac48f48c370be1914897a6a1027518e2a628af6b36a19743217ee156273a62b7768255bec5
+binfiles arch=i386-solaris size=1
+ bin/i386-solaris/typog-grep
+
+name typog.universal-darwin
+category Package
+revision 71202
+shortdesc universal-darwin files of typog
+containersize 344
+containerchecksum a690a163b8f508b6493517fe76f581a8a5136e8f3ae91a7c7a20e8d855b70ae3e580dca07d83dcc9146cef840203a57528bd38828ad26e3b8608f2997e951950
+binfiles arch=universal-darwin size=1
+ bin/universal-darwin/typog-grep
+
+name typog.windows
+category Package
+revision 71202
+shortdesc windows files of typog
+containersize 2308
+containerchecksum 1061adfc22caa98cb1fab559e60d5f39d6af690daee20d1294872e064d86316e339d4f7a800ce8020c9aa564c4aa3db3092d3e2979a586c77b248a622b3e6967
+binfiles arch=windows size=2
+ bin/windows/typog-grep.exe
+
+name typog.x86_64-cygwin
+category Package
+revision 71202
+shortdesc x86_64-cygwin files of typog
+containersize 344
+containerchecksum 11e8948a4f39f2bac20f02d89355ab3b6092eab3c350cb6dc445113b0dc342e1d80107a5f316a38436991b335a20f3cd86e04e095c334d4ede1ea233e2045641
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/typog-grep
+
+name typog.x86_64-darwinlegacy
+category Package
+revision 71202
+shortdesc x86_64-darwinlegacy files of typog
+containersize 352
+containerchecksum b133b6efe289f75406d5163eaa95717020ef78ba87f5dd1d3132a053066d860fdc957e180d081fbfd51007b2c9c0b4673791353ed55c383e7bf8ae26adcd20a3
+binfiles arch=x86_64-darwinlegacy size=1
+ bin/x86_64-darwinlegacy/typog-grep
+
+name typog.x86_64-linux
+category Package
+revision 71202
+shortdesc x86_64-linux files of typog
+containersize 344
+containerchecksum fdc7e360dca5b05775964bf736aecfc85ac86aa0b24d686553a56c3a71e25af598487a3b586c2097538ee61ef0f8074bba2ff75c26570789675e129201417736
+binfiles arch=x86_64-linux size=1
+ bin/x86_64-linux/typog-grep
+
+name typog.x86_64-linuxmusl
+category Package
+revision 71202
+shortdesc x86_64-linuxmusl files of typog
+containersize 348
+containerchecksum b5fc8784b61aa67b55ffe68da9cd18f00b99fefe089132eac5716873ae2361bae76080d1d6c9bc41f3a52b8c387e872df1b1fdfb3aef3b929ea5b3d3dfce8679
+binfiles arch=x86_64-linuxmusl size=1
+ bin/x86_64-linuxmusl/typog-grep
+
+name typog.x86_64-solaris
+category Package
+revision 71202
+shortdesc x86_64-solaris files of typog
+containersize 344
+containerchecksum c4145487244ca3364b353a9c18609bc925ceaf676c78df0193a86d9e4f01793b19347d4db2ec5d5a9786019b731b605d373c7e2050e2eada7ecb52af746eebc1
+binfiles arch=x86_64-solaris size=1
+ bin/x86_64-solaris/typog-grep
+
name typogrid
category Package
revision 24994
@@ -352994,7 +353865,7 @@ catalogue-topics font font-body font-sans font-proportional font-otf font-type1
name univie-ling
category Package
-revision 66728
+revision 71217
shortdesc Papers, theses and research proposals in (Applied) Linguistics at Vienna University
relocated 1
longdesc This bundle provides LaTeX2e classes, BibLaTeX files, and
@@ -353008,11 +353879,11 @@ longdesc context. The classes can also be used for General and
longdesc Historical Linguistics as well as for other fields of study at
longdesc Vienna University. In this case, however, some settings may
longdesc have to be adjusted.
-containersize 164204
-containerchecksum 5ba91b2cdb6001a42426b77284aa68b82575997ffe1c5c62afedffd6a74710dc0e4af25df1cb4025a8ffc619376333b318a8be828490d45c7b55126e4c7848eb
-doccontainersize 4089056
-doccontainerchecksum bd576c575776ae2467f146f2cb344c97db797babce5c06a7785449010187a6ce8217b082ae84e0d045b543a4f3ba204f207d8c4ee61b7115f2b484ed4f237e6e
-docfiles size=1414
+containersize 165124
+containerchecksum 4b4e971ca6730a4ec27a98e8dfadd103bb7ab0098a9822f12ba1b41b1a0f95f2b5d04bd3ab4b946433f3422709eb505b3bc60425955006da157c157775b86ae7
+doccontainersize 3832500
+doccontainerchecksum ebd34e6060dfb113741de705a3937bdc6d904d9ffc81b8af47ed97aab387dfd8348a37a54487a085bc678554164795cf28970e1812dd5d50df0452f5dc80847e
+docfiles size=1378
RELOC/doc/latex/univie-ling/README details="Readme"
RELOC/doc/latex/univie-ling/templates/template-expose-deutsch.pdf
RELOC/doc/latex/univie-ling/templates/template-expose-deutsch.tex
@@ -353054,7 +353925,7 @@ docfiles size=1414
RELOC/doc/latex/univie-ling/univie-ling-wlg.tex
RELOC/doc/latex/univie-ling/univie-ling.pdf details="Package documentation (overview)"
RELOC/doc/latex/univie-ling/univie-ling.tex
-runfiles size=89
+runfiles size=90
RELOC/tex/latex/univie-ling/univie-ling-expose.cls
RELOC/tex/latex/univie-ling/univie-ling-handout.cls
RELOC/tex/latex/univie-ling/univie-ling-paper.cls
@@ -353072,7 +353943,7 @@ catalogue-contact-repository https://github.com/jspitz/univie-ling
catalogue-ctan /macros/latex/contrib/univie-ling
catalogue-license lppl1.3
catalogue-topics linguistic class dissertation article-like misc-paper std-conform
-catalogue-version 2.4
+catalogue-version 2.5
name unizgklasa
category Package
@@ -363154,7 +364025,7 @@ catalogue-topics biblatex
name wintools.windows
category TLCore
-revision 70576
+revision 71293
shortdesc utilities provided only for Windows
longdesc Common utilities, mainly from the w32tex distribution.
postaction filetype name="TL.PSViewer.view" cmd='"TEXDIR/bin/windows/psviewer.exe" "%1"'
@@ -363169,10 +364040,10 @@ postaction progid extension=.png filetype="TL.bitmap2eps.convert"
postaction progid extension=.ps filetype="TL.PSViewer.view"
postaction progid extension=.tif filetype="TL.bitmap2eps.convert"
postaction progid extension=.tiff filetype="TL.bitmap2eps.convert"
-containersize 6556256
-containerchecksum d37a2fa2dab2fc0153344aa3918f96aee5cc4febb62ecc6e0c63a06d33050da37e1bbe804bad324bc5714c0d6c7ce7fde1b6e5c5d43f6ddf0827a1c6bcec0540
-doccontainersize 979600
-doccontainerchecksum 167f2ec3e550d9c18302d5c837bf55b682e96a27c2325bc5290e4fb8f16ee73b1eec17393c9572a3e7d90cda99745d97f1c9db3227c4a376b3b60153f8360a2c
+containersize 5662004
+containerchecksum ae9bfc0e3bd269bc2dfeb4b619ca3c78155fb3cf0d9267d57242b4f63302f97362a96452d50d538f292350bfc68df04b072dab55734f1154f2b1b214bc0b3a37
+doccontainersize 979592
+doccontainerchecksum 32638148499466c52facfef7867c8ef69081edfe32f651709359c135c9d2a87683d15c552d8ffe523131bd48bbfa6ff4173aaef3381faa9503f8ccf8b9aacf73
docfiles size=331
texmf-dist/doc/support/bitmap2eps/bitmap2eps.README
texmf-dist/doc/support/psviewer/psviewer.README
@@ -363210,7 +364081,7 @@ docfiles size=331
texmf-dist/doc/support/wintools/zip.pdf
runfiles size=4
texmf-dist/scripts/bitmap2eps/bitmap2eps.vbs
- texmf-dist/scripts/psviewer/psviewer.vbs
+ texmf-dist/scripts/psviewer/psviewer.ps1
texmf-dist/scripts/tlaunch/tlaunchmode.pl
texmf-dist/web2c/tlaunch.ini
binfiles arch=windows size=11418
@@ -368369,18 +369240,111 @@ catalogue-ctan /macros/plain/contrib/xii-lat
catalogue-license lppl
catalogue-topics frivolous
+name ximera
+category Package
+revision 71243
+shortdesc Write online interactive content in LaTeX
+relocated 1
+longdesc The Ximera document class provides macros that support the
+longdesc creation of both PDF and online materials.
+containersize 14604
+containerchecksum 7815d213c4c1e1be5277b65c94dc24392af298eece6f841e8ae37e430c100fb191e3e11bc7b0a8e06a1df8680c8c321886dcb99019ec10d9db669500ed82737a
+doccontainersize 344204
+doccontainerchecksum 6ebb945e8cbc64ecc5004bf9ac740b489345da3bea8cf8db9dde91ee674dede8b5324da6ccd4eb859d86b9c8146f5c0569099710359c89e2c5bf0186418592c4
+docfiles size=148
+ RELOC/doc/latex/ximera/LICENSE
+ RELOC/doc/latex/ximera/README
+ RELOC/doc/latex/ximera/README.md details="Readme"
+ RELOC/doc/latex/ximera/installingLocally.md
+ RELOC/doc/latex/ximera/src/abstract.dtx
+ RELOC/doc/latex/ximera/src/activity.dtx
+ RELOC/doc/latex/ximera/src/answer.dtx
+ RELOC/doc/latex/ximera/src/banner.dtx
+ RELOC/doc/latex/ximera/src/choice.dtx
+ RELOC/doc/latex/ximera/src/clearEnv.dtx
+ RELOC/doc/latex/ximera/src/dialogue.dtx
+ RELOC/doc/latex/ximera/src/ending.dtx
+ RELOC/doc/latex/ximera/src/enumerate.dtx
+ RELOC/doc/latex/ximera/src/feedback.dtx
+ RELOC/doc/latex/ximera/src/foldable.dtx
+ RELOC/doc/latex/ximera/src/footnotes.dtx
+ RELOC/doc/latex/ximera/src/freeresponse.dtx
+ RELOC/doc/latex/ximera/src/graded.dtx
+ RELOC/doc/latex/ximera/src/hideEnv.dtx
+ RELOC/doc/latex/ximera/src/hints.dtx
+ RELOC/doc/latex/ximera/src/html.dtx
+ RELOC/doc/latex/ximera/src/hyperref.dtx
+ RELOC/doc/latex/ximera/src/image.dtx
+ RELOC/doc/latex/ximera/src/instructornotes.dtx
+ RELOC/doc/latex/ximera/src/interactives/desmos.dtx
+ RELOC/doc/latex/ximera/src/interactives/geogebra.dtx
+ RELOC/doc/latex/ximera/src/interactives/google.dtx
+ RELOC/doc/latex/ximera/src/interactives/graph.dtx
+ RELOC/doc/latex/ximera/src/interactives/include.dtx
+ RELOC/doc/latex/ximera/src/interactives/javascript.dtx
+ RELOC/doc/latex/ximera/src/interactives/sagemath.dtx
+ RELOC/doc/latex/ximera/src/interactives/video.dtx
+ RELOC/doc/latex/ximera/src/jax.dtx
+ RELOC/doc/latex/ximera/src/labels.dtx
+ RELOC/doc/latex/ximera/src/leash.dtx
+ RELOC/doc/latex/ximera/src/link.dtx
+ RELOC/doc/latex/ximera/src/logo.dtx
+ RELOC/doc/latex/ximera/src/macros.dtx
+ RELOC/doc/latex/ximera/src/makeCounter.dtx
+ RELOC/doc/latex/ximera/src/metadata.dtx
+ RELOC/doc/latex/ximera/src/only.dtx
+ RELOC/doc/latex/ximera/src/options.dtx
+ RELOC/doc/latex/ximera/src/optionsxourse.dtx
+ RELOC/doc/latex/ximera/src/outcomes.dtx
+ RELOC/doc/latex/ximera/src/packages.dtx
+ RELOC/doc/latex/ximera/src/pagesetup.dtx
+ RELOC/doc/latex/ximera/src/problem.dtx
+ RELOC/doc/latex/ximera/src/proof.dtx
+ RELOC/doc/latex/ximera/src/sectioning.dtx
+ RELOC/doc/latex/ximera/src/solution.dtx
+ RELOC/doc/latex/ximera/src/suppress.dtx
+ RELOC/doc/latex/ximera/src/textcolor.dtx
+ RELOC/doc/latex/ximera/src/theorems.dtx
+ RELOC/doc/latex/ximera/src/tikzexport.dtx
+ RELOC/doc/latex/ximera/src/title.dtx
+ RELOC/doc/latex/ximera/src/ungraded.dtx
+ RELOC/doc/latex/ximera/src/utilitymacros.dtx
+ RELOC/doc/latex/ximera/src/verbatim.dtx
+ RELOC/doc/latex/ximera/src/xkcd.dtx
+ RELOC/doc/latex/ximera/ximera.pdf details="Package documentation"
+srccontainersize 4740
+srccontainerchecksum a12d566c2c7481a72b5c56c9faa3769f8241676cfd95e48803a149c65230e9fee1e41227db7df0779c89e5b47bd8184ba0b18ce9606e78d65987abf27f9e51f5
+srcfiles size=7
+ RELOC/source/latex/ximera/Makefile
+ RELOC/source/latex/ximera/ximera.dtx
+ RELOC/source/latex/ximera/ximera.ins
+runfiles size=19
+ RELOC/tex/latex/ximera/pgfsys-ximera.def
+ RELOC/tex/latex/ximera/ximera.4ht
+ RELOC/tex/latex/ximera/ximera.cfg
+ RELOC/tex/latex/ximera/ximera.cls
+ RELOC/tex/latex/ximera/xourse.4ht
+ RELOC/tex/latex/ximera/xourse.cls
+catalogue-contact-bugs https://github.com/XimeraProject/ximeraLatex/issues
+catalogue-contact-home https://github.com/XimeraProject
+catalogue-contact-repository https://github.com/XimeraProject/ximeraLatex
+catalogue-ctan /macros/latex/contrib/ximera
+catalogue-license lppl1.3c
+catalogue-topics class
+catalogue-version 1.5.1
+
name xindex
category Package
-revision 67771
+revision 71279
shortdesc Unicode-compatible index generation
longdesc This package provides a Unicode-compatible index program for
longdesc LaTeX.
depend xindex.ARCH
-containersize 36356
-containerchecksum bf812f7ea5f981969b1963f470a0006c4afd937ab27f6b40f7897dc2b6ddd1a0ae60f347b8ed13483ec4fd9feccff257a79dd7b8a2720be1d49a40fe2b325fc6
-doccontainersize 608088
-doccontainerchecksum ec93cf3bb639326dc6905be018481da8438ebc5558e4c161419910e1a4427f6f7bb7bbf35ac779ea6769b6c009f9b6bf657b78c7c42bf7100725e8cc6252c975
-docfiles size=254
+containersize 36872
+containerchecksum e79d193ec15fef15d7285fc164f3c7b86850ccb2d20cccd28d68b9b4bb6791a99ae166877a706e3fd8be6ca5950233eb251f31dee659b379785866c8d18448b7
+doccontainersize 643292
+doccontainerchecksum 1b1872b032c2acda258975f27dd3335ffb054fdd714e8882b78dd0a4b7dcdf62029c6a5814c7690680ea162b08df326cd7052bf3ff032f98212caef2efa1673f
+docfiles size=272
texmf-dist/doc/lualatex/xindex/CHANGELOG
texmf-dist/doc/lualatex/xindex/Makefile
texmf-dist/doc/lualatex/xindex/README.md details="Readme"
@@ -368420,10 +369384,14 @@ docfiles size=254
texmf-dist/doc/lualatex/xindex/tests/demo4.ind
texmf-dist/doc/lualatex/xindex/tests/demo4.pdf
texmf-dist/doc/lualatex/xindex/tests/demo4.tex
+ texmf-dist/doc/lualatex/xindex/tests/french.idx
+ texmf-dist/doc/lualatex/xindex/tests/french.ind
+ texmf-dist/doc/lualatex/xindex/tests/french.pdf
+ texmf-dist/doc/lualatex/xindex/tests/french.tex
texmf-dist/doc/lualatex/xindex/tests/runTests.sh
texmf-dist/doc/lualatex/xindex/xindex-doc.pdf details="Package documentation"
texmf-dist/doc/lualatex/xindex/xindex-doc.tex
-runfiles size=60
+runfiles size=63
texmf-dist/scripts/xindex/xindex.lua
texmf-dist/tex/latex/xindex/xindex.sty
texmf-dist/tex/lualatex/xindex/xindex-AU.lua
@@ -368433,8 +369401,8 @@ runfiles size=60
texmf-dist/tex/lualatex/xindex/xindex-base.lua
texmf-dist/tex/lualatex/xindex/xindex-baselib.lua
texmf-dist/tex/lualatex/xindex/xindex-cfg-common.lua
+ texmf-dist/tex/lualatex/xindex/xindex-cfg-no_uca.lua
texmf-dist/tex/lualatex/xindex/xindex-cfg-uca.lua
- texmf-dist/tex/lualatex/xindex/xindex-cfg.lua
texmf-dist/tex/lualatex/xindex/xindex-danteedition.lua
texmf-dist/tex/lualatex/xindex/xindex-dtk.lua
texmf-dist/tex/lualatex/xindex/xindex-lapp.lua
@@ -368448,7 +369416,7 @@ catalogue-contact-repository https://gitlab.com/hvoss49/xindex
catalogue-ctan /indexing/xindex
catalogue-license lppl1.3
catalogue-topics index use-lua
-catalogue-version 0.55
+catalogue-version 0.60
name xindex.aarch64-linux
category Package
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
index 6048059dab..d83f3934c2 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
@@ -1 +1 @@
-bfa55ba0eb6377442178c1d4accca41c texlive.tlpdb
+4a54262b8be505d7b380b48a8379f42d texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
index 2898d4e7dc..88b0caf408 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
@@ -1 +1 @@
-a474c68c08bee72e89078dc8786728eed112f469ea84e2af4e7b44b17a5a89b29cb56813a52692020dd71fb399adcb9a0d0340259922ea7e7687c443e986b8e1 texlive.tlpdb
+88000752fc57429b9624d2cba22e25ef830b1f6577a2bb800a42b5f4e1509cfa0b85614a4f59f3c269db07594b19f50380e24c7555f1d11bb954884f9f5bea33 texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
index 4e0b93bf27..d65fe8c5d7 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
@@ -1,11 +1,11 @@
-----BEGIN PGP SIGNATURE-----
-iQEzBAEBCgAdFiEE2PL4YFeoV+QqiBBqTOGHfhlDjHAFAmYxgycACgkQTOGHfhlD
-jHBrOgf9FqZJ3IO23LlFTM4HfKcJxJOXB/sFfQmhhKa+znIvzVBSKhubbuUw7CGQ
-22dhx55r9r5KvnIWG22J2+/llffHKgtCoKPRzIrmtQWVZ8ZNPEXa5BzCfC9Fi45+
-Qj5/0gol9VAvdpItkvs0s3ScWcG11k/oJ0gNF7q8IxJKq314r2A2LBGH+P4ltyot
-ZRxo8M6gOJEQIIrKVqt1C9fMktNiRVQBhU7o7rQEbADzmZ4HCAmyC2bqbC2aSIpG
-2IngENNkSbUGJNRrXt5xez4KhfWb3ttJrz1LPCZD8xL+/xH+2Qb4wY+buVQxiV+v
-4A5Zi82483wdbypqMVXdgNtAoyhvRQ==
-=eKPI
+iQEzBAEBCgAdFiEE2PL4YFeoV+QqiBBqTOGHfhlDjHAFAmZJQE0ACgkQTOGHfhlD
+jHA2oQgAmoxn4YOKssXddTuxPFMpgjZrtqKTfBj4jkshh2KIR2IO33Xwq8v+nI8M
+DtXdrAIfPNwPpFwo3p2Ew1h2QllXHO4yfJTQlhtTSKsm/UWh2LBrzZYeayEuHM9c
+l1Ko5SvEhvRUOZKsjvYYXN6Qi/zgfvfT9kxL4OSnRGkY8dy27U0UIfhbDCjXC3mb
+rXzCqOzPUQ+a7ir/RSgR30QXbe3YYYgudhOuo8GcdxAcTqqtKEXu7AcTtIq3lxh/
+kYdDf5Ei9AjQ4Ueyy44GOEqU0pxj/OEB91dmp7bxeVOO3Yl2/gPbdoQ9NeBcNhZh
+uROPtCPeBvaoGWZmDjTlpBdEItuA5w==
+=4Z71
-----END PGP SIGNATURE-----
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
index 1de5844fdc..64e31617f2 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
Binary files differ
diff --git a/systems/texlive/tlnet/tlpkg/translations/cs.po b/systems/texlive/tlnet/tlpkg/translations/cs.po
index 14fa937c15..dc1a926b60 100644
--- a/systems/texlive/tlnet/tlpkg/translations/cs.po
+++ b/systems/texlive/tlnet/tlpkg/translations/cs.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2022-03-21 13:54+0100\n"
"Last-Translator: Petr Sojka <sojka@fi.muni.cz>\n"
"Language-Team: Czech <>\n"
@@ -1957,16 +1957,16 @@ msgstr "Podpůrné programy výhradně pro Windows"
msgid "XeTeX and packages"
msgstr "XeTeX a balíky"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Vítejte v TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1975,7 +1975,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/da.po b/systems/texlive/tlnet/tlpkg/translations/da.po
index d2970af6cc..247283cba9 100644
--- a/systems/texlive/tlnet/tlpkg/translations/da.po
+++ b/systems/texlive/tlnet/tlpkg/translations/da.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live 2021\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2021-05-05 10:13+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -1958,16 +1958,16 @@ msgstr "Programmer, der kun understøttes på Windows"
msgid "XeTeX and packages"
msgstr "XeTeX med pakker"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Velkommen til TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1976,7 +1976,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/de.po b/systems/texlive/tlnet/tlpkg/translations/de.po
index fd44bf0119..52fe74a6c6 100644
--- a/systems/texlive/tlnet/tlpkg/translations/de.po
+++ b/systems/texlive/tlnet/tlpkg/translations/de.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2024-03-16 09:53+0100\n"
"Last-Translator: Uwe Ziegenhagen <ziegenhagen@gmail.com>\n"
"Language-Team: TL German Translation Team <tex-live@tug.org>\n"
@@ -793,8 +793,8 @@ msgstr ""
"Der TeX Live Manager (die Software, die gerade läuft)\n"
"muss aktualisiert werden, bevor weitere Updates eingespielt werden können.\n"
"\n"
-"Bitte tun sie dies durch das Klicken des \"Aktualisiere den TeX Live "
-"Manager\" Buttons,\n"
+"Bitte tun sie dies durch das Klicken des \"Aktualisiere den TeX Live Manager"
+"\" Buttons,\n"
"nachdem Sie diesen Dialog hier geschlossen haben.\n"
"\n"
"Nach dem Update wird der TeX Live Manager beendet.\n"
@@ -1949,16 +1949,16 @@ msgstr "Zusatzprogramme (nur-Windows)"
msgid "XeTeX and packages"
msgstr "XeTeX und XeTeX-Pakete"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Willkommen bei TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr "Siehe %s/index.html für Links zur Dokumentation.\n"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1973,7 +1973,7 @@ msgstr ""
"beitreten.\n"
"Die Liste der Gruppen finden Sie unter https://tug.org/usergroups.html.\n"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
@@ -2850,8 +2850,8 @@ msgstr ""
#~ "Then you can restart the program for further updates."
#~ msgstr ""
#~ "Aktualisierungen des TeX Live Managers stehen bereit.\n"
-#~ "Installation und Aktualisierungen anderer Pakete nur mit der "
-#~ "\"erzwingen\" Option möglich.\n"
+#~ "Installation und Aktualisierungen anderer Pakete nur mit der \"erzwingen"
+#~ "\" Option möglich.\n"
#~ "Bitte drücken Sie \"Aktualisieren aller Pakete\".\n"
#~ "Das Programm beendet sich nach der Aktualisierung.\n"
#~ "Danach können Sie das Programm neu starten für weitere Aktualisierungen."
@@ -2960,8 +2960,8 @@ msgstr ""
#~ msgstr ""
#~ "Die Datenbank der aktuellen Installationsquelle wurde nicht geladen.\n"
#~ "\n"
-#~ "Bitte durch betätigen der \"Lade\"- (und gegebenenfalls zuvor der "
-#~ "\"Ändern\"-) Schaltfläche nachholen."
+#~ "Bitte durch betätigen der \"Lade\"- (und gegebenenfalls zuvor der \"Ändern"
+#~ "\"-) Schaltfläche nachholen."
#~ msgid "Updating packages"
#~ msgstr "Aktualisieren von Paketen"
@@ -2989,8 +2989,8 @@ msgstr ""
#~ "Your installation is set up to look on the disk for updates.\n"
#~ "\n"
#~ "If you want to install from the Internet for this one time only, click on "
-#~ "the \"Change\" button above and select \"Default net package "
-#~ "repository\" (or any other package repository you know to be working).\n"
+#~ "the \"Change\" button above and select \"Default net package repository"
+#~ "\" (or any other package repository you know to be working).\n"
#~ "\n"
#~ "If you want to change it permanently, go to the \"Configuration\" Tab and "
#~ "change the default package repository."
@@ -3018,8 +3018,8 @@ msgstr ""
#~ "Then you can restart the program for further updates."
#~ msgstr ""
#~ "Aktualisierungen des TeX Live Managers stehen bereit.\n"
-#~ "Installation und Aktualisierungen anderer Pakete nur mit der "
-#~ "\"erzwingen\" Option möglich.\n"
+#~ "Installation und Aktualisierungen anderer Pakete nur mit der \"erzwingen"
+#~ "\" Option möglich.\n"
#~ "Bitte gehen Sie zur Aktualisierungsseite und drücken Sie \"Aktualisieren "
#~ "aller Pakete\".\n"
#~ "Das Programm beendet sich nach der Aktualisierung.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/es.po b/systems/texlive/tlnet/tlpkg/translations/es.po
index 4af638504a..34669cf935 100644
--- a/systems/texlive/tlnet/tlpkg/translations/es.po
+++ b/systems/texlive/tlnet/tlpkg/translations/es.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2019-03-30 17:58-0400\n"
"Last-Translator: linguafalsa <linguafalsa@gmail.com>\n"
"Language-Team: TL Translation Team <tex-live@tug.org>\n"
@@ -1960,16 +1960,16 @@ msgstr "Programas de respaldo solamente para Windows"
msgid "XeTeX and packages"
msgstr "XeTeX y paquetes"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "¡Bienvenido a Tex Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1978,7 +1978,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/fr.po b/systems/texlive/tlnet/tlpkg/translations/fr.po
index 0e51cada15..764d21fd6a 100644
--- a/systems/texlive/tlnet/tlpkg/translations/fr.po
+++ b/systems/texlive/tlnet/tlpkg/translations/fr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2024-02-22 22:35+0100\n"
"Last-Translator: Denis Bitouzé <denis.bitouze@univ-littoral.fr>\n"
"Language-Team: French <kde-i18n-doc@kde.org>\n"
@@ -1966,16 +1966,16 @@ msgstr "Programmes pour le support de Windows seulement"
msgid "XeTeX and packages"
msgstr "XeTeX et packages associés"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Bienvenue sous TeX Live !"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr "Voir %s/index.html pour les liens vers la documentation.\n"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1992,7 +1992,7 @@ msgstr ""
".La liste des groupes est disponible sur le Web à l'adresse https://tug.org/"
"usergroups.html.\n"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/it.po b/systems/texlive/tlnet/tlpkg/translations/it.po
index c8509ac510..9974a593c6 100644
--- a/systems/texlive/tlnet/tlpkg/translations/it.po
+++ b/systems/texlive/tlnet/tlpkg/translations/it.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tex Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2021-03-22 06:20+0100\n"
"Last-Translator: Marco Pallante\n"
"Language-Team: <>\n"
@@ -1956,16 +1956,16 @@ msgstr "Programmi di supporto solo per Windows"
msgid "XeTeX and packages"
msgstr "XeTeX e pacchetti"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Benvenuto in TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1974,7 +1974,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/ja.po b/systems/texlive/tlnet/tlpkg/translations/ja.po
index d9075366ea..46968c6927 100644
--- a/systems/texlive/tlnet/tlpkg/translations/ja.po
+++ b/systems/texlive/tlnet/tlpkg/translations/ja.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2024-02-04 15:32+0900\n"
"Last-Translator: Takuto Asakura <tkt.asakura@gmail.com>\n"
"Language-Team: TL Translation Team <tex-live@tug.org>\n"
@@ -1955,16 +1955,16 @@ msgstr "Windows専用プログラム"
msgid "XeTeX and packages"
msgstr "XeTeXとパッケージ"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "TeX Liveへようこそ!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr "ドキュメントの一覧は%s/index.htmlをご覧ください。\n"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1978,7 +1978,7 @@ msgstr ""
"なTeXユーザ会に入会することをご検討ください。TeXユーザ会の一覧はhttps://tug."
"org/usergroups.htmlでご確認いただけます。\n"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/messages.pot b/systems/texlive/tlnet/tlpkg/translations/messages.pot
index 55f7e3ccb4..c5394c16fe 100644
--- a/systems/texlive/tlnet/tlpkg/translations/messages.pot
+++ b/systems/texlive/tlnet/tlpkg/translations/messages.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live 2024\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1895,16 +1895,16 @@ msgstr ""
msgid "XeTeX and packages"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1913,7 +1913,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/nl.po b/systems/texlive/tlnet/tlpkg/translations/nl.po
index 841eb37442..a45bc061e2 100644
--- a/systems/texlive/tlnet/tlpkg/translations/nl.po
+++ b/systems/texlive/tlnet/tlpkg/translations/nl.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2023-03-10 09:39+0100\n"
"Last-Translator: Siep Kroonenberg <siepo@bitmuis.nl>\n"
"Language-Team: TL Translation Team <tex-live@tug.org>\n"
@@ -1954,16 +1954,16 @@ msgstr "Ondersteunende programma's specifiek voor Windows"
msgid "XeTeX and packages"
msgstr "XeTeX en bijbehorende pakketten"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Welkom bij TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1972,7 +1972,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/pl.po b/systems/texlive/tlnet/tlpkg/translations/pl.po
index 675ed19b65..01462772c6 100644
--- a/systems/texlive/tlnet/tlpkg/translations/pl.po
+++ b/systems/texlive/tlnet/tlpkg/translations/pl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live 2023\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2023-03-18 16:47+0100\n"
"Last-Translator: Zofia Walczak <zofia.walczak@wmii.uni.lodz.pl>\n"
"Language-Team: \n"
@@ -1960,16 +1960,16 @@ msgstr "Dodatkowe programy tylko dla Windows"
msgid "XeTeX and packages"
msgstr "XeTeX i pakiety"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Witamy w TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1978,7 +1978,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/pt_BR.po b/systems/texlive/tlnet/tlpkg/translations/pt_BR.po
index c0f259488c..434b59b061 100644
--- a/systems/texlive/tlnet/tlpkg/translations/pt_BR.po
+++ b/systems/texlive/tlnet/tlpkg/translations/pt_BR.po
@@ -4,7 +4,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2022-02-21 07:43-0300\n"
"Last-Translator: Paulo Roberto Massa Cereda <cereda.paulo@gmail.com>\n"
"Language-Team: Paulo Roberto Massa Cereda <cereda.paulo@gmail.com>\n"
@@ -1960,16 +1960,16 @@ msgstr "Programas de suporte exclusivos para Windows"
msgid "XeTeX and packages"
msgstr "XeTeX e pacotes"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Bem-vindo ao TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1978,7 +1978,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/ru.po b/systems/texlive/tlnet/tlpkg/translations/ru.po
index 8da94329e8..b14aa6b9cf 100644
--- a/systems/texlive/tlnet/tlpkg/translations/ru.po
+++ b/systems/texlive/tlnet/tlpkg/translations/ru.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2022-03-23 09:50+0800\n"
"Last-Translator: Vladimir Lomov <irk.translator@yandex.ru>\n"
"Language-Team: Russian <tldoc@tug.org>\n"
@@ -1959,16 +1959,16 @@ msgstr "Вспомогательные программы, только для W
msgid "XeTeX and packages"
msgstr "XeTeX и пакеты"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Вас приветствует TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1977,7 +1977,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/sk.po b/systems/texlive/tlnet/tlpkg/translations/sk.po
index 676a0d93c3..b85f99f369 100644
--- a/systems/texlive/tlnet/tlpkg/translations/sk.po
+++ b/systems/texlive/tlnet/tlpkg/translations/sk.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2022-03-21 13:59+0100\n"
"Last-Translator: Ján Buša <jan.busa@tuke.sk>\n"
"Language-Team: tex-live@tug.org\n"
@@ -1958,16 +1958,16 @@ msgstr "Podporné programy len pre Windows"
msgid "XeTeX and packages"
msgstr "XeTeX a balíky"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Vitajte vo svete TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1976,7 +1976,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/sl.po b/systems/texlive/tlnet/tlpkg/translations/sl.po
index a6c96d9516..97388b9500 100644
--- a/systems/texlive/tlnet/tlpkg/translations/sl.po
+++ b/systems/texlive/tlnet/tlpkg/translations/sl.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2022-03-21 13:45+0100\n"
"Last-Translator: Mojca Miklavec <mojca.miklavec.lists@gmail.com>\n"
"Language-Team: TL Translation Team <tex-live@tug.org>\n"
@@ -2044,16 +2044,16 @@ msgstr "Programi za MS Windows"
msgid "XeTeX and packages"
msgstr "XeTeX s paketi"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Dobrodošli v TeX Live-u!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -2062,7 +2062,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/sr.po b/systems/texlive/tlnet/tlpkg/translations/sr.po
index 3143e71f5a..0d380ee72f 100644
--- a/systems/texlive/tlnet/tlpkg/translations/sr.po
+++ b/systems/texlive/tlnet/tlpkg/translations/sr.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2019-10-23 02:13+0300\n"
"Last-Translator: Nikola Lečić <nikola.lecic@anthesphoria.net>\n"
"Language-Team: TL Translation Team <tex-live@tug.org>\n"
@@ -1955,16 +1955,16 @@ msgstr "Помоћни програми за Windows"
msgid "XeTeX and packages"
msgstr "XeTeX и повезани пакети"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Добродошли у TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1973,7 +1973,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/uk.po b/systems/texlive/tlnet/tlpkg/translations/uk.po
index 535f886d30..e63a607430 100644
--- a/systems/texlive/tlnet/tlpkg/translations/uk.po
+++ b/systems/texlive/tlnet/tlpkg/translations/uk.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live 2010\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2019-03-23 09:02+0200\n"
"Last-Translator: Andriy Bandura <andriykopanytsia@gmail.com>\n"
"Language-Team: Ukrainian <andriykopanytsia@gmail.com>\n"
@@ -1939,16 +1939,16 @@ msgstr "Додаткові програми лише під Windows"
msgid "XeTeX and packages"
msgstr "XeTeX та пакунки"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Ласкаво просимо до TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1957,7 +1957,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/vi.po b/systems/texlive/tlnet/tlpkg/translations/vi.po
index 613f27e8f5..c51046abb2 100644
--- a/systems/texlive/tlnet/tlpkg/translations/vi.po
+++ b/systems/texlive/tlnet/tlpkg/translations/vi.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2021-03-13 11:02+0100\n"
"Last-Translator: Anh K. Huỳnh <kyanh@viettug.org>\n"
"Language-Team: TL Translation Team <tex-live@tug.org>\n"
@@ -1950,16 +1950,16 @@ msgstr "Các chương trình chỉ cho Windows"
msgid "XeTeX and packages"
msgstr "XeTeX và các gói của nó"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Chào mừng đến với TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1968,7 +1968,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/zh_CN.po b/systems/texlive/tlnet/tlpkg/translations/zh_CN.po
index 1ede71214d..982e3acf50 100644
--- a/systems/texlive/tlnet/tlpkg/translations/zh_CN.po
+++ b/systems/texlive/tlnet/tlpkg/translations/zh_CN.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2009-09-22 12:54+0800\n"
"Last-Translator: Jiang Jiang <gzjjgod@gmail.com>\n"
"Language-Team: TL Translation Team <tex-live@tug.org>\n"
@@ -1899,16 +1899,16 @@ msgstr ""
msgid "XeTeX and packages"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "欢迎进入 TeX Live 的世界!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1917,7 +1917,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/zh_TW.po b/systems/texlive/tlnet/tlpkg/translations/zh_TW.po
index 5ea77e84e4..39c679a4b0 100644
--- a/systems/texlive/tlnet/tlpkg/translations/zh_TW.po
+++ b/systems/texlive/tlnet/tlpkg/translations/zh_TW.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2023-03-02 16:26+0800\n"
"Last-Translator: Kung-chih Jen <kaitul@outlook.com>\n"
"Language-Team: TL Translation Team <tex-live@tug.org>\n"
@@ -1942,16 +1942,16 @@ msgstr "僅 Windows 支援程式"
msgid "XeTeX and packages"
msgstr "XeTeX 和套件"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "歡迎使用 TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1960,7 +1960,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"