summaryrefslogtreecommitdiff
path: root/systems/texlive/tlnet
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2024-01-09 03:01:30 +0000
committerNorbert Preining <norbert@preining.info>2024-01-09 03:01:30 +0000
commit140e2f7f1509acd423172e2895d0d7839e5b88c6 (patch)
treeb95babe2ddbb2ed3cb8f1aee35286b5218e5e4d1 /systems/texlive/tlnet
parentafbba3b1d12f17572ca4745766f2e0d55a6f58f3 (diff)
CTAN sync 202401090301
Diffstat (limited to 'systems/texlive/tlnet')
-rwxr-xr-xsystems/texlive/tlnet/install-tl10
-rw-r--r--systems/texlive/tlnet/tlpkg/TeXLive/TLDownload.pm16
-rw-r--r--systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm9
-rw-r--r--systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl4
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb301
-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.xzbin2518516 -> 2518792 bytes
9 files changed, 207 insertions, 153 deletions
diff --git a/systems/texlive/tlnet/install-tl b/systems/texlive/tlnet/install-tl
index a30368d07b..fc17edb519 100755
--- a/systems/texlive/tlnet/install-tl
+++ b/systems/texlive/tlnet/install-tl
@@ -1,5 +1,5 @@
#!/usr/bin/env perl
-# $Id: install-tl 67839 2023-08-07 21:47:31Z preining $
+# $Id: install-tl 69327 2024-01-07 11:10:51Z preining $
# Copyright 2007-2023
# 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: 67839 $';
+my $svnrev = '$Revision: 69327 $';
$svnrev =~ m/: ([0-9]+) /;
$::installerrevision = ($1 ? $1 : 'unknown');
@@ -914,7 +914,9 @@ sub final_remote_init {
} elsif ($media eq "NET") {
info("Distribution: net (downloading)\n");
info("Using URL: $TeXLiveURL\n");
- TeXLive::TLUtils::setup_persistent_downloads() if $opt_persistent_downloads;
+ TeXLive::TLUtils::setup_persistent_downloads(
+ "$::installerdir/tlpkg/installer/curl/curl-ca-bundle.crt"
+ ) if $opt_persistent_downloads;
} else {
info("Distribution: $media\n");
}
@@ -3603,7 +3605,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 67839 2023-08-07 21:47:31Z preining $
+$Id: install-tl 69327 2024-01-07 11:10:51Z preining $
=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 1e22f354d4..f424d7e6a2 100644
--- a/systems/texlive/tlnet/tlpkg/TeXLive/TLDownload.pm
+++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLDownload.pm
@@ -1,4 +1,4 @@
-# $Id: TLDownload.pm 61372 2021-12-21 22:46:16Z karl $
+# $Id: TLDownload.pm 69328 2024-01-07 11:11:02Z preining $
# TeXLive::TLDownload.pm - module for abstracting the download modes
# Copyright 2009-2021 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: 61372 $';
+my $svnrev = '$Revision: 69328 $';
my $_modulerevision;
if ($svnrev =~ m/: ([0-9]+) /) {
$_modulerevision = $1;
@@ -40,10 +40,11 @@ if ($@) {
sub new
{
my $class = shift;
+ my %params = @_;
my $self = {};
$self->{'initcount'} = 0;
bless $self, $class;
- $self->reinit();
+ $self->reinit(defined($params{'certificates'}) ? $params{'certificates'} : "");
return $self;
}
@@ -52,6 +53,7 @@ sub new
sub reinit {
my $self = shift;
+ my $certs = shift;
# Irritatingly, as of around version 6.52, when env_proxy is set, LWP
# started unconditionally complaining if the environment contains
@@ -68,6 +70,14 @@ sub reinit {
@env_proxy = ("env_proxy", 1);
}
#
+ # Set HTTPS_CA_FILE to the TL provided certificate bundle
+ # for systems that don't have a system-wide certificate bundle
+ # in particular MacOS.
+ if ((! exists $ENV{'HTTPS_CA_FILE'}) && $certs) {
+ debug("Setting env var HTTPS_CA_FILE to " . $certs ."\n");
+ $ENV{'HTTPS_CA_FILE'} = $certs
+ }
+ #
my $ua = LWP::UserAgent->new(
agent => "texlive/lwp",
# use LWP::ConnCache, and keep 1 connection open
diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm
index 30d53ad7c7..a3bf3ff3b3 100644
--- a/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm
+++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm
@@ -1,4 +1,4 @@
-# $Id: TLUtils.pm 68283 2023-09-15 13:11:11Z preining $
+# $Id: TLUtils.pm 69327 2024-01-07 11:10:51Z preining $
# TeXLive::TLUtils.pm - the inevitable utilities for TeX Live.
# Copyright 2007-2023 Norbert Preining, Reinhard Kotucha
# This file is licensed under the GNU General Public License version 2
@@ -8,7 +8,7 @@ use strict; use warnings;
package TeXLive::TLUtils;
-my $svnrev = '$Revision: 68283 $';
+my $svnrev = '$Revision: 69327 $';
my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown";
sub module_revision { return $_modulerevision; }
@@ -4229,6 +4229,7 @@ false.
=cut
sub setup_persistent_downloads {
+ my $certs = shift;
if ($TeXLive::TLDownload::net_lib_avail) {
ddebug("setup_persistent_downloads has net_lib_avail set\n");
if ($::tldownload_server) {
@@ -4236,10 +4237,10 @@ sub setup_persistent_downloads {
debug("stop retrying to initialize LWP after 10 failures\n");
return 0;
} else {
- $::tldownload_server->reinit();
+ $::tldownload_server->reinit(certificates => $certs);
}
} else {
- $::tldownload_server = TeXLive::TLDownload->new;
+ $::tldownload_server = TeXLive::TLDownload->new(certificates => $certs);
}
if (!defined($::tldownload_server)) {
ddebug("TLUtils:setup_persistent_downloads: failed to get ::tldownload_server\n");
diff --git a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
index 49d1d854ac..eeba54d804 100644
--- a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
+++ b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
@@ -1,8 +1,5 @@
$mirrors = {
'Africa' => {
- 'Morocco' => {
- 'https://mirror.marwan.ma/ctan/' => 1,
- },
'South Africa' => {
'http://ftp.sun.ac.za/ftp/CTAN/' => 1,
'https://mirror.ufs.ac.za/ctan/' => 1,
@@ -30,7 +27,6 @@ $mirrors = {
},
'India' => {
'https://in.mirrors.cicku.me/ctan/' => 1,
- 'https://mirror.niser.ac.in/ctan/' => 1,
},
'Indonesia' => {
'http://repo.ugm.ac.id/ctan/' => 1,
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb b/systems/texlive/tlnet/tlpkg/texlive.tlpdb
index f94f7fb5e8..706e4f634a 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/2023
-depend revision/69320
+depend revision/69342
name 00texlive.image
category TLCore
-revision 69294
+revision 69343
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
@@ -4313,6 +4313,7 @@ runfiles size=13638
tlpkg/tlpsrc/tikz3d-fr.tlpsrc
tlpkg/tlpsrc/tikzbricks.tlpsrc
tlpkg/tlpsrc/tikzcodeblocks.tlpsrc
+ tlpkg/tlpsrc/tikzdotncross.tlpsrc
tlpkg/tlpsrc/tikzducks.tlpsrc
tlpkg/tlpsrc/tikzfill.tlpsrc
tlpkg/tlpsrc/tikzinclude.tlpsrc
@@ -4830,7 +4831,7 @@ depend setting_available_architectures:aarch64-linux amd64-freebsd amd64-netbsd
name 00texlive.installer
category TLCore
-revision 69314
+revision 69327
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
@@ -28568,7 +28569,7 @@ catalogue-version 1.0
name babel
category Package
-revision 69085
+revision 69343
shortdesc Multilingual support for LaTeX, LuaLaTeX, XeLaTeX, and Plain TeX
relocated 1
longdesc This package manages culturally-determined typographical (and
@@ -28582,17 +28583,17 @@ 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 228304
-containerchecksum 658741ed33a93351c192e0fa79132c85183c8f1db0f1f2cbe87a6f3fa35fd29768120ad354527485a78dfd83932d06a95bf340cd2acebb1476005a66075d1625
-doccontainersize 1043868
-doccontainerchecksum fd4b51b2d04d4955c5d568eb0f5746accb605a7272da3071317f234756b56d4afad150439e32f6f8fd8f611e78cc93815762d801189e643f7b8abdf02d5ecbd4
+containersize 229440
+containerchecksum 8c4b15316808e7de5c039082ecec99cb1d2ab72909cb5c85899180e55d7d425db4440fe6fa9b9f801345c34d55fcfaefba2296d424187bf6f809ca1dd96245dd
+doccontainersize 1044336
+doccontainerchecksum 5f6a02d13ca3e1104587595edffec7735d84ae5b4686692db04325a1bf3b82a45c08c8fb94d6cc79b0da02778e30f7eb8ff0473fcbb30e260022c647e4a8fdf3
docfiles size=261
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 883644
-srccontainerchecksum 72e1b830318169d23efca27c5803dbbbd96e40adb0dbcef658a2ad137f82d528e41e904867689b3e404a1026f00f04599db6c5afd2e1661d366cd48578c0e7c6
-srcfiles size=469
+srccontainersize 885928
+srccontainerchecksum fab559d1876e220830972bae45ffbc2f25c1ae0c0d16f0ba4b857bac5a6f92316bd45951b2fc4c718f0fe3947d88afa0aeaee813787b23040bfbffaf88018850
+srcfiles size=470
RELOC/source/latex/babel/babel.dtx
RELOC/source/latex/babel/babel.ins
RELOC/source/latex/babel/bbcompat.dtx
@@ -28921,6 +28922,7 @@ runfiles size=1265
RELOC/tex/generic/babel/locale/fo/babel-faroese.tex
RELOC/tex/generic/babel/locale/fo/babel-fo.ini
RELOC/tex/generic/babel/locale/fr/babel-acadian.tex
+ RELOC/tex/generic/babel/locale/fr/babel-canadianfrench.tex
RELOC/tex/generic/babel/locale/fr/babel-fr-BE.ini
RELOC/tex/generic/babel/locale/fr/babel-fr-CA.ini
RELOC/tex/generic/babel/locale/fr/babel-fr-CH.ini
@@ -28931,13 +28933,12 @@ runfiles size=1265
RELOC/tex/generic/babel/locale/fr/babel-french-belgium.tex
RELOC/tex/generic/babel/locale/fr/babel-french-ca.tex
RELOC/tex/generic/babel/locale/fr/babel-french-canada.tex
- RELOC/tex/generic/babel/locale/fr/babel-french-canadianfrench.tex
RELOC/tex/generic/babel/locale/fr/babel-french-ch.tex
RELOC/tex/generic/babel/locale/fr/babel-french-lu.tex
RELOC/tex/generic/babel/locale/fr/babel-french-luxembourg.tex
- RELOC/tex/generic/babel/locale/fr/babel-french-swissfrench.tex
RELOC/tex/generic/babel/locale/fr/babel-french-switzerland.tex
RELOC/tex/generic/babel/locale/fr/babel-french.tex
+ RELOC/tex/generic/babel/locale/fr/babel-swissfrench.tex
RELOC/tex/generic/babel/locale/frr/babel-frr.ini
RELOC/tex/generic/babel/locale/frr/babel-northernfrisian.tex
RELOC/tex/generic/babel/locale/fur/babel-friulian.tex
@@ -29568,7 +29569,7 @@ catalogue-contact-repository https://github.com/latex3/babel
catalogue-ctan /macros/latex/required/babel/base
catalogue-license lppl1.3
catalogue-topics multilingual
-catalogue-version 3.99
+catalogue-version 24.1
name babel-albanian
category Package
@@ -68857,7 +68858,7 @@ catalogue-version 1.0.4
name codedescribe
category Package
-revision 68937
+revision 69343
shortdesc A minimalist set of commands (expl3 based) to describe Document and Class level commands/functions
relocated 1
longdesc This package aims to document both Document level (i.e. final
@@ -68866,15 +68867,15 @@ longdesc fully implemented using expl3 syntax and structures, in
longdesc particular l3coffins, l3seq and l3keys. Besides those the
longdesc scontents and listing packages are used to typeset code
longdesc snippets.
-containersize 10984
-containerchecksum 2c97669829d2de39f395dc60381092650a4c546f13cd55ff3422d1bd9a23a79bd00c5b202b8d37c46dcd12f37731bfb0acfb209921a70790c23898a9f2e554c6
-doccontainersize 239212
-doccontainerchecksum 613d1efedb39855bf59532ff0d9a0d43568de32ed7d5906fdc245d625123b0e008340ee055bb1b00cc000fd83aedf19831345f3209beefe1ebbeddd14b23a0c2
+containersize 11044
+containerchecksum 9d1176a6934468658a99d00f862ff2554fda33ae7e458409c3dab3df42afcf093f3d28263f8f7b431024df1b67f969ac808806b222ba256d27793a4b1e7a2865
+doccontainersize 239500
+doccontainerchecksum 2540adbdb84154d3fa96a74e716b3b7051f4687852f873b67a0a0bbe6bf9e932b3bb19eee07b0e4cf7299e3f1d06983b4faeec77182db0e8676f53b2aeaa2776
docfiles size=69
RELOC/doc/latex/codedescribe/README.md details="Readme"
RELOC/doc/latex/codedescribe/codedescribe.pdf details="Package documentation"
RELOC/doc/latex/codedescribe/codedescribe.tex
-runfiles size=15
+runfiles size=16
RELOC/tex/latex/codedescribe/codedescribe.sty
RELOC/tex/latex/codedescribe/codelisting.sty
catalogue-contact-bugs https://github.com/alceu-frigeri/codedescribe/issues
@@ -68882,7 +68883,7 @@ catalogue-contact-repository https://github.com/alceu-frigeri/codedescribe
catalogue-ctan /macros/latex/contrib/codedescribe
catalogue-license lppl1.3c gpl
catalogue-topics expl3
-catalogue-version 1.2
+catalogue-version 1.3
name codedoc
category Package
@@ -73776,7 +73777,7 @@ containerchecksum 951e172129275fa2cb7ccea6bf23f27484503533ebee4c3bef7d2f4ddda594
name collection-pictures
category Collection
-revision 69289
+revision 69329
shortdesc Graphics, pictures, diagrams
relocated 1
longdesc Including TikZ, pict, etc., but MetaPost and PStricks are
@@ -73988,6 +73989,7 @@ depend tikz2d-fr
depend tikz3d-fr
depend tikzbricks
depend tikzcodeblocks
+depend tikzdotncross
depend tikzducks
depend tikzfill
depend tikzinclude
@@ -74037,8 +74039,8 @@ depend worldflags
depend xistercian
depend xpicture
depend xypic
-containersize 1660
-containerchecksum 0d74ffd273e88f78776730bcad4c0795323b2a0b89eb313a2d0d3d87664c2732aa769e9b5c68869a6ea2480791c02bdb1a08fd26ad25d3d560b4260961faa886
+containersize 1668
+containerchecksum 4c3cf807783e8860c32aadefa285677183dc098879c6281d2d6201cb713314a94892a1ff35c2bc2f6e8f81fb80b3b8d26d7ca57325b9f179d1b2594abb05f2b2
name collection-plaingeneric
category Collection
@@ -97149,7 +97151,7 @@ catalogue-version 0.4.0
name docsurvey
category Package
-revision 61447
+revision 69343
shortdesc A survey of LaTeX documentation
relocated 1
longdesc A survey of programming-related documentation for LaTeX.
@@ -97159,14 +97161,14 @@ longdesc distributions, programming-related packages, users groups and
longdesc online communities, and information on creating packages and
longdesc documentation.
containersize 548
-containerchecksum bfb93b2510b2b2e334e63468dbb4a4860d4a2166c36b5ce5ff706007a2af605ffb1b5b64c567fe1a3bc46a4fe420fef4020ce6bdc16a4a6d3396ef00dc69d076
-doccontainersize 260928
-doccontainerchecksum 5f91a58cd18315c612860bcfcac7b85ffd402b02dfe669e6fae1efbbac5eaec683b3a286231f9db1cfe5ba967be67f08b1319dea72263f7bbcc84cfd913ffc1a
-docfiles size=84
+containerchecksum 06d5844c96ba47de92459a20594f0f575e0ca2fb6471f7079274ff752a1ac631f0f0d2f4f76f01fd5b8fa8036fca57557b37fe8490571b49b46fca06ade0a4ed
+doccontainersize 269352
+doccontainerchecksum fbd223b5af17fd7e09d43f00d103ddd3e5730eee7fd86cb25a8d4568f00f0155a6aefa28d3addd507bc261ff57e99256f40b232781256744ff9634292b35fa87
+docfiles size=86
RELOC/doc/latex/docsurvey/README.txt details="Readme"
RELOC/doc/latex/docsurvey/docsurvey.pdf details="The document itself"
RELOC/doc/latex/docsurvey/docsurvey.tex
-catalogue-contact-home http://bdtechconcepts.com/
+catalogue-contact-bugs https://github.com/bdtc/docsurvey
catalogue-ctan /info/docsurvey
catalogue-license lppl1.3
catalogue-topics ref-latex review-document tut-latex tut-latex-prg
@@ -105662,7 +105664,7 @@ catalogue-topics notes editorial
name easybook
category Package
-revision 69317
+revision 69343
shortdesc Easily typesetting Chinese theses or books
relocated 1
longdesc easybook is a pure academic template created based on the
@@ -105673,16 +105675,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 16488
-containerchecksum 8210eb1d29b45790df3e74d1c49fb980b4e30760571eaae339a033f83fea88a6bd234ac07eb71d9b2ec40c960f38538903abc0a30b6319666031e693fd8504e6
-doccontainersize 613116
-doccontainerchecksum 87fe8bb80554b47a2667bf0a9a7c8b74088dd9c6ac0a7fcc8dd357745ae1cceb369573816b78db8779ed7a17022562e685e5b303fb54766209e5eb648a0a22a4
+containersize 16472
+containerchecksum c26d2e3ed0dfa29e6cc9c64fd8f4354d4ad79cb6e83c4cbc57b2976a090c3a0074b2c3d68eb57a6cc091f71a10a76e2d5b31934b630a3f314dfea00a1d76b5f3
+doccontainersize 613288
+doccontainerchecksum 136c5e488e0454b46fe49bc166f897a6adb713989b08fbf7b5d784581981b4c4dee072fb2fef8c9260d36b2638f251e52b741b847b12ccb7f75e22fa249e17e6
docfiles size=167
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 16372
-srccontainerchecksum 8c767c2258e90f54b4874e9a963cd39e7ad267d3c9c183b8950982d2db33e69051035a0a75809c3056d117c61809bb22c4f44b5f62500de9b72337711c752161
+srccontainerchecksum fef991b847d146c71ba5cfe671f2650ff60223b24d1b62ef1119f77f535266aaa6041926e7e83a125e2327e2739383f65628274489fe0bc424453d626992b10b
srcfiles size=20
RELOC/source/latex/easybook/easybook.dtx
RELOC/source/latex/easybook/easybook.ins
@@ -105695,7 +105697,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 2024C
+catalogue-version 2024D
name easydtx
category Package
@@ -117398,7 +117400,7 @@ catalogue-version 0.3
name etoc
category Package
-revision 68691
+revision 69343
shortdesc Completely customisable TOCs
relocated 1
longdesc With etoc loaded, \tableofcontents can be used multiple times,
@@ -117411,10 +117413,10 @@ longdesc "contents lines" inherited from the class default or changed
longdesc via other packages. But full usage of the package allows
longdesc spectacular effects such as displaying TOCs as trees or mind
longdesc maps.
-containersize 13500
-containerchecksum 79b8cccce85a63ba6e5465412b73a1004f5d667b3916f9b98d5bc49ae8e626a4d56e5dca58d15915b0de2e9f8724ccb4b5e3a9ff002ae183a8914db00d03f55d
+containersize 13544
+containerchecksum ee9e46861d53c0cf3f0807f55a78b2e9c24ed6d5b37037b87f162a297421548561728dbe268927e7155a16da256e61b24c74ee9b1c18addbca937b8c85ce21e9
doccontainersize 943100
-doccontainerchecksum 900a8ca499417ab5b945ded54bb28057d4367febe7df4a93193ad8c6af97fd7d74181104f28c7487af892f0145c166f032e192fbe117d2ffb2e2e457bc79c90e
+doccontainerchecksum 693a6589f33a93e9086342d093b8801235d9e7d8e1729400e4e1069d0bd9457bf8b96c0a946110f12e2cf6ae646dfea81fcb9a795724558f73e53bb87b300957
docfiles size=270
RELOC/doc/latex/etoc/README.md details="Readme"
RELOC/doc/latex/etoc/etoc.pdf details="Package documentation"
@@ -117445,13 +117447,15 @@ docfiles size=270
RELOC/doc/latex/etoc/etocsnippet-24.tex
RELOC/doc/latex/etoc/etocsnippet-25.tex
RELOC/doc/latex/etoc/etocsnippet-26.tex
-srccontainersize 123044
-srccontainerchecksum fe13f633d92482dbe7220a2044d98294f5f3769c59d73af871724813a568c6ac6e085e0e915d8610e8969500ac5ec5e4780e9f2b690a392256a151a25adcf65e
+srccontainersize 123048
+srccontainerchecksum 0311468458efe4ba2b12bb0917dcc4bc763a1f7e1e6f2621843358afea9edc5a96373f5beb74224df33be1276b36cf53f7d45fd7183574acc38057b31c51f01a
srcfiles size=124
RELOC/source/latex/etoc/etoc.dtx
runfiles size=19
RELOC/tex/latex/etoc/etoc.sty
catalogue-also titletoc tocbasic
+catalogue-contact-bugs https://github.com/jfbu/etoc/issues
+catalogue-contact-repository https://github.com/jfbu/etoc
catalogue-ctan /macros/latex/contrib/etoc
catalogue-license lppl1.3c
catalogue-topics toc-etc etex
@@ -119525,7 +119529,7 @@ catalogue-version 0.21k
name exsol
category Package
-revision 48977
+revision 69343
shortdesc Exercises and solutions from the same source, into a book
relocated 1
longdesc This package provides macros to allow for embedding exercises
@@ -119540,21 +119544,32 @@ longdesc also writes the solutions to a secondary file that may be
longdesc included in a simple document harness, may be processed by
longdesc LaTeX, to generate a nice solution book. The code of the
longdesc package was derived (in large part) from fancyvrb.
-containersize 3472
-containerchecksum ef7e031334a27a522f54c5ba5adee0fbfdb4cfefca6e8c1d4f67c8bc542c82bab6ee89d35f8ba8e65ed0b17107fd164c00ed416c64160991b59693f5b567b502
-doccontainersize 600428
-doccontainerchecksum b6c5dd47fba5d14560a2d2341f1d17b17eda0ce16a6198ec589f47143ab46fa71808aa6a40a43613cf906542ed9df7d164fb2c7fe5785bf414076934932c63b5
+containersize 3632
+containerchecksum b29f3f9e3ba9d4b98b5db23876e69cce17740923419bc2999c742bd24ecf8f6434bc6226bf4f0bbbd17de79b45653b97ea85866b76892f07d696b0ab5b6afb46
+doccontainersize 498524
+doccontainerchecksum 8be8c7e37139dabc5095c1c77f21a55e60666067ffaed66448db31a3cdf1ef2c21cfa4cd8e4021ecdb6586f1a7b0ece40ebd79f485f878fb25249e1094b7b316
docfiles size=169
RELOC/doc/latex/exsol/LICENSE
RELOC/doc/latex/exsol/README details="Readme"
+ RELOC/doc/latex/exsol/example-exercisebook.pdf
+ RELOC/doc/latex/exsol/example-exercisebook.tex
+ RELOC/doc/latex/exsol/example-external.pdf
+ RELOC/doc/latex/exsol/example-external.tex
RELOC/doc/latex/exsol/example-formulacollection.pdf
+ RELOC/doc/latex/exsol/example-formulacollection.tex
+ RELOC/doc/latex/exsol/example-inline.pdf
+ RELOC/doc/latex/exsol/example-inline.tex
RELOC/doc/latex/exsol/example-local.pdf
+ RELOC/doc/latex/exsol/example-local.tex
RELOC/doc/latex/exsol/example-solutionbook.pdf
+ RELOC/doc/latex/exsol/example-solutionbook.tex
RELOC/doc/latex/exsol/example.pdf
+ RELOC/doc/latex/exsol/example.tex
RELOC/doc/latex/exsol/exsol.pdf details="Package documentation"
-srccontainersize 12552
-srccontainerchecksum 1fa45d6d526e94e0574d15396a6d191d6b00bba30ef996aa999bf2b77a5426263f1e0a94303c07ff139bf44b0a07f419c19ac1c854c32b02e4c43c397c8a85a3
-srcfiles size=13
+ RELOC/doc/latex/exsol/manifest.txt
+srccontainersize 13712
+srccontainerchecksum d48acde6262a2eb4fcb2de2f0e3da5f7b0c33418d896235b2ec656df5fa946872c8cd4b266b8801fea5f9a30bae24154ab663358013e450736742604742578d8
+srcfiles size=16
RELOC/source/latex/exsol/exsol.dtx
RELOC/source/latex/exsol/exsol.ins
runfiles size=4
@@ -119562,7 +119577,7 @@ runfiles size=4
catalogue-ctan /macros/latex/contrib/exsol
catalogue-license lppl1.3
catalogue-topics exercise
-catalogue-version 1.4
+catalogue-version 1.6
name extarrows
category Package
@@ -159364,32 +159379,32 @@ catalogue-version 0.3
name isphysicalmath
category Package
-revision 68312
+revision 69343
shortdesc Simple way to write nice formulas
relocated 1
longdesc This package provides an easy way to write mathematical and
longdesc physical formulas and arguments in scientific notation in an
longdesc elegant way.
-containersize 1472
-containerchecksum d7786dee25bf5a03cf54fb1c7c5d918f7b2284571d931bc7281030bd41c59baa5ffada31235e50e0c2ea76ee5bb00b23463e388bc1d957da12cd685f617a03e7
-doccontainersize 80692
-doccontainerchecksum a186fc73154b32246a3841ae8f66b888ccdcd9d800eac39974e8383afa5717799c3a53e8c819c7db983251d8859843a2d4215aba1a902d65ae4a9a45a01844a0
-docfiles size=27
+containersize 1756
+containerchecksum 5329b97930fbe9cc13c275132a32cfe4293bc23b2c1911089aaaa80baeb0437606c73503b4430574e88da61615d0649fea6f5666a5609a79ac5ca37cc90294a5
+doccontainersize 90148
+doccontainerchecksum f044b6cbdcb63a5e66b6dfd396393a99d605a219ede55317c759c28c3890a7c79ff6c0feb1de8f6517350d15a6422dc54426b7b5169ea1865024e5a335fe5517
+docfiles size=31
RELOC/doc/latex/isphysicalmath/README.md details="Readme"
RELOC/doc/latex/isphysicalmath/isphysicalmath-doc.pdf details="Package documentation"
-srccontainersize 5120
-srccontainerchecksum 928fcaef5725fe2ef989bf97f43cf2c7314f6a37ccca36fc30deae2c374317970b1d27e4941ab6184b5d2649721b4376c65e0109a4a50ee0feb8dccc63e59896
-srcfiles size=5
+srccontainersize 6240
+srccontainerchecksum d68bb0b9753303e844476ec27156dc22ba7f3c4456a26870edb080709efb88a2485f2b41bd3c15a89d7d665f22acbd206c951d0f817742d352f6997621188734
+srcfiles size=8
RELOC/source/latex/isphysicalmath/isphysicalmath.dtx
RELOC/source/latex/isphysicalmath/isphysicalmath.ins
-runfiles size=1
+runfiles size=2
RELOC/tex/latex/isphysicalmath/isphysicalmath.sty
catalogue-also siunitx
catalogue-contact-home https://github.com/MartDiVenus/LaTeX/tree/isphysicalmath
catalogue-ctan /macros/latex/contrib/isphysicalmath
-catalogue-license lppl1.3c
+catalogue-license lppl1.3
catalogue-topics units
-catalogue-version 1.0.0
+catalogue-version 1.1.0
name issuulinks
category Package
@@ -248676,7 +248691,7 @@ catalogue-topics font font-sans font-ttf font-type1
name overpic
category Package
-revision 69311
+revision 69343
shortdesc Combine LaTeX commands over included graphics
relocated 1
longdesc The overpic environment is a cross between the LaTeX picture
@@ -248684,16 +248699,16 @@ longdesc environment and the \includegraphics command of graphicx. The
longdesc resulting picture environment has the same dimensions as the
longdesc included graphic. LaTeX commands can be placed on the graphic
longdesc at defined positions; a grid for orientation is available.
-containersize 1740
-containerchecksum f6630c33643704b65c5bf9e56dfaa6974fea1ed823175756dad6e786a4941489f4f68462a0711ab0a205b5a20b9a8e483aa43ea2a017aeed029941bd3b15f77f
-doccontainersize 398112
-doccontainerchecksum 0ee79d813160a61a857f2e2b19ebca09a4a62ff8567563064013e58e6da28355d01829aed4f286fa2bc9ed08be99ea4e10295c43cf6afa79f0f9c512c9f10bb9
-docfiles size=101
+containersize 1816
+containerchecksum 6663af049c657a947c3894157eb21c38f8f240250894ee1c8e34e3ae7cfaec294670dcb053d36fbb7749c383b8e9645d25f583670401c7cacc232eb64996dcd1
+doccontainersize 399404
+doccontainerchecksum 005e2aabb66cb7904544463274add08f9680a38cb608c9d8976e4c8cae114658278d2fb3dae55af989c21825dc9d71b4a28202eb68566ab462d1a4bda76ad54c
+docfiles size=102
RELOC/doc/latex/overpic/README.de.md details="Readme (German)" language="de"
RELOC/doc/latex/overpic/README.md details="Readme (English)" language="en"
RELOC/doc/latex/overpic/overpic.pdf details="Documentation" language="en"
-srccontainersize 4908
-srccontainerchecksum de913e72d2c28cdfddc17f3ba6e531c43df7abe6cf3227ed96cc878533e99695f26c3f088c0784b6b6ac4f740cfb48e1d1b20a1e3723c15386192b58f721fe06
+srccontainersize 4992
+srccontainerchecksum 3d0e1d66a6ae6835eaa1e5342a448895d6cc6ca5b0f9a300113b2c43d276ec9e1785c41700895f4fcfa19d4fd3098e476dbdd320eccab3c2facc855a85f63870
srcfiles size=5
RELOC/source/latex/overpic/overpic.dtx
RELOC/source/latex/overpic/overpic.ins
@@ -248705,7 +248720,7 @@ catalogue-contact-repository https://github.com/rolfn/overpic
catalogue-ctan /macros/latex/contrib/overpic
catalogue-license lppl1.3
catalogue-topics graphics-text
-catalogue-version 2.0
+catalogue-version 2.1
name pacioli
category Package
@@ -265936,7 +265951,7 @@ catalogue-version 1.1
name profcollege
category Package
-revision 68841
+revision 69343
shortdesc A LaTeX package for French maths teachers in college
relocated 1
longdesc This package provides some commands to help French mathematics
@@ -265946,16 +265961,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 1333464
-containerchecksum a60279ad94dab8ee81597aa1926181a23095012e25094975c99e6e2e77dfbbdabb11c321779540542230b15f72f24f6d6911e4dc987dd5eec20db251ddf8df76
-doccontainersize 14981936
-doccontainerchecksum 2c588f7a18a653c24589ac06d2c7e95f646916e714d98a27b0f9b55f94b488b16d89f9e2d59143ef5a05903b9d49d22016ea20fbeb3299f81da164d2231abbcf
-docfiles size=3844
+containersize 1336084
+containerchecksum eb75b12f184b7e3f5ecf333a376b8d59ddbea8a0cba86c9b553074686c354394f10de5b3187b85fd43f458495dbf72c9f0cce7c98d5824c33f485605dd064e7f
+doccontainersize 14584416
+doccontainerchecksum 3976a1a95c47db9bf270f7730b8abd98d82356fdea0897e797d71a8b688c83a7ee122ddb59cc6f34b05d603d3611169bc5afb45c32a4568262b8f0c299b73965
+docfiles size=3847
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=2907
+runfiles size=2923
RELOC/metapost/profcollege/PfCAfficheur.mp
RELOC/metapost/profcollege/PfCAllumettes.mp
RELOC/metapost/profcollege/PfCArithmetique.mp
@@ -266199,6 +266214,7 @@ runfiles size=2907
RELOC/tex/latex/profcollege/PfCCibleQOp.tex
RELOC/tex/latex/profcollege/PfCColorilude.tex
RELOC/tex/latex/profcollege/PfCCompteBon.tex
+ RELOC/tex/latex/profcollege/PfCConversion.tex
RELOC/tex/latex/profcollege/PfCCritere.tex
RELOC/tex/latex/profcollege/PfCCryptarithme.tex
RELOC/tex/latex/profcollege/PfCDecDeci.tex
@@ -266221,6 +266237,7 @@ runfiles size=2907
RELOC/tex/latex/profcollege/PfCEnquete.tex
RELOC/tex/latex/profcollege/PfCEquationComposition2.tex
RELOC/tex/latex/profcollege/PfCEquationLaurent1.tex
+ RELOC/tex/latex/profcollege/PfCEquationModeleBarre.tex
RELOC/tex/latex/profcollege/PfCEquationPose1.tex
RELOC/tex/latex/profcollege/PfCEquationSoustraction2.tex
RELOC/tex/latex/profcollege/PfCEquationSymbole1.tex
@@ -266321,7 +266338,7 @@ catalogue-also proflycee
catalogue-ctan /macros/latex/contrib/profcollege
catalogue-license lppl1.3c
catalogue-topics maths french teaching
-catalogue-version 0.99-z-w
+catalogue-version 0.99-z-y
name proflabo
category Package
@@ -275523,7 +275540,7 @@ binfiles arch=x86_64-solaris size=1
name pyluatex
category Package
-revision 65855
+revision 69343
shortdesc Execute Python code on the fly in your LaTeX documents
relocated 1
longdesc PyLuaTeX allows you to execute Python code and to include the
@@ -275538,10 +275555,10 @@ longdesc and the output to be integrated in your LaTeX file in a single
longdesc compilation run. No additional processing steps are needed. No
longdesc intermediate files have to be written. No placeholders have to
longdesc be inserted.
-containersize 5360
-containerchecksum be9b33158b87cbd95d2fd4eb15bf834f1c828bd58e4f6b8ae58f64de1495b83ae79315311789aaae3266b9f171c4d5ba156adca28735eb9f628b86f45f2f330e
-doccontainersize 101536
-doccontainerchecksum 86623a834885fa548a6aa84f6e471134c4200ed4cb2b915f6aa7540b38bd91b2daef85c9b8a60a92b63e23b20ea8ed47cdf0cfe3b0e7f30c369024bffe59d959
+containersize 5088
+containerchecksum feeaf7b5f5573bcf8a114ac2dba95137fd1fe82219e2786038b1f3ad7bc0781c0c6fd1ba5200e5386a4282f3816a32f28b0fb948dafc4924595e67dea270bd18
+doccontainersize 100836
+doccontainerchecksum ce8ff2a3ece825de5fc79fd541567035bda216b5f07d6da1e90b0bda6cc9e995f2a01becfa56cfd62330583fd2dc9c77dfeb705ee80d48d6b6aeb068e650a33c
docfiles size=48
RELOC/doc/lualatex/pyluatex/README.md details="Readme"
RELOC/doc/lualatex/pyluatex/example/beamer.tex
@@ -275567,7 +275584,7 @@ catalogue-contact-repository https://github.com/tndrle/PyLuaTeX
catalogue-ctan /macros/luatex/latex/pyluatex
catalogue-license mit lppl1.3c
catalogue-topics luatex callback expl3
-catalogue-version 0.6.1
+catalogue-version 0.6.2
name python
category Package
@@ -292857,7 +292874,7 @@ catalogue-version 0.3
name shapepar
category Package
-revision 30708
+revision 69343
shortdesc A macro to typeset paragraphs in specific shapes
relocated 1
longdesc \shapepar is a macro to typeset paragraphs in a specific shape.
@@ -292873,10 +292890,10 @@ longdesc \heartpar{sometext...} inside your document. The tedium of
longdesc creating these polygon definitions may be alleviated by using
longdesc the shapepatch extension to transfig which will convert xfig
longdesc output to \shapepar polygon form.
-containersize 15972
-containerchecksum 407fb09d162a3f361c7182f23b010d25bf5d0d4d645780c1c9679be422a50f7181a8184ea391505d258afda822059f0d7d60ad24321adffa05f37d56d0376605
-doccontainersize 169100
-doccontainerchecksum 4db069b9e52935f0ef1463e40999b7f7893ae12b68f6bb07a105f83199b839e6ca3366b7367f6b38f79c4febfbf3a8c1f88115244f59a306870fa4617ade478a
+containersize 15956
+containerchecksum 24975c53f9b29ae8302dc4e169d7d176c4825a0033764c8a08aa610c184e79d249e849e2ac3ddbeccb3bb80a4a5e29ae1c474331de68000de1a63951079acb4d
+doccontainersize 169104
+doccontainerchecksum 69a5f9dba1683ed0302a3dc4edede537986ea473357c0c8c454c26eeceb2c51d31d87d139bc3eed39ef1862c2a6feef0e570e9fb12bf88f15ee7f34280f7daf2
docfiles size=59
RELOC/doc/generic/shapepar/README.shapepar details="Package README"
RELOC/doc/generic/shapepar/proshap.py
@@ -292891,7 +292908,7 @@ runfiles size=16
RELOC/tex/generic/shapepar/triangleshapes.def
catalogue-ctan /macros/latex/contrib/shapepar
catalogue-license other-free
-catalogue-topics micro-layout
+catalogue-topics parshape text-flow micro-layout
catalogue-version 2.2
name shapes
@@ -323894,7 +323911,7 @@ docfiles size=376
name texlive-scripts
category TLCore
-revision 69314
+revision 69327
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.
@@ -323902,10 +323919,10 @@ 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 114268
-containerchecksum 51660389a698d53b4166b8764319ab1ec9176bdfd67b6778111e0fad903c41c63cf2e13bab2c1f0bdb033b9b64e4dfd823d8dccd345a65370dae07cfad12f5a6
+containersize 114256
+containerchecksum 047397f615c895298039f7e54188f0b46d81961b9b46a12921681adaae9dbaa32bdf22c2c8d3d6eda112a1f6b1c4a982093979aaf732ffa4a9d961b9765bd0f7
doccontainersize 431260
-doccontainerchecksum 226caefb1f31c0b8dc1785099efdc5676e8c719e89b4784802d6ffdb02202774e352c544bfee5f2da0432416babee113b596352512d323483c498721ba182f2e
+doccontainerchecksum cf9e83124787bc8940165dbbc17472429e3612dbc1c132d00f503e02e11ed58ca51f5f632efb61dd2d8028ede5f2747b524e537aab20521cef9385a1aa0a5450
docfiles size=561
doc.html
texmf-dist/doc/man/man1/fmtutil-sys.1
@@ -326481,7 +326498,7 @@ catalogue-version 1.4
name texshade
category Package
-revision 67295
+revision 69343
shortdesc Package for setting nucleotide and peptide alignments
relocated 1
longdesc TeXshade is alignment shading software completely written in
@@ -326494,11 +326511,11 @@ longdesc legends; it even allows the user to define completely new
longdesc shading modes. TeXshade combines highest flexibility with TeX
longdesc output quality -- all in a bundle that does not demand
longdesc excessive development time of the user.
-containersize 62008
-containerchecksum cee15af218fd0bb6be633f7806eb6395e2dd320dc6a7e04a6238506a7ee2ef07d68d5de3faf93a566304b8e5b1addff2ec991ea81eecdafebaa52ce9374648e2
-doccontainersize 1247400
-doccontainerchecksum a3f414fe0397034c051ab1d75cb99986294b7e0a2ca8ea84b713bb9ce3cd4b502c1c86e9998553cfa73a46e7539e8c9cc5138d489d08c02d05d26d1e3177cd22
-docfiles size=441
+containersize 62840
+containerchecksum d980ea4d325565bec6a5c27e7104a3a82cec565132b52e418be856bef5f643bb0416d64d53fbb8b2a51f3e08373907d05e30a2e8ad56cbec1d6beee42d11de0a
+doccontainersize 1002972
+doccontainerchecksum 4e97710c70cdc8eb69e480bb33b2387264973401b599af48290d5ba88b062f6a24c2b8b3e7ca4ab515668a45b6536d060b3ecc25f60d74cf7508cfa94d0e61dd
+docfiles size=340
RELOC/doc/latex/texshade/AQP1.phd
RELOC/doc/latex/texshade/AQP1.top
RELOC/doc/latex/texshade/AQP2spec.ALN
@@ -326514,19 +326531,19 @@ docfiles size=441
RELOC/doc/latex/texshade/meme.eps
RELOC/doc/latex/texshade/standard.cod
RELOC/doc/latex/texshade/texshade.pdf details="Package documentation" language="en"
-srccontainersize 315428
-srccontainerchecksum 8fa990a1e4381b41d89ae943968d006c738de845dce8f7a3b33de0d6608190d33e678e03cd7b33fd8c1efeb29c14d672c88b8a93b2af745e7569852975d40695
-srcfiles size=363
+srccontainersize 317464
+srccontainerchecksum 73e02586015857ced965c2be682b26f61ac730a796aa4b0dc95f08851e3ad098db0c4462d402db5d8963e577dce8502138421192b7a5346a21e19e07ddde39eb
+srcfiles size=366
RELOC/source/latex/texshade/texshade.dtx
RELOC/source/latex/texshade/texshade.ins
-runfiles size=165
+runfiles size=168
RELOC/tex/latex/texshade/texshade.def
RELOC/tex/latex/texshade/texshade.sty
catalogue-contact-home https://www.pharmazie.uni-kiel.de/en/pharmceitica/prof-dr-eric-beitz/biotex
catalogue-ctan /macros/latex/contrib/texshade
catalogue-license gpl2
catalogue-topics chemistry molbio
-catalogue-version 1.26c
+catalogue-version 1.27
name texsis
category Package
@@ -330873,6 +330890,34 @@ catalogue-license lppl1.3c
catalogue-topics pgf-tikz
catalogue-version 0.13
+name tikzdotncross
+category Package
+revision 69329
+shortdesc Small set of macros for defining/marking coordinates and crossing (jumps) paths
+relocated 1
+longdesc This package offers a few alternative ways for declaring and
+longdesc marking coordinates and drawing a line with "jumps" over an
+longdesc already existent path, which is a quite common issue when
+longdesc drawing, for instace, Electronic Circuits (like with
+longdesc CircuiTikZ).
+containersize 3076
+containerchecksum bc35051e81ddf690aed0d525de84f52479adbc8707e9d498f955c72a2dfc838e5c433d30633f7257372687c763b0c037fe93d35f24b9ba1545feed92579bd584
+doccontainersize 216872
+doccontainerchecksum f7bdf076862a448cc97a8efc9baca993635e51653e93a8173e353d837354146e0ce3ee53fa9d8ce97a071788357dc7ef5d2f754c23a19ce4e7b67caf1389b043
+docfiles size=63
+ RELOC/doc/latex/tikzdotncross/README.md details="Readme"
+ RELOC/doc/latex/tikzdotncross/tikzdotncross.pdf details="Package documentation"
+ RELOC/doc/latex/tikzdotncross/tikzdotncross.tex
+runfiles size=2
+ RELOC/tex/latex/tikzdotncross/tikzdotncross.sty
+catalogue-contact-bugs https://github.com/alceu-frigeri/tikzdotncross/issues
+catalogue-contact-development https://github.com/alceu-frigeri/tikzdotncross
+catalogue-contact-repository https://github.com/alceu-frigeri/tikzdotncross
+catalogue-ctan /graphics/pgf/contrib/tikzdotncross
+catalogue-license lppl1.3c gpl3+
+catalogue-topics pgf-tikz graphics diagram-circ electronic
+catalogue-version 1.0
+
name tikzducks
category Package
revision 66773
@@ -342254,31 +342299,31 @@ catalogue-version 1.3a
name tutodoc
category Package
-revision 69079
+revision 69343
shortdesc Typeset tutorial-like documentations
relocated 1
longdesc This package provides some macros to write documentation of
longdesc LaTeX packages in a tutorial style.
-containersize 7288
-containerchecksum e2025a9bf3358c41838ec65328747ce6e7c4245e6807c56a2d0c225a2696b9722b5dac4c1b705e42d852037a9fc2f4be554fe2f57780848789b9995c45b84e42
-doccontainersize 1302720
-doccontainerchecksum 966dad4ddc15234ac2e806aa41118bd315ddf8ad69ed0fa73dbe85ddb4bc4a653541b75c041e0a0942ca267cf206fcfae495eeefd4894dc41a3982cddd60067a
-docfiles size=371
+containersize 7456
+containerchecksum acd6fc6114ab1c25259485514b54d848b75cb5f45dc05cdb8324a91b127031c0db8c84c445b0e1b429dc1a5ca0a6a394987465363265c0f830ea60e72c6ab7de
+doccontainersize 1301892
+doccontainerchecksum 8f58c8eaa4db17315d69088b9cb446b90504fe62395fcb07495742695f2c8e8215ab76596d4d98cad3c432f3e6079a2ec3088074345d0ace4d309db3163ce405
+docfiles size=375
RELOC/doc/latex/tutodoc/MANIFEST.md
RELOC/doc/latex/tutodoc/README.md details="Readme"
RELOC/doc/latex/tutodoc/tutodoc-en.pdf details="Package documentation" language="en"
RELOC/doc/latex/tutodoc/tutodoc-en.tex
RELOC/doc/latex/tutodoc/tutodoc-fr.pdf details="Package documentation" language="fr"
RELOC/doc/latex/tutodoc/tutodoc-fr.tex
-runfiles size=8
- RELOC/tex/latex/tutodoc/tdoc-locale-english.cfg.sty
- RELOC/tex/latex/tutodoc/tdoc-locale-french.cfg.sty
+runfiles size=9
+ RELOC/tex/latex/tutodoc/tutodoc-locale-main-english.cfg.sty
+ RELOC/tex/latex/tutodoc/tutodoc-locale-main-french.cfg.sty
RELOC/tex/latex/tutodoc/tutodoc.sty
catalogue-contact-repository https://github.com/bc-tools/for-latex
catalogue-ctan /macros/latex/contrib/tutodoc
catalogue-license gpl3
-catalogue-topics doc-tool
-catalogue-version 1.0.1
+catalogue-topics doc-tool expl3
+catalogue-version 1.1.0
name twemoji-colr
category Package
@@ -347947,29 +347992,29 @@ catalogue-version 2.25
name ukbill
category Package
-revision 68862
+revision 69343
shortdesc A class for typesetting UK legislation
relocated 1
longdesc This package provides formatting to easily typeset draft UK
longdesc legislation. The libre font Palatine Parliamentary is required
longdesc to use this package.
-containersize 4864
-containerchecksum 62df42c7881c5d6c9422f5d23458cdde0ded8d20e23c9a5f26623153fadd6c2744d930933c58ca34ee39aea57687eb46a5098ac86b668c5bdf5f1390f9d2b723
-doccontainersize 192652
-doccontainerchecksum caea960263e007a4c71767f053d9df3666861f0599106e2851a6da33bfb1796af4b2ac27a55edd35b96a0b452f451cb03897160cda7d40d0a09c6a1784384b5f
-docfiles size=59
+containersize 5192
+containerchecksum eacc14fe9e99a588032338942bf115c49216e15c6db2bd8958180f6b1ae2c7c243bf272d526a0b0ee68049fb96ab726bb9e993d81a90ca2cf17eaefe59344de0
+doccontainersize 196488
+doccontainerchecksum c025d09b95efa89cc221113fd8b52797a99309d5ba956d60eb374b6ee1420940c84ca2fe718cfc7f3184ce840fdcab7d5cd60d3b19447296e9736269dab7e3c4
+docfiles size=60
RELOC/doc/latex/ukbill/README details="Readme"
RELOC/doc/latex/ukbill/immigration-bill.pdf details="Example of use"
RELOC/doc/latex/ukbill/immigration-bill.tex
RELOC/doc/latex/ukbill/ukbill-documentation.pdf details="Package documentation"
RELOC/doc/latex/ukbill/ukbill-documentation.tex
-runfiles size=5
+runfiles size=6
RELOC/tex/latex/ukbill/ukbill.cls
catalogue-contact-home https://github.com/ezgranet/ukbill
catalogue-ctan /macros/latex/contrib/ukbill
catalogue-license lppl1.3c
-catalogue-topics legal
-catalogue-version 1.0.3
+catalogue-topics legal class doc-templ
+catalogue-version 1.2.0
name ukrhyph
category Package
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
index f992cf6037..26c33e20d0 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
@@ -1 +1 @@
-dcbb0ac93366cb877b4c12310273e1f7 texlive.tlpdb
+eabc2989868e13823953b2d4bc09fa13 texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
index 313f5d1c81..c314b62c1e 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
@@ -1 +1 @@
-e4e04d1f7312d19680a6bcbfab6444dcd9d89665b11022bcaadfdf4aee946e244e0156784a12a42101032491f8f69b4b2b60e263a08e63298d1987a7959a0c23 texlive.tlpdb
+5df0b432175dfab34af87cce763f464a0a57705c4e92b7ae5df4fe5c113823dcce2f6d627fca2076e10b6a50d1e527bb8a9e593422642e52a1214229e6ad7bb1 texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
index 2e508513b8..329189f3be 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+QqiBBqTOGHfhlDjHAFAmWZ9ZMACgkQTOGHfhlD
-jHDkQAf+Lsqc7txva2pV87wdNCJ1KyMj6u0tAgL0Va3mYuzSE/1VRQ4aYhaa5cxT
-y6xNf4aAlDh/nNXlKdGqoYQkqlBozhcX6axmi9KMYYzxwryZq4qYsFYzfgz0F7Ti
-ZiSKHxjFfSIcqJS2PNn5s9E07GIvpfBJ1FQAK0gQxdBvfYd6ZwK4dEt5XLFh7S61
-h2ns94HKGZcgk9tDVhZkqxbisGuFWeBe/Z3BFeZ7NF6xOK0pY3ctTtnUD58aADIP
-Tt4w7S062P+LyZLAaSavvwaPqMljPMuH2+ZTz3vMPsdKgXhG4+nvyZWbNGVwElKG
-JJewTu01ES8gTerS6nsvnF0P+O0VXg==
-=WkQQ
+iQEzBAEBCgAdFiEE2PL4YFeoV+QqiBBqTOGHfhlDjHAFAmWbRe0ACgkQTOGHfhlD
+jHCZcwf+Nqe8cBLT0IOkyloZkriBYSEF9HBr7UerSXzRZ0HrWsUDYZbXRvrYpB7g
+yUYVrMJLL5n1UJSgzTuR0n0KyxEzTqZexiIu0M5wix40QLSl/vBh8ncjepOUoRil
+O3qovHu0ZGH2k7/noUq+E0QLbSiU9w54sxMhk/GPC8hcB97hK2pKzNA3Wulyz7l3
+PbKTurpo2qGs+oMzlFHYHH9/L40PeeGgN66MXQS77GCj1sI5WjA3a1+nCqaa3MiY
+hk+VOnwjJ4aGBbcw9R5P6XCphzhrGvibWgCAph4FYcFsbZGqnyEZQ9PAcFD2jemB
+uzxXlabkRuKhbGpN2j13Lhn4SF/hUg==
+=Z7ix
-----END PGP SIGNATURE-----
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
index 84f092f81d..280b939522 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
Binary files differ