summaryrefslogtreecommitdiff
path: root/Master/tlpkg
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg')
-rw-r--r--Master/tlpkg/TeXLive/TLUtils.pm71
-rwxr-xr-xMaster/tlpkg/bin/c2a4
-rwxr-xr-xMaster/tlpkg/bin/tl-hyph-test71
-rwxr-xr-xMaster/tlpkg/bin/tl-update-tlpdb13
-rwxr-xr-xMaster/tlpkg/bin/tlpkg-ctan-check12
-rw-r--r--Master/tlpkg/gpg/tl-key-extension.txt42
-rw-r--r--Master/tlpkg/installer/ctan-mirrors.pl2
-rwxr-xr-xMaster/tlpkg/libexec/ctan2tds11
-rw-r--r--Master/tlpkg/texlive.tlpdb719
-rw-r--r--Master/tlpkg/tlpsrc/atableau.tlpsrc0
-rw-r--r--Master/tlpkg/tlpsrc/collection-games.tlpsrc1
-rw-r--r--Master/tlpkg/tlpsrc/collection-langjapanese.tlpsrc1
-rw-r--r--Master/tlpkg/tlpsrc/collection-luatex.tlpsrc1
-rw-r--r--Master/tlpkg/tlpsrc/collection-mathscience.tlpsrc1
-rw-r--r--Master/tlpkg/tlpsrc/collection-pictures.tlpsrc1
-rw-r--r--Master/tlpkg/tlpsrc/convert-jpfonts.tlpsrc0
-rw-r--r--Master/tlpkg/tlpsrc/hyphen-arabic.tlpsrc4
-rw-r--r--Master/tlpkg/tlpsrc/hyphen-farsi.tlpsrc4
-rw-r--r--Master/tlpkg/tlpsrc/mathalpha.tlpsrc1
-rw-r--r--Master/tlpkg/tlpsrc/prisma-flow-diagram.tlpsrc0
-rw-r--r--Master/tlpkg/tlpsrc/tikz-triminos.tlpsrc0
-rw-r--r--Master/tlpkg/tlpsrc/unibidi-lua.tlpsrc0
-rw-r--r--Master/tlpkg/tlpsrc/yb-book.tlpsrc3
23 files changed, 620 insertions, 342 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm
index b9ff366fcee..ddefb9d69c4 100644
--- a/Master/tlpkg/TeXLive/TLUtils.pm
+++ b/Master/tlpkg/TeXLive/TLUtils.pm
@@ -3677,69 +3677,106 @@ sub _create_config_files {
close(OUTFILE) || warn "close(>$dest) failed: $!";
}
+#
sub parse_AddHyphen_line {
my $line = shift;
my %ret;
# default values
- my $default_lefthyphenmin = 2;
- my $default_righthyphenmin = 3;
- $ret{"lefthyphenmin"} = $default_lefthyphenmin;
- $ret{"righthyphenmin"} = $default_righthyphenmin;
+ my $default_lefthyphenmin = -1;
+ my $default_righthyphenmin = -1;
$ret{"synonyms"} = [];
for my $p (quotewords('\s+', 0, "$line")) {
my ($a, $b) = split /=/, $p;
if ($a eq "name") {
if (!$b) {
- $ret{"error"} = "AddHyphen line needs name=something";
+ $ret{"error"} = "AddHyphen line needs name=something: $line";
return %ret;
}
$ret{"name"} = $b;
next;
}
if ($a eq "lefthyphenmin") {
- $ret{"lefthyphenmin"} = ( $b ? $b : $default_lefthyphenmin );
+ if (! defined $b) {
+ $ret{"error"} = "AddHyphen line needs lefthyphenmin=something: $line";
+ return %ret;
+ }
+ $ret{"lefthyphenmin"} = $b;
next;
}
if ($a eq "righthyphenmin") {
- $ret{"righthyphenmin"} = ( $b ? $b : $default_righthyphenmin );
+ if (! defined $b) {
+ $ret{"error"} = "AddHyphen line needs righthyphenmin=something: $line";
+ return %ret;
+ }
+ $ret{"righthyphenmin"} = $b;
next;
}
if ($a eq "file") {
if (!$b) {
- $ret{"error"} = "AddHyphen line needs file=something";
+ $ret{"error"} = "AddHyphen line needs file=something: $line ";
return %ret;
}
$ret{"file"} = $b;
next;
}
if ($a eq "file_patterns") {
- $ret{"file_patterns"} = $b;
- next;
+ # many are blank in hyph-utf8, don't check.
+ $ret{"file_patterns"} = $b;
+ next;
}
if ($a eq "file_exceptions") {
- $ret{"file_exceptions"} = $b;
- next;
+ # many are blank in hyph-utf8, don't check.
+ $ret{"file_exceptions"} = $b;
+ next;
}
if ($a eq "luaspecial") {
- $ret{"luaspecial"} = $b;
- next;
+ if (!$b) {
+ $ret{"error"} = "AddHyphen line needs luaspecial=something: $line";
+ return %ret;
+ }
+ $ret{"luaspecial"} = $b;
+ next;
}
if ($a eq "databases") {
+ if (!$b) {
+ $ret{"error"} = "AddHyphen line needs databases=something: $line";
+ return %ret;
+ }
@{$ret{"databases"}} = split /,/, $b;
next;
}
if ($a eq "synonyms") {
+ if (!$b) {
+ $ret{"error"} = "AddHyphen line needs synonyms=something: $line";
+ return %ret;
+ }
@{$ret{"synonyms"}} = split /,/, $b;
next;
}
if ($a eq "comment") {
- $ret{"comment"} = $b;
- next;
+ $ret{"comment"} = $b;
+ next;
}
# should not be reached at all
- $ret{"error"} = "Unknown language directive $a";
+ $ret{"error"} = "Unknown AddHyphen directive $a: $line";
return %ret;
}
+ if (! $ret{"name"}) {
+ $ret{"error"} = "AddHyphen is missing name setting: $line";
+ return %ret;
+ }
+ if ($ret{"lefthyphenmin"} !~ /^[0-9]$/) {
+ $ret{"lefthyphenmin"} = "" if ! $ret{"lefthyphenmin"}; #undef warning
+ $ret{"error"} = "AddHyphen has missing or bad "
+ . " lefthyphenmin ($ret{lefthyphenmin}): $line";
+ return %ret;
+ }
+ if ($ret{"righthyphenmin"} !~ /^[0-9]$/) {
+ $ret{"righthyphenmin"} = "" if ! $ret{"righthyphenmin"}; #undef warning
+ $ret{"error"} = "AddHyphen has missing or bad "
+ . " righthyphenmin ($ret{righthyphenmin}): $line";
+ return %ret;
+ }
# this default value couldn't be set earlier
if (not defined($ret{"databases"})) {
if (defined $ret{"file_patterns"} or defined $ret{"file_exceptions"}
diff --git a/Master/tlpkg/bin/c2a b/Master/tlpkg/bin/c2a
index 3d1b942f4b1..670b9869f2a 100755
--- a/Master/tlpkg/bin/c2a
+++ b/Master/tlpkg/bin/c2a
@@ -43,9 +43,9 @@ sub main {
my @lines;
($status,@lines) = &run_c2l ("");
if ($status) {
- print "first c2l failed, exiting.\n";
+ print "first c2l failed, exiting ($status).\n";
print @lines;
- exit $status;
+ exit $status / 256;
}
my $i;
diff --git a/Master/tlpkg/bin/tl-hyph-test b/Master/tlpkg/bin/tl-hyph-test
index 02d2a7a770f..cdf79a2c1a9 100755
--- a/Master/tlpkg/bin/tl-hyph-test
+++ b/Master/tlpkg/bin/tl-hyph-test
@@ -10,43 +10,47 @@
# It's complicated.
# Usage:
-# Initial setup for first time:
-#tmpdir=/home/texlive/hyphtest # used in TLhyphtest.pro (used below).
-# # but otherwise could be anything
-#mkdir $tmpdir # e.g., , could be anywhere
-#cd $tmpdir
-#
-# Get svn checkout of Master tree; need real checkout for the build below.
-#svn -q co svn://tug.org/texlive/trunk/Master # takes an hour
-# If on tug, slightly faster:
-#time nice -19 svn -q co file:///home/svn/texlive/trunk/Master
+## Initial setup for first time:
+##tmpdir=/home/texlive/hyphtest # used in TLhyphtest.pro (used below).
+## # but otherwise could be anything
+##mkdir $tmpdir # e.g., , could be anywhere
+##cd $tmpdir
+##
+## Get svn checkout of Master tree; need real checkout for the build below.
+##svn -q co svn://tug.org/texlive/trunk/Master # takes an hour
+## If on tug, slightly faster:
+##time nice -19 svn -q co file:///home/svn/texlive/trunk/Master
#
+#
# After the first time, when the checkout already exists:
-#rm -rf inst
+#cd $tmpdir
+#rm -rf inst catdump.pl
#svn update -q Master # get updates made in the meantime
#svn status Master # make sure it's completely clean
#
# Unzip the new hyph-utf tree in our temp checkout.
#pushd Master/texmf-dist
-#ls -l $CTAN/install/language/hyph-utf8.tds.zip # ensure new file
+#ls -l $CTAN/install/language/hyph-utf8.tds.zip # ensure new file on ctan
#unzip !$ # overwrite All
-# In that unzip command, overwrite All symlinks with the regular files;
-# on tug.org, CTAN=/home/ftp/tex-archive.
+# In that unzip command, overwrite All symlinks with the regular files.
+# On tug.org, CTAN=/home/ftp/tex-archive.
# (This unzip won't remove any no-longer-distributed files, but that
# seems like too much trouble to deal with here. The final commit
# will take care of it.)
#
# Unzip new tlpsrc files (without leading directory):
-#cd tlpkg/tlpsrc
+#cd ../tlpkg/tlpsrc
#unzip -j ../../texmf-dist/source/generic/hyph-utf8/tlpsrc.zip # overwrite All
#
# Back to top level of $tmpdir (the one with the ./Master subdir)
# for cleanliness, and run this script.
#popd
+#svn status Master # if new package/file has been added, set newpkg/file below
+#svn diff Master >/tmp/sdh # review changes
#./Master/tlpkg/bin/tl-hyph-test
#
# Once it all works, can install hyph-utf8 with ctan2tl as usual;
-# don't just commit here, for the sake of additions and removals.
+# don't just commit here, so additions and removals will be correct.
# Also, good to run a test build right after committing since there is a
# good chance of failure, despite all the testing:
#force_rebuild=true cron.trunk
@@ -57,23 +61,28 @@
#rm `svn status Master | sed -n 's/\?//p'` # remove "?" files (new ones)
#svn status Master # ensure clean
+#
: ${do_mktexlsr=true}
: ${do_tlpdb=true}
: ${do_lang_files=true}
: ${do_install=true}
: ${do_pkgs=true}
-: ${newfile=hyph-rm.ec.tex} # some new file in the new release
: ${newpkg=hyphen-romansh} # and the package it's in
+: ${newfile=hyph-rm.ec.tex} # some new file in the new release
real0=`realpath $0`
-mydir=`cd \`dirname "$real0"\` && pwd` # top level
+mydir=`cd \`dirname "$real0"\` && pwd` # tlpkg/bin
-Master=$mydir/Master
+Master=`cd $mydir/../.. && pwd`
test -d "$Master" || { echo "$0: no Master dir: $Master" >&2; exit 1; }
+top=`cd $Master/.. && pwd`
+
# /usr/local/bin for updated perl on tug.
PATH=$Master/bin/x86_64-linux:/usr/local/bin:/usr/bin
-TMPDIR=$mydir/tmp; export TMPDIR; test -d $TMPDIR || mkdir $TMPDIR
+TMPDIR=$top/tmp; export TMPDIR
+test -d $TMPDIR || mkdir $TMPDIR
+test -d $TMPDIR || { echo "$0: no tmpdir?: $TMPDIR" >&2; exit 1; }
unset TEXMFSYSVAR; unset TEXMFSYSCONFIG
unset TEXMFVAR; unset TEXMFCONFIG
@@ -101,7 +110,7 @@ if $do_tlpdb; then
# If running this multiple times, can use --catalogue-dump
# to avoid rereading the XML every time; just don't forget
# to remove the dump file when done, or it will never get updated.
- catdump="--catalogue-dump ./catdump.pl" #; catdump=
+ catdump="--catalogue-dump $top/catdump.pl" #; catdump=
# -v for progress; -vv for extremely voluminous debugging.
# --save-anyway because there will probably be revision decreases.
@@ -156,20 +165,26 @@ if $do_lang_files; then
fi
#
+printf "\n\f `date`\n"
+cmd="tlmgr check files runfiles"
+echo "$0: checking file consistency: $cmd"
+$cmd || exit $?
+
+#
# Install minimal, then install the packages with AddHyphen directives
# (in practice: hyphen-* and dehyph-exptl), to avoid installing all the
# non-language stuff, which is a ton.
-inst=$mydir/inst
+instdir=$top/inst
if $do_install; then
printf "\n\f `date`\n"
- echo "$0: installing minimal TL into: $inst"
+ echo "$0: installing minimal TL into: $instdir"
- rm -rf $inst
+ rm -rf $instdir
date
set -x
$Master/tlpkg/bin/tl-try-install \
- -o $inst \
+ -o $instdir \
--profile $Master/tlpkg/dev/profiles/TLhyphtest.pro \
--quiet \
--repo $Master \
@@ -179,7 +194,7 @@ fi
if $do_pkgs; then
printf "\n\f `date`\n"
- echo "$0: installing hyph packages with tlmgr into: $inst"
+ echo "$0: installing hyph packages with tlmgr into: $instdir"
tlpsrc=$Master/tlpkg/tlpsrc
hyphen_pkgs=`cd $tlpsrc && grep -l AddHyphen * | sed s/.tlpsrc//`
@@ -194,7 +209,7 @@ if $do_pkgs; then
echo "$0: and engine packages: " $engine_pkgs
# reset PATH to run using our just-installed tree.
- PATH=$inst/bin/x86_64-linux:/usr/local/bin:/usr/bin
+ PATH=$instdir/bin/x86_64-linux:/usr/local/bin:/usr/bin
date
set -x
tlmgr install $hyphen_pkgs $engine_pkgs || exit $?
@@ -202,7 +217,7 @@ fi
# also written into inst/ since we just changed PATH.
printf "\n\f `date`\n"
-echo "$0: running one more fmtutil-sys for good measure"
+echo "$0: running fmtutil-sys separately from install for reproducibility:"
set -x
fmtutil-sys --all
# and that's our exit status.
diff --git a/Master/tlpkg/bin/tl-update-tlpdb b/Master/tlpkg/bin/tl-update-tlpdb
index aa998a75d94..32d4a6bd13d 100755
--- a/Master/tlpkg/bin/tl-update-tlpdb
+++ b/Master/tlpkg/bin/tl-update-tlpdb
@@ -143,8 +143,8 @@ sub main {
if ($opt_no_revision_check) {
if ($opt_keep_revisions) {
- copy_revisions_over($oldtlpdb, $newtlpdb);
- info("$prg: keeping old revisions due to --keep-revisions\n");
+ copy_revisions_over($oldtlpdb, $newtlpdb);
+ info("$prg: keeping old revisions due to --keep-revisions\n");
} else {
info("$prg: not checking revisions due to --no-reverse-revision-check\n");
}
@@ -211,7 +211,7 @@ sub main {
}
}
if (!$buggy_tlpdb) {
- finish($newtlpdb, $pkgcount);
+ finish($newtlpdb, $pkgcount); # never returns
} else {
# return error to the shell script, it is evaluated in cron.tl!
return 1;
@@ -704,6 +704,13 @@ sub is_hash_ref {
sub finish {
my ($tlpdb,$pkgcount) = @_;
+
+ # uncommenting this line is the way to test parse_AddHyphen_line and
+ # similar, since that's the only time they are called. Seems like it
+ # would be cleaner to parse them when the *.tlpsrc is read. Someday.
+ #TeXLive::TLUtils::create_language_def($tlpdb, "/tmp/tlut-language.def",
+ # "/dev/null");
+
if ($opt_output) {
if (open(OUT, ">$opt_output")) {
$tlpdb->writeout(\*OUT);
diff --git a/Master/tlpkg/bin/tlpkg-ctan-check b/Master/tlpkg/bin/tlpkg-ctan-check
index fa6352d59a7..398d9ecb99b 100755
--- a/Master/tlpkg/bin/tlpkg-ctan-check
+++ b/Master/tlpkg/bin/tlpkg-ctan-check
@@ -61,7 +61,8 @@ my @TLP_working = qw(
askinclude askmaps asmeconf asmejour aspectratio
assignment association-matrix assoccnt asternote astro asyfig
asymptote-faq-zh-cn asymptote-by-example-zh-cn asymptote-manual-zh-cn
- asy-overview asypictureb atbegshi atenddvi atendofenv atkinson atveryend
+ asy-overview asypictureb atableau atbegshi
+ atenddvi atendofenv atkinson atveryend
attachfile attachfile2
aucklandthesis augie auncial-new aurical aurl
auto-pst-pdf-lua autobreak autopdf
@@ -226,7 +227,7 @@ my @TLP_working = qw(
context-simpleslides context-squares context-sudoku
context-transliterator context-typescripts context-vim
context-visualcounter
- continue contour contracard contract conv-xkv convbkmk
+ continue contour contracard contract conv-xkv convbkmk convert-jpfonts
cooking cooking-units cookingsymbols
cool coolfn coollist coolstr coolthms cooltooltips
coop-writing cooperhewitt
@@ -698,7 +699,7 @@ my @TLP_working = qw(
ppmcheckpdf ppr-prv ppt-slides pracjourn practicalreports
precattl prelim2e preprint prerex present
pressrelease prettyref prettytok preview prftree
- principia printlen proba probsoln prociagssymp
+ principia printlen prisma-flow-diagram proba probsoln prociagssymp
prodint productbox profcollege proflabo proflycee profmaquette
profsio program
progress progressbar projlib
@@ -868,7 +869,8 @@ my @TLP_working = qw(
tikz-kalender tikz-karnaugh tikz-ladder tikz-lake-fig tikz-layers
tikz-mirror-lens tikz-nef tikz-network tikz-nfold tikz-opm tikz-optics
tikz-osci tikz-page tikz-palattice tikz-planets tikz-qtree
- tikz-relay tikz-sfc tikz-swigs tikz-timing tikz-trackschematic tikz-truchet
+ tikz-relay tikz-sfc tikz-swigs
+ tikz-timing tikz-trackschematic tikz-triminos tikz-truchet
tikzbricks tikzcodeblocks tikzdotncross tikzducks
tikzfill tikzinclude tikzlings
tikzmark tikzmarmots tikzorbital
@@ -916,7 +918,7 @@ my @TLP_working = qw(
undar-digitacion undergradmath underlin underoverlap underscore undolabl
unfonts-core unfonts-extra
uni-titlepage uni-wtal-ger uni-wtal-lin
- unicode-alphabets unicode-data unicode-bidi
+ unibidi-lua unicode-alphabets unicode-data unicode-bidi
unicode-math unicode-math-input
unicodefonttable unifith unifront unigrazpub unimath-plain-xetex
uninormalize uniquecounter unisc unisugar
diff --git a/Master/tlpkg/gpg/tl-key-extension.txt b/Master/tlpkg/gpg/tl-key-extension.txt
index c8cea8097b4..ac4df1a5d75 100644
--- a/Master/tlpkg/gpg/tl-key-extension.txt
+++ b/Master/tlpkg/gpg/tl-key-extension.txt
@@ -24,21 +24,30 @@ gpg --edit-key $KEYID
gpg -a --export $KEYID > texlive.asc
# update USB drive with new stuff, remove from home,
-
rm -rf $GNUPGHOME
unset GNUPGHOME
# send keys
# make sure that .gnupg/dirmngr.conf does NOT contain hkp-cacert lines!!!
-# keys.openpgp.org
-gpg --export $KEYID | curl -T - https://keys.openpgp.org
-# this will give an URL to associate key with email, visit it!
+# upload to keyservers. No other good key servers currently known.
+keyservers=(
+ "hkps://keys.openpgp.org/"
+ "hkps://keyserver.ubuntu.com/"
+)
+for ks in ${keyservers[@]} ; do
+ gpg --send-key --keyserver $ks $KEYID
+done
-# ubuntu key server
-gpg --send-key --keyserver hkp://keyserver.ubuntu.com:80 $KEYID
+## upload to keys.openpgp.org:
+#gpg --export $KEYID | curl -T - https://keys.openpgp.org
+## this will give an URL to associate key with email, visit it!
+# to check if it's there:
+gpg --list-key --keyserver hkp://keyserver.ubuntu.com:80 tex-live
+# The new GPG servers strip signatures due to signature poisoning
+# attacks, so we tell people to download the key from our web site.
# update TeX Live repository
export GNUPGHOME=/home/texlive/Master/tlpkg/gpg # wherever svn checkout
@@ -47,9 +56,11 @@ gpg1 --import texlive.asc
svn commit
-
-# on the TUG server (needs the exported public key in
-# texlive.asc, see above how to export it)
+#
+# On the TUG server. Get the exported public key in
+# texlive.asc, see above how to export it.
+# This needs to be done with the owner of the .gnupg directory,
+# since group access is disallowed by gpg.
gpg --homedir /home/texlive/.gnupg --import texlive.asc
# can view that .asc with:
@@ -59,7 +70,14 @@ gpg --homedir /home/texlive/.gnupg texlive.asc
cp texlive.asc ~www/texlive/files/texlive`date +%Y`.asc
ln -s texlive`date +%Y`.asc ~www/texlive/files/texlive.asc
-More info:
+# update key example on web page, as in:
+cd /home/httpd/html/texlive/
+co -l verify.html
+$EDITOR !$
+ci -u -m"`date +%Y` key update"
+
+
+ General info:
. tlgpg runs a gpg command with the above TL .gnupg directory, etc.
. tl-sign-file (uses tlgpg) is used to sign texlive.tlpdb.sha512.
@@ -70,7 +88,7 @@ More info:
. (tl)gpg foo.asc will sometimes report expiration info.
. given files updated in Master/tlpkg/gpg, can export into asc:
-gpg --homedir ..../Master/tlpkg/gpg --export -a 0x0D5E5D9106BAB6BC >tl.asc
+ gpg --homedir ..../Master/tlpkg/gpg --export -a $KEYID >tl.asc
. gpg --verify --verbose foo.asc reports some info.
@@ -78,4 +96,4 @@ gpg --homedir ..../Master/tlpkg/gpg --export -a 0x0D5E5D9106BAB6BC >tl.asc
use --status-file and inspect:
gpg --verify --verbose --status-file=/tmp/st foo.asc
-. see tlgpg, tl-sign-file, TLCrypto.pm for full implementation.
+. see tlgpg, tlgpg-verify, tl-sign-file, TLCrypto.pm for full implementation.
diff --git a/Master/tlpkg/installer/ctan-mirrors.pl b/Master/tlpkg/installer/ctan-mirrors.pl
index cdd3f06ad55..abd5be31c9c 100644
--- a/Master/tlpkg/installer/ctan-mirrors.pl
+++ b/Master/tlpkg/installer/ctan-mirrors.pl
@@ -158,6 +158,7 @@ $mirrors = {
},
'Spain' => {
'https://ctan.fisiquimicamente.com/' => 1,
+ 'https://ctan.javinator9889.com/' => 1,
},
'Sweden' => {
'https://ftpmirror1.infania.net/mirror/CTAN/' => 1,
@@ -195,6 +196,7 @@ $mirrors = {
'https://ctan.math.utah.edu/ctan/tex-archive/' => 1,
'https://ctan.math.washington.edu/tex-archive/' => 1,
'https://ctan.mirrors.hoobly.com/' => 1,
+ 'https://ctan.tinycomputers.io/tex-archive/' => 1,
'https://mirror.las.iastate.edu/tex-archive/' => 1,
'https://mirror.math.princeton.edu/pub/CTAN/' => 1,
'https://mirrors.ibiblio.org/pub/mirrors/CTAN/' => 1,
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds
index 619f4352194..e9c81383cb8 100755
--- a/Master/tlpkg/libexec/ctan2tds
+++ b/Master/tlpkg/libexec/ctan2tds
@@ -1929,6 +1929,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`);
'tikz-cd' => '&POSTtikz_cd',
'tikz-decofonts' => '&POST_onelevel',
'tikz-ext' => '&POSTtikz_ext',
+ 'tikz-triminos' => '&POST_onelevel',
'tikz2d-fr' => '&POST_onelevel',
'tikz3d-fr' => '&POST_onelevel',
'tikzdotncross' => '&POST_onelevel',
@@ -2110,7 +2111,7 @@ $standardtex
'acro', 'definitions\.tex|' . $standardtex,
'algxpar', '\.kw\.tex|' . $standardtex,
'aobs-tikz', 'tikz.*tex',
- 'aomart', 'aom_orcid_logo\.|' . $standardtex,
+ 'aomart', 'aom_orcid_logo|' . $standardtex,
'ae', '\.fd$|\.sty',
'alchemist', 'alchemist.sty', # not manual.sty
'alertmessage','img|' . $standardtex,
@@ -2641,6 +2642,7 @@ $standardtex
'underoverlap','underoverlap\.sty',
'underscore', '^..[^s].*\.sty', # not miscdoc.sty
'undolabl', '\.sty|[^c]\.cfg', # omit ltxdoc.cfg, would be system-wide
+ 'unibidi-lua', 'unibidi-lua.tex|' . $standardtex,
'unicode-alphabets', '\..sv|' . $standardtex,
'unicode-math-input', '\.sty|unicode-math-input-table\.tex', # not .py
'unicodefonttable', '(\.sty|unicodefont.tex)$', # not .cls
@@ -7403,10 +7405,9 @@ sub POSThyph_utf8 {
print "*** Before committing from this:\n";
print "*** read leading comments in tlpkg/bin/tl-hyph-test and run it!\n";
print "*** \n";
- print "*** Many files will not be matched, ",
- "because split into hyphen-* pkgs.\n";
- print "*** Similarly, when committing, files will not be add-able.\n";
- print "*** Finally, when ready here, add new hyphen-* pkgs to c-*.\n";
+ print "*** All *hyph[en]-* files will not be matched, in own pkgs.\n";
+ print "*** Similarly, when committing, ignore svn add errors.\n";
+ print "*** Finally, when ready here, add new hyphen-* pkgs to coll*-*.\n";
my $tlpsrc_dir = "$TOPDEST/tlpkg/tlpsrc";
&xmkdir ($tlpsrc_dir);
&xchdir ($tlpsrc_dir);
diff --git a/Master/tlpkg/texlive.tlpdb b/Master/tlpkg/texlive.tlpdb
index a58361588d3..35a1847073f 100644
--- a/Master/tlpkg/texlive.tlpdb
+++ b/Master/tlpkg/texlive.tlpdb
@@ -26,11 +26,11 @@ depend container_split_src_files/1
depend frozen/0
depend minrelease/2016
depend release/2024
-depend revision/73457
+depend revision/73616
name 00texlive.image
category TLCore
-revision 73446
+revision 73605
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=14495
+runfiles size=14482
.mkisofsrc
autorun.inf
texmf-dist/README
@@ -566,6 +566,7 @@ runfiles size=14495
tlpkg/tlpsrc/asymptote-manual-zh-cn.tlpsrc
tlpkg/tlpsrc/asymptote.tlpsrc
tlpkg/tlpsrc/asypictureb.tlpsrc
+ tlpkg/tlpsrc/atableau.tlpsrc
tlpkg/tlpsrc/atbegshi.tlpsrc
tlpkg/tlpsrc/atenddvi.tlpsrc
tlpkg/tlpsrc/atendofenv.tlpsrc
@@ -1290,6 +1291,7 @@ runfiles size=14495
tlpkg/tlpsrc/contract.tlpsrc
tlpkg/tlpsrc/conv-xkv.tlpsrc
tlpkg/tlpsrc/convbkmk.tlpsrc
+ tlpkg/tlpsrc/convert-jpfonts.tlpsrc
tlpkg/tlpsrc/cooking-units.tlpsrc
tlpkg/tlpsrc/cooking.tlpsrc
tlpkg/tlpsrc/cookingsymbols.tlpsrc
@@ -3591,6 +3593,7 @@ runfiles size=14495
tlpkg/tlpsrc/prftree.tlpsrc
tlpkg/tlpsrc/principia.tlpsrc
tlpkg/tlpsrc/printlen.tlpsrc
+ tlpkg/tlpsrc/prisma-flow-diagram.tlpsrc
tlpkg/tlpsrc/proba.tlpsrc
tlpkg/tlpsrc/probsoln.tlpsrc
tlpkg/tlpsrc/prociagssymp.tlpsrc
@@ -4450,6 +4453,7 @@ runfiles size=14495
tlpkg/tlpsrc/tikz-swigs.tlpsrc
tlpkg/tlpsrc/tikz-timing.tlpsrc
tlpkg/tlpsrc/tikz-trackschematic.tlpsrc
+ tlpkg/tlpsrc/tikz-triminos.tlpsrc
tlpkg/tlpsrc/tikz-truchet.tlpsrc
tlpkg/tlpsrc/tikz2d-fr.tlpsrc
tlpkg/tlpsrc/tikz3d-fr.tlpsrc
@@ -4659,6 +4663,7 @@ runfiles size=14495
tlpkg/tlpsrc/uni-titlepage.tlpsrc
tlpkg/tlpsrc/uni-wtal-ger.tlpsrc
tlpkg/tlpsrc/uni-wtal-lin.tlpsrc
+ tlpkg/tlpsrc/unibidi-lua.tlpsrc
tlpkg/tlpsrc/unicode-alphabets.tlpsrc
tlpkg/tlpsrc/unicode-bidi.tlpsrc
tlpkg/tlpsrc/unicode-data.tlpsrc
@@ -4994,7 +4999,7 @@ depend setting_available_architectures:aarch64-linux amd64-freebsd amd64-netbsd
name 00texlive.installer
category TLCore
-revision 73457
+revision 73616
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
@@ -9243,28 +9248,28 @@ catalogue-version 3.8
name acronym
category Package
-revision 72324
+revision 73491
shortdesc Expand acronyms at least once
longdesc This package ensures that all acronyms used in the text are
longdesc spelled out in full at least once. It also provides an
longdesc environment to build a list of acronyms used. The package is
longdesc compatible with pdf bookmarks. The package requires the suffix
longdesc package, which in turn requires that it runs under e-TeX.
-docfiles size=79
+docfiles size=84
texmf-dist/doc/latex/acronym/CHANGES
texmf-dist/doc/latex/acronym/README details="Package Readme"
texmf-dist/doc/latex/acronym/acronym.pdf details="Package documentation"
texmf-dist/doc/latex/acronym/acrotest.tex
-srcfiles size=20
+srcfiles size=21
texmf-dist/source/latex/acronym/acronym.dtx
texmf-dist/source/latex/acronym/acronym.ins
-runfiles size=6
+runfiles size=7
texmf-dist/tex/latex/acronym/acronym.sty
catalogue-also glossaries
catalogue-ctan /macros/latex/contrib/acronym
catalogue-license lppl1.3
catalogue-topics acronym
-catalogue-version 1.49
+catalogue-version 1.50
name acroterm
category Package
@@ -19678,12 +19683,12 @@ catalogue-version 1.01
name aomart
category Package
-revision 73436
+revision 73604
shortdesc Typeset articles for the Annals of Mathematics
longdesc The package provides a class for typesetting articles for The
longdesc Annals of Mathematics.
depend aomart.ARCH
-docfiles size=476
+docfiles size=477
texmf-dist/doc/latex/aomart/README details="Readme"
texmf-dist/doc/latex/aomart/aomart.bib
texmf-dist/doc/latex/aomart/aomart.pdf details="Package documentation"
@@ -19694,24 +19699,25 @@ docfiles size=476
texmf-dist/doc/latex/aomart/aomsample.tex
texmf-dist/doc/latex/aomart/aomsample1.pdf
texmf-dist/doc/latex/aomart/aomsample1.tex
- texmf-dist/doc/latex/aomart/compare_citations.pl
texmf-dist/doc/man/man1/aom-fullref.1
texmf-dist/doc/man/man1/aom-fullref.man1.pdf
-srcfiles size=24
+srcfiles size=25
texmf-dist/source/latex/aomart/Makefile
texmf-dist/source/latex/aomart/aomart.dtx
texmf-dist/source/latex/aomart/aomart.ins
-runfiles size=26
+runfiles size=32
texmf-dist/bibtex/bst/aomart/aomalpha.bst
texmf-dist/bibtex/bst/aomart/aomplain.bst
texmf-dist/scripts/aomart/aom-fullref.pl
texmf-dist/tex/latex/aomart/aom_orcid_logo.eps
texmf-dist/tex/latex/aomart/aom_orcid_logo.pdf
+ texmf-dist/tex/latex/aomart/aom_orcid_logo_bw.eps
+ texmf-dist/tex/latex/aomart/aom_orcid_logo_bw.pdf
texmf-dist/tex/latex/aomart/aomart.cls
catalogue-ctan /macros/latex/contrib/aomart
catalogue-license lppl1.3
catalogue-topics journalpub class
-catalogue-version 1.31
+catalogue-version 1.32
name aomart.aarch64-linux
category Package
@@ -24402,11 +24408,11 @@ catalogue-version 0.2
name asmeconf
category Package
-revision 71956
+revision 73610
shortdesc A LaTeX template for ASME conference papers
longdesc The asmeconf class provides a LaTeX template for ASME
longdesc conference papers, following ASME's guidelines for margins,
-longdesc fonts, headings, captions, and reference formats as of 2022.
+longdesc fonts, headings, captions, and reference formats as of 2025.
longdesc This LaTeX template is intended to be used with the
longdesc asmeconf.bst BibTeX style, for reference formatting, which is
longdesc part of this distribution. Unlike older ASME conference LaTeX
@@ -24420,7 +24426,7 @@ longdesc archivability (PDF/A), and multilingual support. The code is
longdesc compatible with pdfLaTeX or LuaLaTeX. This LaTeX template is
longdesc not a publication of ASME, but it does conform to ASME's
longdesc currently published guidelines for conference papers.
-docfiles size=11803
+docfiles size=7163
texmf-dist/doc/latex/asmeconf/README.md details="Readme"
texmf-dist/doc/latex/asmeconf/asmeconf-sample.bib
texmf-dist/doc/latex/asmeconf/asmeconf-template.pdf details="Example of use"
@@ -24441,18 +24447,18 @@ docfiles size=11803
texmf-dist/doc/latex/asmeconf/sample-figure-1.pdf
texmf-dist/doc/latex/asmeconf/sample-figure-2a.pdf
texmf-dist/doc/latex/asmeconf/sample-figure-2b.pdf
-runfiles size=34
+runfiles size=35
texmf-dist/bibtex/bst/asmeconf/asmeconf.bst
texmf-dist/tex/latex/asmeconf/asmeconf.cls
catalogue-contact-bugs https://github.com/John02139/asmeconf/issues
catalogue-ctan /macros/latex/contrib/asmeconf
catalogue-license mit
catalogue-topics bibtex-sty class confproc engineering scientific-docs
-catalogue-version 1.38
+catalogue-version 1.39
name asmejour
category Package
-revision 71903
+revision 73602
shortdesc A template for ASME journal papers
longdesc The asmejour class provides a template to format preprints
longdesc submitted to ASME journals. The layout and reference formats
@@ -24479,13 +24485,13 @@ docfiles size=1609
texmf-dist/doc/latex/asmejour/sample-figure-1.pdf
texmf-dist/doc/latex/asmejour/sample-figure-2a.pdf
texmf-dist/doc/latex/asmejour/sample-figure-2b.pdf
-runfiles size=23
+runfiles size=24
texmf-dist/bibtex/bst/asmejour/asmejour.bst
texmf-dist/tex/latex/asmejour/asmejour.cls
catalogue-ctan /macros/latex/contrib/asmejour
catalogue-license mit
catalogue-topics class journalpub scientific-docs bibtex-sty engineering expl3
-catalogue-version 1.23
+catalogue-version 1.24
name aspectratio
category Package
@@ -25566,7 +25572,7 @@ binfiles arch=x86_64-solaris size=1393
name asypictureb
category Package
-revision 33490
+revision 73611
shortdesc User-friendly integration of Asymptote into LaTeX
longdesc The package is an unofficial alternative to the package
longdesc provided with the Asymptote distribution, for including
@@ -25576,7 +25582,7 @@ longdesc package is more user-friendly in several ways. Most notably,
longdesc Asymptote errors are repackaged as LaTeX errors, making
longdesc debugging less of a pain. It also has a more robust mechanism
longdesc for identifying unchanged pictures that need not be recompiled.
-docfiles size=157
+docfiles size=194
texmf-dist/doc/latex/asypictureb/README details="Readme"
texmf-dist/doc/latex/asypictureb/asypictureB.pdf details="Package documentation"
srcfiles size=15
@@ -25585,9 +25591,37 @@ srcfiles size=15
runfiles size=3
texmf-dist/tex/latex/asypictureb/asypictureB.sty
catalogue-ctan /graphics/asypictureb
-catalogue-license lppl1.3
+catalogue-license lppl1.3c
catalogue-topics graphics-incl
-catalogue-version 0.3
+catalogue-version 0.4
+
+name atableau
+category Package
+revision 73576
+shortdesc A LaTeX package for symmetric group combinatorics
+longdesc A LaTeX package for symmetric group combinatorics, with
+longdesc commands for Young diagrams, tableaux, tabloids, skew tableaux,
+longdesc shifted tableaux, ribbon tableaux, multitableaux, abacuses.
+longdesc These commands are intended to be easy to use and easy to
+longdesc customise. In particular, TikZ styling can be added to the
+longdesc components of these diagrams and common conventions and idioms
+longdesc are supported using a key-value interface. All diagrams can be
+longdesc used as standalone commands or as part of tikzpicture
+longdesc environments.
+docfiles size=258
+ texmf-dist/doc/latex/atableau/LICENSE
+ texmf-dist/doc/latex/atableau/README.md details="Readme"
+ texmf-dist/doc/latex/atableau/atableau.ini
+ texmf-dist/doc/latex/atableau/atableau.pdf details="Package documentation"
+ texmf-dist/doc/latex/atableau/atableau.tex
+runfiles size=37
+ texmf-dist/tex/latex/atableau/atableau.sty
+catalogue-contact-bugs https://github.com/AndrewMathas/aTableau/issues
+catalogue-contact-repository https://github.com/AndrewMathas/aTableau
+catalogue-ctan /graphics/pgf/contrib/atableau
+catalogue-license lppl1.3c
+catalogue-topics diagram pgf-tikz expl3
+catalogue-version 2.1.0
name atbegshi
category Package
@@ -27423,7 +27457,7 @@ catalogue-version 1.0
name babel
category Package
-revision 73268
+revision 73595
shortdesc Multilingual support for LaTeX, LuaLaTeX, XeLaTeX, and Plain TeX
longdesc This package manages culturally-determined typographical (and
longdesc other) rules for a wide range of languages. A document may
@@ -27436,7 +27470,7 @@ 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.
-docfiles size=309
+docfiles size=311
texmf-dist/doc/latex/babel/README.md details="Readme"
texmf-dist/doc/latex/babel/babel-code.pdf details="Code documentation"
texmf-dist/doc/latex/babel/babel.pdf details="User guide"
@@ -27446,7 +27480,7 @@ srcfiles size=479
texmf-dist/source/latex/babel/bbcompat.dtx
texmf-dist/source/latex/babel/bbidxglo.dtx
texmf-dist/source/latex/babel/locale.zip
-runfiles size=1281
+runfiles size=1285
texmf-dist/makeindex/babel/bbglo.ist
texmf-dist/makeindex/babel/bbind.ist
texmf-dist/tex/generic/babel/UKenglish.sty
@@ -27556,6 +27590,8 @@ runfiles size=1281
texmf-dist/tex/generic/babel/locale/arc/babel-arc-Nbat.ini
texmf-dist/tex/generic/babel/locale/arc/babel-arc-Palm.ini
texmf-dist/tex/generic/babel/locale/arc/babel-arc.ini
+ texmf-dist/tex/generic/babel/locale/arq/babel-algerianarabic.tex
+ texmf-dist/tex/generic/babel/locale/arq/babel-arq.ini
texmf-dist/tex/generic/babel/locale/arz/babel-arz.ini
texmf-dist/tex/generic/babel/locale/arz/babel-egyptianarabic.tex
texmf-dist/tex/generic/babel/locale/as/babel-as.ini
@@ -28085,6 +28121,8 @@ runfiles size=1281
texmf-dist/tex/generic/babel/locale/or/babel-oriya.tex
texmf-dist/tex/generic/babel/locale/os/babel-os.ini
texmf-dist/tex/generic/babel/locale/os/babel-ossetic.tex
+ texmf-dist/tex/generic/babel/locale/oui/babel-olduighur.tex
+ texmf-dist/tex/generic/babel/locale/oui/babel-oui.ini
texmf-dist/tex/generic/babel/locale/pa/babel-pa-Arab.ini
texmf-dist/tex/generic/babel/locale/pa/babel-pa-Guru.ini
texmf-dist/tex/generic/babel/locale/pa/babel-pa.ini
@@ -28422,7 +28460,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 25.1
+catalogue-version 25.2
name babel-albanian
category Package
@@ -33088,7 +33126,7 @@ catalogue-version 1.2
name beamertheme-mirage
category Package
-revision 72656
+revision 73516
shortdesc A beamer theme with dark and light colour schemes
longdesc A beamer theme inspired by the album art of Zhou Shen's song
longdesc Mirage, with a default dark and alternative light mode. Sample
@@ -33114,7 +33152,7 @@ catalogue-contact-repository https://github.com/liantze/beamerthemeMirage
catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-mirage
catalogue-license lppl1.3c
catalogue-topics presentation
-catalogue-version 1.1
+catalogue-version 1.1.1
name beamertheme-npbt
category Package
@@ -34961,7 +34999,7 @@ catalogue-version 1.5
name bib2gls
category Package
-revision 73299
+revision 73573
shortdesc Command line application to convert .bib files to glossaries-extra.sty resource files
longdesc This Java command line application may be used to extract
longdesc glossary information stored in a .bib file and convert it into
@@ -34979,7 +35017,7 @@ longdesc containing definitions (\newglossaryentry etc.) to the .bib
longdesc format required by bib2gls.
depend bib2gls.ARCH
depend glossaries-extra
-docfiles size=2096
+docfiles size=2098
texmf-dist/doc/man/man1/bib2gls.1
texmf-dist/doc/man/man1/bib2gls.man1.pdf
texmf-dist/doc/man/man1/convertgls2bib.1
@@ -35057,7 +35095,7 @@ docfiles size=2096
texmf-dist/doc/support/bib2gls/examples/unaryoperators.bib
texmf-dist/doc/support/bib2gls/examples/usergroups.bib
texmf-dist/doc/support/bib2gls/examples/vegetables.bib
-srcfiles size=1019
+srcfiles size=1020
texmf-dist/source/support/bib2gls/bib2gls-begin.tex
texmf-dist/source/support/bib2gls/bib2gls-cite.bib
texmf-dist/source/support/bib2gls/bib2gls-src.zip
@@ -35069,7 +35107,7 @@ srcfiles size=1019
texmf-dist/source/support/bib2gls/datatool2bib.pod
texmf-dist/source/support/bib2gls/texparser-src.zip
texmf-dist/source/support/bib2gls/version.tex
-runfiles size=628
+runfiles size=637
texmf-dist/scripts/bib2gls/bib2gls.jar
texmf-dist/scripts/bib2gls/bib2gls.sh
texmf-dist/scripts/bib2gls/bibglscommon.jar
@@ -35087,7 +35125,7 @@ catalogue-contact-repository https://github.com/nlct/bib2gls
catalogue-ctan /support/bib2gls
catalogue-license gpl3+
catalogue-topics bibtex-util glossary
-catalogue-version 4.1
+catalogue-version 4.2
name bib2gls.aarch64-linux
category Package
@@ -35289,7 +35327,7 @@ catalogue-version 2.6
name bibcop
category Package
-revision 72840
+revision 73562
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
@@ -35318,7 +35356,7 @@ 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.23
+catalogue-version 0.0.25
name bibcop.aarch64-linux
category Package
@@ -37619,7 +37657,7 @@ catalogue-version 0.4
name biblatex-ieee
category Package
-revision 72908
+revision 73468
shortdesc IEEE style files for BibLaTeX
longdesc This is a BibLaTeX style that implements the bibliography style
longdesc of the IEEE for BibLaTeX. The implementation follows standard
@@ -37646,7 +37684,7 @@ runfiles size=11
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-ieee
catalogue-license lppl1.3c
catalogue-topics biblatex journalpub
-catalogue-version 1.4b
+catalogue-version 1.4c
name biblatex-ijsra
category Package
@@ -39990,7 +40028,7 @@ catalogue-version 2.2
name bidi
category Package
-revision 73362
+revision 73479
shortdesc Bidirectional typesetting in plain TeX and LaTeX, using XeTeX
longdesc A convenient interface for typesetting bidirectional texts with
longdesc plain TeX and LaTeX. The package includes adaptations for use
@@ -40200,12 +40238,14 @@ runfiles size=360
texmf-dist/tex/xelatex/bidi/xltxtra-xetex-bidi.def
catalogue-contact-announce https://github.com/xepersian/bidi/discussions/categories/announcements
catalogue-contact-bugs https://github.com/xepersian/bidi/issues
+catalogue-contact-development https://github.com/sponsors/xepersian
+catalogue-contact-home https://github.com/xepersian
catalogue-contact-repository https://github.com/xepersian/bidi
catalogue-contact-support https://github.com/xepersian/bidi/discussions
catalogue-ctan /macros/xetex/latex/bidi
catalogue-license lppl1.3c
catalogue-topics typesetting xetex bidi class
-catalogue-version 41.5
+catalogue-version 41.6
name bidi-atbegshi
category Package
@@ -45080,21 +45120,22 @@ catalogue-version 2.1
name calculatoritems
category Package
-revision 73069
+revision 73593
shortdesc Insert menus/items for classic calculators
longdesc Insert inline (based on tcolorbox, graphicx and calc packages)
longdesc items/menus for classic calculators (numworks, casio, texas
longdesc instruments, hp).
-docfiles size=60
+docfiles size=263
texmf-dist/doc/latex/calculatoritems/README.md details="Readme"
- texmf-dist/doc/latex/calculatoritems/calculatoritems-doc.pdf
- texmf-dist/doc/latex/calculatoritems/calculatoritems-doc.tex
-runfiles size=4
+ texmf-dist/doc/latex/calculatoritems/calculatoritems-doc.pdf details="Package documentation"
+ texmf-dist/doc/latex/calculatoritems/calculatoritems-docctan.zip
+runfiles size=9
texmf-dist/tex/latex/calculatoritems/calculatoritems.sty
+catalogue-contact-repository https://forge.apps.education.fr/pierquetcedric/packages-latex
catalogue-ctan /macros/latex/contrib/calculatoritems
catalogue-license lppl1.3c
catalogue-topics graphics teaching maths
-catalogue-version 0.1.0
+catalogue-version 0.1.1
name calligra
category Package
@@ -56883,7 +56924,7 @@ catalogue-version 0.1.1
name citation-style-language
category Package
-revision 73391
+revision 73596
shortdesc Bibliography formatting with Citation Style Language
longdesc The Citation Style Language (CSL) is an XML-based language that
longdesc defines the formats of citations and bibliography. There are
@@ -56913,7 +56954,7 @@ docfiles size=75
texmf-dist/doc/latex/citation-style-language/citation-style-language-doc.tex
texmf-dist/doc/man/man1/citeproc-lua.1
texmf-dist/doc/man/man1/citeproc-lua.man1.pdf
-runfiles size=2709
+runfiles size=2710
texmf-dist/scripts/citation-style-language/citeproc-bibtex-data.lua
texmf-dist/scripts/citation-style-language/citeproc-bibtex-parser.lua
texmf-dist/scripts/citation-style-language/citeproc-bibtex2csl.lua
@@ -57027,7 +57068,7 @@ catalogue-contact-repository https://github.com/zepinglee/citeproc-lua
catalogue-ctan /biblio/citation-style-language
catalogue-license mit cc-by-sa-3
catalogue-topics biblio use-lua expl3
-catalogue-version 0.6.7
+catalogue-version 0.6.8
name citation-style-language.aarch64-linux
category Package
@@ -66621,7 +66662,7 @@ depend xmltex
name collection-games
category Collection
-revision 71129
+revision 73533
shortdesc Games typesetting
longdesc Setups for typesetting various games, including chess.
depend bartel-chess-fonts
@@ -66674,6 +66715,7 @@ depend sudoku
depend sudokubundle
depend tangramtikz
depend thematicpuzzle
+depend tikz-triminos
depend trivialpursuit
depend twoxtwogame
depend wargame
@@ -67263,7 +67305,7 @@ depend verifica
name collection-langjapanese
category Collection
-revision 73263
+revision 73551
shortdesc Japanese
longdesc Support for Japanese; additional packages are in
longdesc collection-langcjk.
@@ -67284,6 +67326,7 @@ depend bxwareki
depend chuushaku
depend collection-langcjk
depend convbkmk
+depend convert-jpfonts
depend endnotesj
depend gckanbun
depend gentombow
@@ -69234,7 +69277,7 @@ depend xunicode
name collection-luatex
category Collection
-revision 73266
+revision 73536
shortdesc LuaTeX packages
longdesc Packages for LuaTeX, a TeX engine using Lua as an embedded
longdesc scripting and extension language, with native support for
@@ -69348,12 +69391,13 @@ depend texfindpkg
depend truthtable
depend tsvtemplate
depend typewriter
+depend unibidi-lua
depend uninormalize
depend yamlvars
name collection-mathscience
category Collection
-revision 73232
+revision 73560
shortdesc Mathematics, natural sciences, computer science packages
depend 12many
depend accents
@@ -69370,6 +69414,7 @@ depend amscdx
depend amstex
depend annotate-equations
depend apxproof
+depend atableau
depend autobreak
depend axodraw2
depend backnaur
@@ -69736,7 +69781,7 @@ depend xpiano
name collection-pictures
category Collection
-revision 73368
+revision 73530
shortdesc Graphics, pictures, diagrams
longdesc Including TikZ, pict, etc., but MetaPost and PStricks are
longdesc separate.
@@ -69879,6 +69924,7 @@ depend polyomino
depend postage
depend postit
depend prerex
+depend prisma-flow-diagram
depend productbox
depend ptolemaicastronomy
depend puyotikz
@@ -79131,6 +79177,25 @@ shortdesc x86_64-solaris files of convbkmk
binfiles arch=x86_64-solaris size=1
bin/x86_64-solaris/convbkmk
+name convert-jpfonts
+category Package
+revision 73551
+shortdesc Convert half-width Japanese to full-width beautifully
+longdesc This style file is designed for converting Japanese half-width
+longdesc characters to full-width characters beautifully. This is useful
+longdesc when alphabet characters don't render properly in a Japanese
+longdesc font.
+docfiles size=133
+ texmf-dist/doc/latex/convert-jpfonts/README.txt details="Readme"
+ texmf-dist/doc/latex/convert-jpfonts/convert-jpfonts.pdf details="Package documentation" language="ja"
+ texmf-dist/doc/latex/convert-jpfonts/convert-jpfonts.tex
+runfiles size=2
+ texmf-dist/tex/latex/convert-jpfonts/convert-jpfonts.sty
+catalogue-ctan /macros/latex/contrib/convert-jpfonts
+catalogue-license lppl1.3c
+catalogue-topics japanese
+catalogue-version 1.0.1
+
name cooking
category Package
revision 15878
@@ -83253,7 +83318,7 @@ binfiles arch=x86_64-solaris size=6
name crossword
category Package
-revision 64375
+revision 73579
shortdesc Typeset crossword puzzles
longdesc An extended grid-based puzzle package, designed to take all
longdesc input (both grid and clues) from the same file. The package can
@@ -83287,7 +83352,7 @@ catalogue-contact-repository https://sourceforge.net/p/gene-tex-lib/svn/HEAD/tre
catalogue-ctan /macros/latex/contrib/gene/crossword
catalogue-license other-free
catalogue-topics games cwpuzzle
-catalogue-version 1.11
+catalogue-version 1.13
name crosswrd
category Package
@@ -83807,18 +83872,19 @@ catalogue-topics czech slovak font font-mf
name cs-techrep
category Package
-revision 72666
+revision 73507
shortdesc Technical Reports in Computer Science and Software Engineering
longdesc This package provides a class for the creation of technical
longdesc reports in computer science and software engineering. The style
longdesc is a two-column format similar to IEEE. It is intended for lab
longdesc reports and provides a beginner-friendly template example.
-docfiles size=81
+docfiles size=91
texmf-dist/doc/latex/cs-techrep/COPYING
texmf-dist/doc/latex/cs-techrep/README details="Readme"
texmf-dist/doc/latex/cs-techrep/_cpn_copyIntoExamplesFolder_cls.cmd
texmf-dist/doc/latex/cs-techrep/cs-techrep.pdf details="Package documentation"
texmf-dist/doc/latex/cs-techrep/docstrip.cfg
+ texmf-dist/doc/latex/cs-techrep/template/cpn_all_all.bib
texmf-dist/doc/latex/cs-techrep/template/cs-techrep-example-neumann.pdf details="Example of use"
texmf-dist/doc/latex/cs-techrep/template/cs-techrep-example-neumann.tex
srcfiles size=8
@@ -83830,7 +83896,7 @@ catalogue-contact-repository https://github.com/cyberlytics/cs-techrep
catalogue-ctan /macros/latex/contrib/cs-techrep
catalogue-license lppl1.3c
catalogue-topics class doc-templ report-like
-catalogue-version 0.5
+catalogue-version 0.6
name csassignments
category Package
@@ -84333,7 +84399,7 @@ catalogue-topics distribution
name csthm
category Package
-revision 72152
+revision 73506
shortdesc Customized theorem environments for computer science documents
longdesc This package provides customized theorem-like environments
longdesc specifically designed for computer science documents. It offers
@@ -84348,20 +84414,23 @@ longdesc cleveref support for enhanced cross-referencing The package
longdesc requires the following packages to be installed: amsmath,
longdesc amssymb, amsthm, enumitem, and thmtools. If using the cleveref
longdesc option, hyperref and cleveref are also required.
-docfiles size=105
+docfiles size=29
texmf-dist/doc/latex/csthm/README.md details="Readme"
texmf-dist/doc/latex/csthm/csthm-example.pdf details="Package documentation and example of use"
texmf-dist/doc/latex/csthm/csthm-example.tex
-srcfiles size=3
+srcfiles size=4
texmf-dist/source/latex/csthm/csthm.dtx
texmf-dist/source/latex/csthm/csthm.ins
-runfiles size=1
+runfiles size=2
texmf-dist/tex/latex/csthm/csthm.sty
+catalogue-contact-development https://github.com/agni-datta/csLaTeX/
+catalogue-contact-home https://github.com/agni-datta/csLaTeX/
catalogue-contact-repository https://github.com/agni-datta/csLaTeX/
+catalogue-contact-support https://github.com/agni-datta/csLaTeX/
catalogue-ctan /macros/latex/contrib/csthm
catalogue-license lppl1.3c
catalogue-topics comp-sci maths-theorem
-catalogue-version 1.2
+catalogue-version 1.3
name cstypo
category Package
@@ -87655,7 +87724,7 @@ catalogue-version 1.3
name dashrulex
category Package
-revision 73442
+revision 73504
shortdesc Draw dashed rules
longdesc This package package provides a flexible solution for drawing
longdesc dashed rules in the body. It currently provides two commands,
@@ -87671,7 +87740,7 @@ catalogue-contact-repository https://github.com/texno3/dashrulex
catalogue-ctan /macros/latex/contrib/dashrulex
catalogue-license cc-by-4
catalogue-topics rule line-patt expl3
-catalogue-version 1.02
+catalogue-version 1.02a
name dashundergaps
category Package
@@ -99897,7 +99966,7 @@ catalogue-topics notes editorial
name easybook
category Package
-revision 73290
+revision 73603
shortdesc Easily typesetting Chinese theses or books
longdesc easybook is a pure academic template created based on the
longdesc ctexbook book document class. It also has the functions of book
@@ -99907,7 +99976,7 @@ 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.
-docfiles size=189
+docfiles size=191
texmf-dist/doc/latex/easybook/README.md details="Readme"
texmf-dist/doc/latex/easybook/easybook.pdf details="Package documentation" language="zh"
texmf-dist/doc/latex/easybook/easybook.tex
@@ -99923,7 +99992,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 2025b
+catalogue-version 2025f
name easydtx
category Package
@@ -106318,7 +106387,7 @@ catalogue-version 1.1
name enumitem
category Package
-revision 51423
+revision 73515
shortdesc Control layout of itemize, enumerate, description
longdesc This package provides user control over the layout of the three
longdesc basic list environments: enumerate, itemize and description. It
@@ -106327,7 +106396,7 @@ longdesc well-structured replacements for all their funtionality), and
longdesc in addition provides functions to compute the layout of labels,
longdesc and to 'clone' the standard environments, to create new
longdesc environments with counters of their own.
-docfiles size=53
+docfiles size=56
texmf-dist/doc/latex/enumitem/README.md details="Readme"
texmf-dist/doc/latex/enumitem/enumitem.pdf details="Package documentation"
texmf-dist/doc/latex/enumitem/enumitem.tex
@@ -106338,7 +106407,7 @@ catalogue-contact-repository https://github.com/jbezos/enumitem
catalogue-ctan /macros/latex/contrib/enumitem
catalogue-license mit
catalogue-topics list
-catalogue-version 3.9
+catalogue-version 3.10
name enumitem-zref
category Package
@@ -112674,7 +112743,7 @@ catalogue-topics keyval macro-supp macro-gen
name expltools
category Package
-revision 73452
+revision 73528
shortdesc Development tools for expl3 programmers
longdesc This bundle introduces explcheck, a static analysis tool for
longdesc developers working with expl3 code. Currently in its initial
@@ -112682,7 +112751,7 @@ longdesc release, explcheck aims to help developers identify potential
longdesc issues and improve code quality. In the future, this bundle may
longdesc expand to include additional development tools for expl3.
depend expltools.ARCH
-docfiles size=754
+docfiles size=755
texmf-dist/doc/support/expltools/CHANGES.md
texmf-dist/doc/support/expltools/README.md details="Readme"
texmf-dist/doc/support/expltools/e102.tex
@@ -112732,7 +112801,7 @@ docfiles size=754
texmf-dist/doc/support/expltools/warnings-and-errors.ist
texmf-dist/doc/support/expltools/warnings-and-errors.pdf details="List of warnings and errors"
texmf-dist/doc/support/expltools/warnings-and-errors.tex
-runfiles size=24
+runfiles size=30
texmf-dist/scripts/expltools/explcheck-cli.lua
texmf-dist/scripts/expltools/explcheck-config.lua
texmf-dist/scripts/expltools/explcheck-format.lua
@@ -112741,6 +112810,7 @@ runfiles size=24
texmf-dist/scripts/expltools/explcheck-obsolete.lua
texmf-dist/scripts/expltools/explcheck-parsers.lua
texmf-dist/scripts/expltools/explcheck-preprocessing.lua
+ texmf-dist/scripts/expltools/explcheck-toml.lua
texmf-dist/scripts/expltools/explcheck-utils.lua
texmf-dist/scripts/expltools/explcheck.lua
catalogue-contact-announce https://github.com/witiko/expltools/releases
@@ -117943,7 +118013,7 @@ catalogue-version 1.2
name fillpages
category Package
-revision 73399
+revision 73550
shortdesc Fill up the page count to a certain number (e.g. divisible by 4)
longdesc For printing, the physical page count must be divisible by a
longdesc certain number, most often 4, 8 or 16. This LaTeX package
@@ -117960,7 +118030,7 @@ catalogue-contact-repository https://bitbucket.org/maestro-glanz/fillpages
catalogue-ctan /macros/latex/contrib/fillpages
catalogue-license lppl1.3
catalogue-topics blank-page
-catalogue-version 1.0.1
+catalogue-version 1.1.0
name fillwith
category Package
@@ -123650,11 +123720,11 @@ catalogue-version 0.7.3
name fontscale
category Package
-revision 73289
+revision 73489
shortdesc A flexible interface for setting font sizes
longdesc This package provides an interface for selecting (arbitrary)
longdesc font sizes and associated values.
-docfiles size=43
+docfiles size=44
texmf-dist/doc/latex/fontscale/CHANGELOG.md
texmf-dist/doc/latex/fontscale/README.txt details="Readme"
texmf-dist/doc/latex/fontscale/beery.cls
@@ -123670,7 +123740,7 @@ 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 3.0.5
+catalogue-version 3.0.6
name fontscripts
category Package
@@ -127820,7 +127890,7 @@ catalogue-version 0.01
name gentium-sil
category Package
-revision 73404
+revision 73571
shortdesc A complete Greek font with Latin and Cyrillic, too
longdesc This is a redistribution of the original Gentium release from
longdesc SIL, not altered in any way. Gentium is a typeface family
@@ -139312,13 +139382,13 @@ catalogue-version 2.52
name hvindex
category Package
-revision 46051
+revision 73580
shortdesc Support for indexing
longdesc The package simplifies the indexing of words using the \index
longdesc command of makeidx. With the package, to index a word in a
longdesc text, you only have to type it once; the package makes sure it
longdesc is both typeset and indexed.
-docfiles size=23
+docfiles size=14
texmf-dist/doc/latex/hvindex/Changes
texmf-dist/doc/latex/hvindex/README details="Readme"
texmf-dist/doc/latex/hvindex/hvindex-doc.pdf details="Package documentation"
@@ -139328,7 +139398,7 @@ runfiles size=1
catalogue-ctan /macros/latex/contrib/hvindex
catalogue-license lppl
catalogue-topics index
-catalogue-version 0.04
+catalogue-version 0.04a
name hvlogos
category Package
@@ -140020,7 +140090,7 @@ runfiles size=5
name hyphen-ancientgreek
category TLCore
-revision 73419
+revision 73555
shortdesc Ancient Greek hyphenation patterns.
longdesc Hyphenation patterns for Ancient Greek in LGR and UTF-8
longdesc encodings, including support for (obsolete) Ibycus font
@@ -140041,12 +140111,12 @@ runfiles size=55
name hyphen-arabic
category TLCore
-revision 73419
+revision 73555
shortdesc (No) Arabic hyphenation patterns.
longdesc Prevent hyphenation in Arabic.
depend hyph-utf8
depend hyphen-base
-execute AddHyphen name=arabic lefthyphenmin= righthyphenmin= file=zerohyph.tex file_patterns=
+execute AddHyphen name=arabic lefthyphenmin=0 righthyphenmin=0 file=zerohyph.tex file_patterns=
runfiles size=1
texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-ar.tex
@@ -140068,7 +140138,7 @@ runfiles size=8
name hyphen-base
category TLCore
-revision 73417
+revision 73526
shortdesc core hyphenation support files
longdesc Includes Knuth's original hyphen.tex, zerohyph.tex to disable
longdesc hyphenation, language.us which starts the autogenerated files
@@ -140351,12 +140421,12 @@ runfiles size=5
name hyphen-farsi
category TLCore
-revision 73419
+revision 73555
shortdesc (No) Persian hyphenation patterns.
longdesc Prevent hyphenation in Persian.
depend hyph-utf8
depend hyphen-base
-execute AddHyphen name=farsi synonyms=persian lefthyphenmin= righthyphenmin= file=zerohyph.tex file_patterns=
+execute AddHyphen name=farsi synonyms=persian lefthyphenmin=0 righthyphenmin=0 file=zerohyph.tex file_patterns=
runfiles size=1
texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-fa.tex
@@ -140932,7 +141002,7 @@ runfiles size=6
name hyphen-romansh
category TLCore
-revision 73419
+revision 73555
shortdesc Romansh hyphenation patterns.
longdesc Hyphenation patterns for Romansh. All Romansh idioms and
longdesc Rumantsch Grischun taken into account, developed in
@@ -141276,46 +141346,48 @@ catalogue-version 1.0
name iaria
category Package
-revision 72670
+revision 73502
shortdesc Write documents for the IARIA publications
longdesc This package contains templates for the creation of documents
longdesc for IARIA publications (International Academy, Research, and
longdesc Industry Association) and implements the specifications for the
longdesc IARIA citation style.
-docfiles size=70
+docfiles size=83
texmf-dist/doc/latex/iaria/COPYING
texmf-dist/doc/latex/iaria/README details="Readme"
texmf-dist/doc/latex/iaria/_cpn_copyIntoExamplesFolder_cls.cmd
texmf-dist/doc/latex/iaria/docstrip.cfg
texmf-dist/doc/latex/iaria/iaria.pdf details="Package documentation"
+ texmf-dist/doc/latex/iaria/template/cpn_all_all.bib
texmf-dist/doc/latex/iaria/template/iaria-example-neumann.pdf details="Example of use"
texmf-dist/doc/latex/iaria/template/iaria-example-neumann.tex
-srcfiles size=5
+srcfiles size=6
texmf-dist/source/latex/iaria/iaria.dtx
texmf-dist/source/latex/iaria/iaria.ins
-runfiles size=1
+runfiles size=2
texmf-dist/tex/latex/iaria/iaria.cls
catalogue-also iaria-lite
catalogue-ctan /macros/latex/contrib/iaria
catalogue-license lppl1.3c
catalogue-topics class doc-templ publisher
-catalogue-version 0.5
+catalogue-version 0.6
name iaria-lite
category Package
-revision 72669
+revision 73503
shortdesc Write documents for the IARIA publications
longdesc This package provides a convenient environment for writing
longdesc IARIA (International Academy, Research, and Industry
longdesc Association) scholary publications. It does not implement the
longdesc specifications for the IARIA citation style, for which you have
longdesc to use the iaria class.
-docfiles size=72
+docfiles size=85
texmf-dist/doc/latex/iaria-lite/COPYING
texmf-dist/doc/latex/iaria-lite/README details="Readme"
texmf-dist/doc/latex/iaria-lite/_cpn_copyIntoExamplesFolder_cls.cmd
texmf-dist/doc/latex/iaria-lite/docstrip.cfg
texmf-dist/doc/latex/iaria-lite/iaria-lite.pdf details="Package documentation"
+ texmf-dist/doc/latex/iaria-lite/template/cpn_all_all.bib
texmf-dist/doc/latex/iaria-lite/template/iaria-lite-example-neumann.pdf details="Example of use"
texmf-dist/doc/latex/iaria-lite/template/iaria-lite-example-neumann.tex
srcfiles size=5
@@ -141327,7 +141399,7 @@ catalogue-also iaria
catalogue-ctan /macros/latex/contrib/iaria-lite
catalogue-license lppl1.3c
catalogue-topics class doc-templ publisher
-catalogue-version 0.5
+catalogue-version 0.6
name ibarra
category Package
@@ -142062,7 +142134,7 @@ catalogue-version 1.0.0
name iexec
category Package
-revision 69420
+revision 73480
shortdesc Execute shell commands and input their output
longdesc With the help of the \iexec command, you can execute a shell
longdesc command and then input its output into your document. This
@@ -142083,7 +142155,7 @@ catalogue-contact-repository https://github.com/yegor256/iexec
catalogue-ctan /macros/latex/contrib/iexec
catalogue-license mit
catalogue-topics sys-supp exec-foreign
-catalogue-version 0.14.0
+catalogue-version 0.15.0
name ifallfalse
category Package
@@ -157208,12 +157280,12 @@ catalogue-version 1.13
name jsonparse
category Package
-revision 73147
+revision 73581
shortdesc Parse, store and access JSON data in LaTeX documents
longdesc This package provides an easy way to read in JSON data from
longdesc files or strings in LaTeX documents, parse the data and store
longdesc it in a user-defined token variable.
-docfiles size=149
+docfiles size=155
texmf-dist/doc/latex/jsonparse/LICENCE
texmf-dist/doc/latex/jsonparse/README.md details="Readme"
texmf-dist/doc/latex/jsonparse/jason/jason.pdf
@@ -157221,14 +157293,14 @@ docfiles size=149
texmf-dist/doc/latex/jsonparse/jason/jason.tex
texmf-dist/doc/latex/jsonparse/jsonparse-doc.pdf details="Package documentation"
texmf-dist/doc/latex/jsonparse/jsonparse-doc.tex
-runfiles size=12
+runfiles size=13
texmf-dist/tex/latex/jsonparse/jsonparse.sty
catalogue-contact-bugs https://github.com/jasperhabicht/jsonparse/issues
catalogue-contact-repository https://github.com/jasperhabicht/jsonparse
catalogue-ctan /macros/latex/contrib/jsonparse
catalogue-license lppl1.3c
catalogue-topics data-manip expl3
-catalogue-version 0.9.10
+catalogue-version 1.0.2
name jumplines
category Package
@@ -162800,13 +162872,13 @@ catalogue-version 1.6
name keytheorems
category Package
-revision 73373
+revision 73559
shortdesc An l3keys interface to amsthm
longdesc An expl3-implementation of a key-value interface to amsthm,
longdesc implementing most of the functionality provided by thmtools.
longdesc Several issues encountered with thmtools are avoided (see the
longdesc README for a list) and a few new features are added.
-docfiles size=58
+docfiles size=59
texmf-dist/doc/latex/keytheorems/CHANGELOG.md
texmf-dist/doc/latex/keytheorems/README.md details="Readme"
texmf-dist/doc/latex/keytheorems/keytheorems-doc.pdf details="Package documentation"
@@ -162825,7 +162897,7 @@ catalogue-contact-repository https://github.com/mbertucci47/keytheorems
catalogue-ctan /macros/latex/contrib/keytheorems
catalogue-license lppl1.3c
catalogue-topics maths maths-theorem keyval expl3
-catalogue-version 0.2.3
+catalogue-version 0.2.4
name keyval2e
category Package
@@ -166601,7 +166673,7 @@ catalogue-version 3.36
name kpfonts-otf
category Package
-revision 72922
+revision 73470
shortdesc OTF version of the Kp-fonts
longdesc This bundle provides OpenType versions of the Type1 Kp-fonts
longdesc designed by Christophe Caignaert. It is usable with LuaTeX or
@@ -166657,7 +166729,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.64
+catalogue-version 0.65
name ksfh_nat
category Package
@@ -168078,13 +168150,13 @@ catalogue-topics format latex3 pre-release
name l3kernel-dev
category Package
-revision 73455
+revision 73508
shortdesc Development pre-release of l3kernel
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
-docfiles size=3530
+docfiles size=3540
texmf-dist/doc/latex-dev/l3kernel/CHANGELOG.md
texmf-dist/doc/latex-dev/l3kernel/README.md details="Readme"
texmf-dist/doc/latex-dev/l3kernel/expl3.pdf details="The LaTeX3 Programming Language"
@@ -168131,7 +168203,7 @@ docfiles size=3530
texmf-dist/doc/latex-dev/l3kernel/source3.pdf
texmf-dist/doc/latex-dev/l3kernel/source3.tex
texmf-dist/doc/latex-dev/l3kernel/source3body.tex
-srcfiles size=964
+srcfiles size=967
texmf-dist/source/latex-dev/l3kernel/expl3.dtx
texmf-dist/source/latex-dev/l3kernel/l3.ins
texmf-dist/source/latex-dev/l3kernel/l3basics.dtx
@@ -168194,7 +168266,7 @@ srcfiles size=964
texmf-dist/source/latex-dev/l3kernel/l3tl.dtx
texmf-dist/source/latex-dev/l3kernel/l3token.dtx
texmf-dist/source/latex-dev/l3kernel/l3unicode.dtx
-runfiles size=370
+runfiles size=373
texmf-dist/tex/latex-dev/l3kernel/expl3-code.tex
texmf-dist/tex/latex-dev/l3kernel/expl3-generic.tex
texmf-dist/tex/latex-dev/l3kernel/expl3.ltx
@@ -182971,7 +183043,7 @@ catalogue-version 1.02
name liederbuch
category Package
-revision 73288
+revision 73548
shortdesc A LaTeX package for storing songs or other content, and repeated reuse in documents
longdesc This package is meant for content which you reuse regularly,
longdesc like songs in small booklets. For example the booklets used at
@@ -182986,29 +183058,31 @@ longdesc command to combine an image of a stave line with song lyrics.
longdesc If correctly used, the lyrics are placed correctly below the
longdesc notes and need most often no or only minor adjustments. With
longdesc that you can combine any stave image with LaTeX fonts. You can
-longdesc find resources and inspiration in a DemoProject.
-docfiles size=122
- texmf-dist/doc/latex/liederbuch/DemoProjekt/DemoProjekt.pdf
- texmf-dist/doc/latex/liederbuch/DemoProjekt/DemoProjekt.tex
- texmf-dist/doc/latex/liederbuch/DemoProjekt/Readme_Demoprojekt.txt
- texmf-dist/doc/latex/liederbuch/DemoProjekt/TestLiederbuch.sty
- texmf-dist/doc/latex/liederbuch/DemoProjekt/TestLiederbuchSnippets/CVLB80-OhAlteBurschenherrlichkeit.ly
- texmf-dist/doc/latex/liederbuch/DemoProjekt/TestLiederbuchSnippets/CVLB80-OhAlteBurschenherrlichkeit.pdf
- texmf-dist/doc/latex/liederbuch/DemoProjekt/TestLiederbuchSnippets/haenschenKlein.ly
- texmf-dist/doc/latex/liederbuch/DemoProjekt/TestLiederbuchSnippets/haenschenKlein.pdf
- texmf-dist/doc/latex/liederbuch/DemoProjekt/printTestLiederbuch.pdf
- texmf-dist/doc/latex/liederbuch/DemoProjekt/printTestLiederbuch.tex
+longdesc find resources and inspiration in a demo project.
+docfiles size=148
texmf-dist/doc/latex/liederbuch/README.md details="Readme"
+ texmf-dist/doc/latex/liederbuch/liederbuch-demo-project/README_demo-project.txt
+ texmf-dist/doc/latex/liederbuch/liederbuch-demo-project/TestLiederbuch.sty
+ texmf-dist/doc/latex/liederbuch/liederbuch-demo-project/TestLiederbuchSnippets/CVLB80-OhAlteBurschenherrlichkeit.ly
+ texmf-dist/doc/latex/liederbuch/liederbuch-demo-project/TestLiederbuchSnippets/CVLB80-OhAlteBurschenherrlichkeit.pdf
+ texmf-dist/doc/latex/liederbuch/liederbuch-demo-project/TestLiederbuchSnippets/haenschenKlein.ly
+ texmf-dist/doc/latex/liederbuch/liederbuch-demo-project/TestLiederbuchSnippets/haenschenKlein.pdf
+ texmf-dist/doc/latex/liederbuch/liederbuch-demo-project/liederbuch-demo-projekt.pdf
+ texmf-dist/doc/latex/liederbuch/liederbuch-demo-project/liederbuch-demo-projekt.tex
+ texmf-dist/doc/latex/liederbuch/liederbuch-demo-project/printTestLiederbuch.pdf
+ texmf-dist/doc/latex/liederbuch/liederbuch-demo-project/printTestLiederbuch.tex
texmf-dist/doc/latex/liederbuch/liederbuch-documentation.pdf details="Package documentation"
texmf-dist/doc/latex/liederbuch/liederbuch-documentation.tex
-runfiles size=5
+runfiles size=18
+ texmf-dist/tex/latex/liederbuch/liederbuch-babel.sty
+ texmf-dist/tex/latex/liederbuch/liederbuch-listofsongs.sty
texmf-dist/tex/latex/liederbuch/liederbuch.sty
texmf-dist/tex/latex/liederbuch/printliederbuch.sty
catalogue-contact-repository https://bitbucket.org/maestro-glanz/liederbuch-package/src/master
catalogue-ctan /macros/latex/contrib/liederbuch
-catalogue-license lppl1.3c
+catalogue-license lppl1.3
catalogue-topics music expl3
-catalogue-version 1.0
+catalogue-version 1.1.0
name liftarm
category Package
@@ -194181,7 +194255,7 @@ catalogue-topics font font-type1 font-symbol-maths
name mathalpha
category Package
-revision 61089
+revision 73505
shortdesc General package for loading maths alphabets in LaTeX
longdesc Package mathalfa was renamed to mathalpha. For backward
longdesc compatibility the old name will continue to be recognized in
@@ -194189,18 +194263,26 @@ longdesc LaTeX documents. The package provides means of loading maths
longdesc alphabets (such as are normally addressed via macros \mathcal,
longdesc \mathbb, \mathfrak and \mathscr), offering various features
longdesc normally missing in existing packages for this job.
-docfiles size=474
+execute addMap mathalpha.map
+docfiles size=518
texmf-dist/doc/latex/mathalpha/README details="Readme"
texmf-dist/doc/latex/mathalpha/mathalpha-doc.pdf details="Package documentation"
texmf-dist/doc/latex/mathalpha/mathalpha-doc.tex
-runfiles size=16
+runfiles size=52
+ texmf-dist/fonts/map/dvips/mathalpha/mathalpha.map
+ texmf-dist/fonts/tfm/public/mathalpha/mathalpha-ncmbb-bold.tfm
+ texmf-dist/fonts/tfm/public/mathalpha/mathalpha-ncmbb-book.tfm
+ texmf-dist/fonts/tfm/public/mathalpha/mathalpha-ncmbb-regular.tfm
+ texmf-dist/fonts/type1/public/mathalpha/mathalpha-ncmbb-bold.pfb
+ texmf-dist/fonts/type1/public/mathalpha/mathalpha-ncmbb-book.pfb
+ texmf-dist/fonts/type1/public/mathalpha/mathalpha-ncmbb-regular.pfb
texmf-dist/tex/latex/mathalpha/mathalfa.sty
texmf-dist/tex/latex/mathalpha/mathalpha.sty
catalogue-alias mathalfa
catalogue-ctan /macros/latex/contrib/mathalpha
catalogue-license lppl1.3c
catalogue-topics maths
-catalogue-version 1.143
+catalogue-version 1.145
name mathastext
category Package
@@ -199102,7 +199184,7 @@ catalogue-version 0.12
name metalogox
category Package
-revision 70491
+revision 73571
shortdesc Adjust TeX logos, with font detection
longdesc This package extends the metalogo package to automatically
longdesc adjust the appearance of the logos TeX, LaTeX, LaTeX2e,
@@ -199110,10 +199192,10 @@ longdesc XeLaTeX, and LuaLaTeX, depending on the font detected or the
longdesc option given to metalogox. Most of the serif and sans fonts
longdesc listed at The LaTeX Font Catalogue are supported. The package
longdesc also supports the hologo and hvlogos packages.
-docfiles size=147
+docfiles size=150
texmf-dist/doc/latex/metalogox/README.txt details="Readme"
texmf-dist/doc/latex/metalogox/metalogox.pdf details="Package documentation"
-srcfiles size=13
+srcfiles size=14
texmf-dist/source/latex/metalogox/metalogox.dtx
texmf-dist/source/latex/metalogox/metalogox.ins
runfiles size=8
@@ -199123,7 +199205,7 @@ catalogue-contact-repository https://github.com/bdtc/metalogox
catalogue-ctan /macros/latex/contrib/metalogox
catalogue-license lppl1.3
catalogue-topics logo
-catalogue-version 1.06
+catalogue-version 1.07
name metanorma
category Package
@@ -201361,13 +201443,13 @@ catalogue-version 0.6
name miama
category Package
-revision 54512
+revision 73481
shortdesc The Miama Nueva handwriting font with LaTeX support
longdesc Miama Nueva is a handwriting / script font with over 1300
longdesc glyphs that supports latin, cyrillic, and greek. It comes
longdesc complete with LaTeX support.
execute addMap miama.map
-docfiles size=96
+docfiles size=158
texmf-dist/doc/fonts/miama/README details="Readme"
texmf-dist/doc/fonts/miama/miama.pdf details="Package documentation"
srcfiles size=7
@@ -201409,7 +201491,7 @@ runfiles size=323
catalogue-ctan /fonts/miama
catalogue-license ofl lppl1.3
catalogue-topics font font-calligraphic font-cyrillic font-greek font-multilingual font-otf font-type1 font-t1enc font-supp
-catalogue-version 1.1
+catalogue-version 1.2
name microtype
category Package
@@ -203184,7 +203266,7 @@ catalogue-version 2.0
name mitthesis
category Package
-revision 72749
+revision 73501
shortdesc A LaTeX template for an MIT thesis
longdesc This class provides a LaTeX template for an MIT thesis or
longdesc dissertation formatted according to the requirements of the
@@ -203200,7 +203282,7 @@ longdesc distributions, ideally 11/2022 or later, but compatible with
longdesc distributions back to 2020. This template replaces the older
longdesc version of mitthesis.cls, which was first composed in the
longdesc 1980s.
-docfiles size=1408
+docfiles size=1254
texmf-dist/doc/latex/mitthesis/MIT-Thesis.pdf details="Example of use"
texmf-dist/doc/latex/mitthesis/MIT-thesis-template/MIT-Thesis.tex
texmf-dist/doc/latex/mitthesis/MIT-thesis-template/abstract.tex
@@ -203265,12 +203347,12 @@ docfiles size=1408
texmf-dist/doc/latex/mitthesis/examples/font_samples/latex_sources/compile-font-samples.sh
texmf-dist/doc/latex/mitthesis/mitthesis-doc/mitthesis-doc.pdf details="Package documentation"
texmf-dist/doc/latex/mitthesis/mitthesis-doc/mitthesis-doc.tex
-runfiles size=12
+runfiles size=13
texmf-dist/tex/latex/mitthesis/mitthesis.cls
catalogue-ctan /macros/latex/contrib/mitthesis
catalogue-license mit
catalogue-topics class dissertation engineering humanities scientific-docs doc-templ expl3
-catalogue-version 1.17
+catalogue-version 1.18
name mkgrkindex
category Package
@@ -205520,25 +205602,29 @@ catalogue-version 1.0
name moloch
category Package
-revision 72715
-shortdesc Beamer based on Metropolis theme
+revision 73490
+shortdesc Beamer theme based on Metropolis
longdesc Moloch is a clean and simple beamer theme. It is a fork of the
longdesc Metropolis theme, but has a more minimalistic and slightly less
longdesc opinionated design.
-docfiles size=83
+docfiles size=127
texmf-dist/doc/latex/moloch/CHANGELOG.md
texmf-dist/doc/latex/moloch/LICENSE
texmf-dist/doc/latex/moloch/README.md details="Readme"
texmf-dist/doc/latex/moloch/moloch.pdf details="Package documentation"
texmf-dist/doc/latex/moloch/moloch.tex
-srcfiles size=13
+srcfiles size=15
+ texmf-dist/source/latex/moloch/beamercolorthememoloch-highcontrast.dtx
+ texmf-dist/source/latex/moloch/beamercolorthememoloch-tomorrow.dtx
texmf-dist/source/latex/moloch/beamercolorthememoloch.dtx
texmf-dist/source/latex/moloch/beamerfontthememoloch.dtx
texmf-dist/source/latex/moloch/beamerinnerthememoloch.dtx
texmf-dist/source/latex/moloch/beamerouterthememoloch.dtx
texmf-dist/source/latex/moloch/beamerthememoloch.dtx
texmf-dist/source/latex/moloch/beamerthememoloch.ins
-runfiles size=9
+runfiles size=12
+ texmf-dist/tex/latex/moloch/beamercolorthememoloch-highcontrast.sty
+ texmf-dist/tex/latex/moloch/beamercolorthememoloch-tomorrow.sty
texmf-dist/tex/latex/moloch/beamercolorthememoloch.sty
texmf-dist/tex/latex/moloch/beamerfontthememoloch.sty
texmf-dist/tex/latex/moloch/beamerinnerthememoloch.sty
@@ -205550,7 +205636,7 @@ catalogue-contact-support https://github.com/jolars/moloch/discussions
catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/moloch
catalogue-license cc-by-sa-4
catalogue-topics presentation
-catalogue-version 0.5.0
+catalogue-version 0.6.0
name mongolian-babel
category Package
@@ -216186,7 +216272,7 @@ catalogue-version 2.0
name newcomputermodern
category Package
-revision 72735
+revision 73535
shortdesc Computer Modern fonts including matching non-latin alphabets
longdesc This is a new assembly of Computer Modern fonts including
longdesc extensions in many directions for both Latin based languages,
@@ -216194,7 +216280,7 @@ longdesc non-Latin based languages and Mathematics, all compatible in
longdesc style to CM fonts. In addition to the Regular weight of
longdesc Computer Modern, it provides a Book weight for heavier
longdesc printing.
-docfiles size=4698
+docfiles size=4711
texmf-dist/doc/fonts/newcomputermodern/README details="Readme"
texmf-dist/doc/fonts/newcomputermodern/colored-diacritics.pdf
texmf-dist/doc/fonts/newcomputermodern/colored-diacritics.tex
@@ -216202,6 +216288,8 @@ docfiles size=4698
texmf-dist/doc/fonts/newcomputermodern/integral.tex
texmf-dist/doc/fonts/newcomputermodern/mathkern-example.pdf
texmf-dist/doc/fonts/newcomputermodern/mathkern-example.tex
+ texmf-dist/doc/fonts/newcomputermodern/mathkern-example2.pdf
+ texmf-dist/doc/fonts/newcomputermodern/mathkern-example2.tex
texmf-dist/doc/fonts/newcomputermodern/newcm-doc.pdf details="Package documentation"
texmf-dist/doc/fonts/newcomputermodern/newcm-doc.tex
texmf-dist/doc/fonts/newcomputermodern/newcm-unimath-symbols.ltx
@@ -216214,7 +216302,7 @@ docfiles size=4698
texmf-dist/doc/fonts/newcomputermodern/source.txz
texmf-dist/doc/fonts/newcomputermodern/testmath-newcm-sans.pdf
texmf-dist/doc/fonts/newcomputermodern/testmath-newcm-sans.tex
-runfiles size=4720
+runfiles size=4696
texmf-dist/fonts/opentype/public/newcomputermodern/NewCM08-Book.otf
texmf-dist/fonts/opentype/public/newcomputermodern/NewCM08-BookItalic.otf
texmf-dist/fonts/opentype/public/newcomputermodern/NewCM08-Italic.otf
@@ -216269,7 +216357,7 @@ catalogue-contact-repository https://git.gnu.org.ua/newcm.git
catalogue-ctan /fonts/newcomputermodern
catalogue-license gfl
catalogue-topics font cherokee font-archaic font-body font-cm font-coptic font-cyrillic font-greek font-hebrew font-indic font-maths font-medieval font-mono font-multilingual font-otf font-proportional font-sans font-serif font-supp linguistic other-lang phonetic
-catalogue-version 7.0.0
+catalogue-version 7.0.1
name newenviron
category Package
@@ -216454,7 +216542,7 @@ catalogue-version 0.55
name newpx
category Package
-revision 73150
+revision 73574
shortdesc Alternative uses of the PX fonts, with improved metrics
longdesc This package, initially based on pxfonts, provides many fixes
longdesc and enhancements to that package, and splits it in two parts
@@ -217108,7 +217196,7 @@ runfiles size=3691
catalogue-ctan /fonts/newpx
catalogue-license lppl gfl
catalogue-topics font font-body font-maths font-serif font-proportional font-type1 font-otf font-supp font-t1enc
-catalogue-version 1.538
+catalogue-version 1.539
name newsletr
category Package
@@ -218707,7 +218795,7 @@ catalogue-topics font font-type1 font-decor
name nicematrix
category Package
-revision 73138
+revision 73531
shortdesc Improve the typesetting of mathematical matrices with PGF
longdesc This package is based on the package array. It creates PGF/TikZ
longdesc nodes under the cells of the array and uses these nodes to
@@ -218718,22 +218806,22 @@ longdesc border matrices); control of the width of the columns; tools to
longdesc color rows and columns with a good PDF result; blocks of cells;
longdesc tabular notes; etc. The package requires and loads l3keys2e,
longdesc array, amsmath, pgfcore, and the module shapes of PGF.
-docfiles size=1079
+docfiles size=1082
texmf-dist/doc/latex/nicematrix/README.md details="Readme"
texmf-dist/doc/latex/nicematrix/nicematrix-code.pdf
texmf-dist/doc/latex/nicematrix/nicematrix-french.pdf details="Package documentation in French" language="fr"
texmf-dist/doc/latex/nicematrix/nicematrix-french.tex
texmf-dist/doc/latex/nicematrix/nicematrix.pdf details="Package documentation"
texmf-dist/doc/latex/nicematrix/nicematrix.tex
-srcfiles size=150
+srcfiles size=153
texmf-dist/source/latex/nicematrix/nicematrix-code.dtx
texmf-dist/source/latex/nicematrix/nicematrix.ins
-runfiles size=96
+runfiles size=98
texmf-dist/tex/latex/nicematrix/nicematrix.sty
catalogue-ctan /macros/latex/contrib/nicematrix
catalogue-license lppl1.3
catalogue-topics maths matrix pgf-tikz expl3
-catalogue-version 7.0a
+catalogue-version 7.0b
name nicetext
category Package
@@ -236751,7 +236839,7 @@ catalogue-version 1.4
name pdfpages
category Package
-revision 72691
+revision 73547
shortdesc Include PDF documents in LaTeX
longdesc This package simplifies the inclusion of external multi-page
longdesc PDF documents in LaTeX documents. Pages may be freely selected
@@ -236765,14 +236853,14 @@ depend eso-pic
depend graphics
depend oberdiek
depend tools
-docfiles size=90
+docfiles size=57
texmf-dist/doc/latex/pdfpages/dummy-l.pdf
texmf-dist/doc/latex/pdfpages/dummy.pdf
texmf-dist/doc/latex/pdfpages/pdf-ex.tex
texmf-dist/doc/latex/pdfpages/pdf-hyp.tex
texmf-dist/doc/latex/pdfpages/pdf-toc.tex
texmf-dist/doc/latex/pdfpages/pdfpages.pdf details="Package documentation"
-srcfiles size=46
+srcfiles size=49
texmf-dist/source/latex/pdfpages/README
texmf-dist/source/latex/pdfpages/pdfpages.dtx
texmf-dist/source/latex/pdfpages/pdfpages.ins
@@ -236788,7 +236876,7 @@ runfiles size=25
catalogue-ctan /macros/latex/contrib/pdfpages
catalogue-license lppl1.3c
catalogue-topics graphics-incl pdf-feat
-catalogue-version 0.6c
+catalogue-version 0.6d
name pdfpc
category Package
@@ -238132,7 +238220,7 @@ catalogue-topics luatex
name penlightplus
category Package
-revision 73425
+revision 73513
shortdesc Additions to the Penlight Lua libraries
longdesc This package extends the penlight package by adding useful
longdesc functions for interfacing with LaTeX.
@@ -241663,17 +241751,17 @@ catalogue-topics doc-supp
name piton
category Package
-revision 73056
+revision 73498
shortdesc Typeset informatic listings with LPEG of LuaLaTeX
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.
-docfiles size=395
+docfiles size=397
texmf-dist/doc/lualatex/piton/README.md details="Readme"
texmf-dist/doc/lualatex/piton/piton-french.pdf details="Package documentation (French)" language="fr"
texmf-dist/doc/lualatex/piton/piton-french.tex
texmf-dist/doc/lualatex/piton/piton.pdf details="Package documentation (English)"
-srcfiles size=80
+srcfiles size=81
texmf-dist/source/lualatex/piton/piton.dtx
texmf-dist/source/lualatex/piton/piton.ins
runfiles size=31
@@ -241684,7 +241772,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 4.2a
+catalogue-version 4.2b
name pittetd
category Package
@@ -245384,14 +245472,14 @@ catalogue-version 1.4
name pmdraw
category Package
-revision 72486
+revision 73577
shortdesc Draw elements of the diagram monoids
longdesc This package allows you to draw elements of the diagram
longdesc monoids, commonly referred to as diagrams. The package provides
longdesc a lot of flexibility to draw most diagrams and can be
longdesc customised as needed. It makes use of the TikZ and keyval
longdesc packages.
-docfiles size=160
+docfiles size=163
texmf-dist/doc/latex/pmdraw/README.md details="Readme"
texmf-dist/doc/latex/pmdraw/examples/example-1.tex
texmf-dist/doc/latex/pmdraw/examples/example-10.tex
@@ -245420,12 +245508,12 @@ docfiles size=160
texmf-dist/doc/latex/pmdraw/examples/example-9.tex
texmf-dist/doc/latex/pmdraw/pmdraw.pdf details="Package documentation"
texmf-dist/doc/latex/pmdraw/pmdraw.tex
-runfiles size=20
+runfiles size=28
texmf-dist/tex/latex/pmdraw/pmdraw.sty
catalogue-ctan /graphics/pgf/contrib/pmdraw
catalogue-license lppl1.3
catalogue-topics maths physics graphics diagram pgf-tikz
-catalogue-version 1.5
+catalogue-version 1.6
name pmgraph
category Package
@@ -248201,6 +248289,33 @@ catalogue-license lppl
catalogue-topics debug-supp doc-debug
catalogue-version 1.1a
+name prisma-flow-diagram
+category Package
+revision 73530
+shortdesc This package provides an abstraction for creating PRISMA 2009 flow diagrams in LaTeX
+longdesc This package provides an abstraction for creating PRISMA 2009
+longdesc flow diagrams in LaTeX. It simplifies the process of building
+longdesc these diagrams by providing intuitive commands while
+longdesc maintaining full compatibility with TikZ.
+docfiles size=34
+ texmf-dist/doc/latex/prisma-flow-diagram/CITATION.cff
+ texmf-dist/doc/latex/prisma-flow-diagram/LICENSE
+ texmf-dist/doc/latex/prisma-flow-diagram/README.md details="Readme"
+ texmf-dist/doc/latex/prisma-flow-diagram/example.png
+ texmf-dist/doc/latex/prisma-flow-diagram/example.tex
+runfiles size=1
+ texmf-dist/tex/latex/prisma-flow-diagram/prisma-flow-diagram.sty
+catalogue-contact-announce https://github.com/ezefranca/prisma-flow-diagram/releases
+catalogue-contact-bugs https://github.com/ezefranca/prisma-flow-diagram/issues
+catalogue-contact-development https://github.com/ezefranca/prisma-flow-diagram
+catalogue-contact-home https://github.com/ezefranca/prisma-flow-diagram
+catalogue-contact-repository https://github.com/ezefranca/prisma-flow-diagram
+catalogue-contact-support https://github.com/ezefranca/prisma-flow-diagram
+catalogue-ctan /macros/latex/contrib/prisma-flow-diagram
+catalogue-license lppl1.3c
+catalogue-topics diagram-flow pgf-tikz
+catalogue-version 1.0.0
+
name proba
category Package
revision 15878
@@ -267205,7 +267320,7 @@ catalogue-version 2.2
name rpgicons
category Package
-revision 71994
+revision 73609
shortdesc Icons for tabletop role-playing games
longdesc This package provides a set of high-quality icons for use in
longdesc notes for tabletop role-playing games. The icons are meant to
@@ -267213,7 +267328,7 @@ 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.
-docfiles size=141
+docfiles size=139
texmf-dist/doc/latex/rpgicons/LICENSE
texmf-dist/doc/latex/rpgicons/README.md details="Readme"
texmf-dist/doc/latex/rpgicons/rpgicons-doc.pdf details="Package documentation"
@@ -267227,7 +267342,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.4
+catalogue-version 1.8.6
name rrgtrees
category Package
@@ -267718,7 +267833,7 @@ catalogue-version 1
name runcode
category Package
-revision 69471
+revision 73500
shortdesc Execute foreign source code and embed the result in the pdf file
longdesc This LaTeX package executes programming source codes (including
longdesc all command line tools) from within LaTeX and embeds the output
@@ -267730,7 +267845,7 @@ longdesc the Python talk2stat package. Currently, this server-mode
longdesc supports Julia, MatLab, Python, and R. More languages will be
longdesc added. For more details and usage examples, refer to the
longdesc package's github repository.
-docfiles size=121
+docfiles size=122
texmf-dist/doc/latex/runcode/README details="Readme"
texmf-dist/doc/latex/runcode/generated/runcode_troubleshoot_inln2.tex
texmf-dist/doc/latex/runcode/generated/runcode_troubleshoot_inln4.tex
@@ -267750,7 +267865,7 @@ catalogue-contact-repository https://github.com/Ossifragus/runcode
catalogue-ctan /macros/latex/contrib/runcode
catalogue-license lppl1.3c
catalogue-topics exec-foreign callback
-catalogue-version 2.3
+catalogue-version 2.4
name runtexshebang
category Package
@@ -270333,7 +270448,7 @@ catalogue-version 1.033
name schooldocs
category Package
-revision 69659
+revision 73466
shortdesc Various layout styles for school documents
longdesc The aim of this package is to offer diverse layout styles for
longdesc school-related documents. It serves well in creating exercise
@@ -270342,7 +270457,7 @@ longdesc geometry (dimensions of text and margins) and the title
longdesc formatting. Various styles are available defining settings for
longdesc headers, footers or alternative title formatting, providing
longdesc many customizable features.
-docfiles size=110
+docfiles size=134
texmf-dist/doc/latex/schooldocs/README.md details="Readme"
texmf-dist/doc/latex/schooldocs/schooldocs-examples.pdf details="Example of use"
texmf-dist/doc/latex/schooldocs/schooldocs-examples.tex
@@ -270355,7 +270470,7 @@ runfiles size=4
catalogue-ctan /macros/latex/contrib/schooldocs
catalogue-license lppl1.3
catalogue-topics teaching exercise exam course-material
-catalogue-version 1.5
+catalogue-version 1.6
name schule
category Package
@@ -270757,7 +270872,7 @@ catalogue-version 5
name schwalbe-chess
category Package
-revision 63708
+revision 73582
shortdesc Typeset the German chess magazine "Die Schwalbe"
longdesc The package is based on chess-problem-diagrams, which in its
longdesc turn has a dependency on the bartel-chess-fonts.
@@ -270772,9 +270887,9 @@ runfiles size=12
texmf-dist/tex/latex/schwalbe-chess/schwalbe.sty
texmf-dist/tex/latex/schwalbe-chess/swruler.sty
catalogue-ctan /macros/latex/contrib/schwalbe-chess
-catalogue-license lppl1.2
+catalogue-license lppl1.3c
catalogue-topics journalpub games class
-catalogue-version 2.12
+catalogue-version 2.13
name scientific-thesis-cover
category Package
@@ -273938,19 +274053,19 @@ catalogue-version 1.6a
name simpleicons
category Package
-revision 73394
+revision 73575
shortdesc Simple Icons for LaTeX
longdesc Similar to FontAwesome icons being provided on LaTeX by the
longdesc fontawesome package, this package aims to do the same with
longdesc Simple Icons. For reference, visit their website:
longdesc https://simpleicons.org/.
execute addMap simpleicons.map
-docfiles size=674
+docfiles size=676
texmf-dist/doc/fonts/simpleicons/README.md details="Readme"
texmf-dist/doc/fonts/simpleicons/bindings.tex
texmf-dist/doc/fonts/simpleicons/simpleicons.pdf details="Package documentation"
texmf-dist/doc/fonts/simpleicons/simpleicons.tex
-runfiles size=1340
+runfiles size=1342
texmf-dist/fonts/enc/dvips/simpleicons/simpleiconseight.enc
texmf-dist/fonts/enc/dvips/simpleicons/simpleiconsfive.enc
texmf-dist/fonts/enc/dvips/simpleicons/simpleiconsfour.enc
@@ -274001,7 +274116,7 @@ catalogue-contact-repository https://github.com/ineshbose/simple-icons-latex
catalogue-ctan /fonts/simpleicons
catalogue-license cc0
catalogue-topics font font-symbol font-supp-symbol font-otf font-type1
-catalogue-version 14.1.0
+catalogue-version 14.3.0
name simpleinvoice
category Package
@@ -274377,7 +274492,7 @@ catalogue-version 1.36
name siunitx
category Package
-revision 73453
+revision 73546
shortdesc A comprehensive (SI) units package
longdesc Physical quantities have both numbers and units, and each
longdesc physical quantity should be expressed as the product of a
@@ -274394,12 +274509,12 @@ longdesc make it possible to follow varying typographic conventions with
longdesc the same input syntax. The package includes automated
longdesc processing of numbers and units, and the ability to control
longdesc tabular alignment of numbers.
-docfiles size=236
+docfiles size=240
texmf-dist/doc/latex/siunitx/CHANGELOG.md
texmf-dist/doc/latex/siunitx/README.md details="Readme"
texmf-dist/doc/latex/siunitx/siunitx-code.pdf details="Code documentation"
texmf-dist/doc/latex/siunitx/siunitx.pdf details="User manual"
-srcfiles size=193
+srcfiles size=195
texmf-dist/source/latex/siunitx/siunitx-abbreviation.dtx
texmf-dist/source/latex/siunitx/siunitx-angle.dtx
texmf-dist/source/latex/siunitx/siunitx-binary.dtx
@@ -274418,7 +274533,7 @@ srcfiles size=193
texmf-dist/source/latex/siunitx/siunitx.dtx
texmf-dist/source/latex/siunitx/siunitx.ins
texmf-dist/source/latex/siunitx/siunitx.tex
-runfiles size=161
+runfiles size=162
texmf-dist/tex/latex/siunitx/siunitx-abbreviations.cfg
texmf-dist/tex/latex/siunitx/siunitx-binary.cfg
texmf-dist/tex/latex/siunitx/siunitx-v2.sty
@@ -274430,7 +274545,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.4.1
+catalogue-version 3.4.4
name sjtutex
category Package
@@ -274843,7 +274958,7 @@ catalogue-version 1.5e
name skeldoc
category Package
-revision 57922
+revision 73465
shortdesc Placeholders for unfinished documents
longdesc This package lets you produce placeholder elements for
longdesc documents under development, similar to the skeleton screens
@@ -274852,7 +274967,7 @@ longdesc It also has a mechanism for attaching explanatory endnotes to
longdesc these placeholders, or to anything else in your document. The
longdesc same note mechanism can also be used with ordinary content,
longdesc e.g., as a to-do mechanism.
-docfiles size=59
+docfiles size=62
texmf-dist/doc/latex/skeldoc/LICENSE
texmf-dist/doc/latex/skeldoc/README.md details="Readme"
texmf-dist/doc/latex/skeldoc/skeldoc.pdf details="Package documentation"
@@ -274864,7 +274979,7 @@ catalogue-contact-repository https://github.com/mlhetland/skeldoc.sty
catalogue-ctan /macros/latex/contrib/skeldoc
catalogue-license mit
catalogue-topics dummy-gen editorial notes rule expl3
-catalogue-version 0.1.2
+catalogue-version 0.1.3
name skeycommand
category Package
@@ -280870,7 +280985,7 @@ catalogue-version 0.94b
name spelling
category Package
-revision 30715
+revision 73571
shortdesc Support for spell-checking of LuaTeX documents
longdesc The package aids spell-checking of TeX documents compiled with
longdesc the LuaTeX engine. It can give visual feedback in PDF output
@@ -280894,6 +281009,8 @@ runfiles size=19
texmf-dist/scripts/spelling/spelling-stage-3.lua
texmf-dist/scripts/spelling/spelling-stage-4.lua
texmf-dist/tex/luatex/spelling/spelling.sty
+catalogue-contact-bugs https://github.com/sh2d/spelling/issues
+catalogue-contact-repository https://github.com/sh2d/spelling
catalogue-ctan /macros/luatex/generic/spelling
catalogue-license lppl1.3
catalogue-topics luatex spell
@@ -287071,7 +287188,7 @@ catalogue-version 2024A
name tabularray-abnt
category Package
-revision 73347
+revision 73487
shortdesc An ABNT (Brazilian standard) theme for tabularray
longdesc This is the abnt Brazilian standard style for tabularray. It
longdesc provides the themes abnt (for tables with numerical data) and
@@ -287451,13 +287568,13 @@ catalogue-version 0.3
name tangramtikz
category Package
-revision 73069
+revision 73592
shortdesc Tangram puzzles, with TikZ
longdesc This package provides some commands (with English and French
longdesc keys) to work with tangram puzzles: \begin{EnvTangramTikz} and
longdesc \PieceTangram to position a piece, \TangramTikz to display a
longdesc predefined Tangram.
-docfiles size=234
+docfiles size=239
texmf-dist/doc/latex/tangramtikz/README.md details="Readme"
texmf-dist/doc/latex/tangramtikz/TangramTikz-doc-en.pdf details="Package documentation (English)"
texmf-dist/doc/latex/tangramtikz/TangramTikz-doc-en.tex
@@ -287465,10 +287582,12 @@ docfiles size=234
texmf-dist/doc/latex/tangramtikz/TangramTikz-doc-fr.tex
runfiles size=13
texmf-dist/tex/latex/tangramtikz/TangramTikz.sty
+catalogue-contact-home https://forge.apps.education.fr/pierquetcedric/packages-latex
+catalogue-contact-repository https://forge.apps.education.fr/pierquetcedric/packages-latex
catalogue-ctan /graphics/pgf/contrib/tangramtikz
catalogue-license lppl1.3c
catalogue-topics puzzle games pgf-tikz
-catalogue-version 0.1.5
+catalogue-version 0.1.7
name tap
category Package
@@ -288474,7 +288593,7 @@ catalogue-version 1.1.1
name testhyphens
category Package
-revision 38928
+revision 73486
shortdesc Testing hyphenation patterns
longdesc The package may be used for testing hyphenation patterns or for
longdesc controlling that specific words are hyphenated as expected.
@@ -288483,18 +288602,17 @@ longdesc LaTeX with some enhancements. It differs form \showhyphens,
longdesc because it typesets its output on the document's output file.
longdesc It also works with xelatex, where \showhyphens requires a
longdesc workaround.
-docfiles size=96
- texmf-dist/doc/latex/testhyphens/README details="Readme"
- texmf-dist/doc/latex/testhyphens/manifest.txt
+docfiles size=21
+ texmf-dist/doc/latex/testhyphens/README.txt details="Readme"
texmf-dist/doc/latex/testhyphens/testhyphens.pdf details="Package documentation"
srcfiles size=6
texmf-dist/source/latex/testhyphens/testhyphens.dtx
runfiles size=1
texmf-dist/tex/latex/testhyphens/testhyphens.sty
catalogue-ctan /macros/latex/contrib/testhyphens
-catalogue-license lppl1.3
+catalogue-license lppl1.3c
catalogue-topics hyphenation
-catalogue-version 0.7
+catalogue-version 1.0
name testidx
category Package
@@ -290668,7 +290786,7 @@ binfiles arch=x86_64-solaris size=1
name tex4ht
category Package
-revision 73431
+revision 73599
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
@@ -290760,7 +290878,7 @@ docfiles size=260
texmf-dist/doc/generic/tex4ht/mn56.html
texmf-dist/doc/generic/tex4ht/mn5x.png
texmf-dist/doc/generic/tex4ht/mn6x.png
-srcfiles size=4666
+srcfiles size=4667
texmf-dist/source/generic/tex4ht/ChangeLog
texmf-dist/source/generic/tex4ht/Makefile
texmf-dist/source/generic/tex4ht/README
@@ -290840,7 +290958,7 @@ srcfiles size=4666
texmf-dist/source/generic/tex4ht/update-htfonts
texmf-dist/source/generic/tex4ht/wripro.tex
texmf-dist/source/generic/tex4ht/xtpipes.tex
-runfiles size=13133
+runfiles size=13135
texmf-dist/scripts/tex4ht/ht.sh
texmf-dist/scripts/tex4ht/htcopy.pl
texmf-dist/scripts/tex4ht/htlatex.sh
@@ -291288,6 +291406,7 @@ runfiles size=13133
texmf-dist/tex/generic/tex4ht/spanish.4ht
texmf-dist/tex/generic/tex4ht/splitidx.4ht
texmf-dist/tex/generic/tex4ht/srcltx.4ht
+ texmf-dist/tex/generic/tex4ht/standalone.4ht
texmf-dist/tex/generic/tex4ht/stmaryrd.4ht
texmf-dist/tex/generic/tex4ht/subcaption.4ht
texmf-dist/tex/generic/tex4ht/subeqnarray.4ht
@@ -302478,7 +302597,7 @@ catalogue-version 6.8
name texlive-common
category TLCore
-revision 73031
+revision 73495
shortdesc TeX Live documentation (common elements)
postaction shortcut type=menu name="TeX Live documentation" cmd=TEXDIR/texmf-dist/doc/texlive/index.html
docfiles size=220
@@ -302747,7 +302866,7 @@ docfiles size=376
name texlive-scripts
category TLCore
-revision 73457
+revision 73616
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.
@@ -302755,7 +302874,7 @@ 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
-docfiles size=575
+docfiles size=576
doc.html
texmf-dist/doc/man/man1/fmtutil-sys.1
texmf-dist/doc/man/man1/fmtutil-sys.man1.pdf
@@ -303562,7 +303681,7 @@ docfiles size=329
name texlive.infra
category TLCore
-revision 73449
+revision 73556
shortdesc basic TeX Live infrastructure
longdesc This package contains the files needed to get tlmgr running:
longdesc perl modules, xz binaries, plus (sometimes) tar, wget, lz4, and
@@ -303611,7 +303730,7 @@ docfiles size=140
texmf-dist/scripts/texlive/NEWS
tlpkg/README
tlpkg/installer/COPYING.MinGW-runtime.txt
-runfiles size=329
+runfiles size=331
LICENSE.CTAN
LICENSE.TL
release-texlive.txt
@@ -308675,6 +308794,26 @@ catalogue-license isc
catalogue-topics pgf-tikz graphics diagram
catalogue-version 0.7.1
+name tikz-triminos
+category Package
+revision 73533
+shortdesc Create triminos, made with TikZ
+longdesc Create (1 or 9 or 12) TriMinos with some customizations: size,
+longdesc font, logo, colors; automatic texts adjustment; full version,
+longdesc or joker usage. Inspiration from Paul Matthies
+docfiles size=45
+ texmf-dist/doc/latex/tikz-triminos/README.md details="Readme"
+ texmf-dist/doc/latex/tikz-triminos/tikz-triminos-doc.pdf details="Package documentation"
+ texmf-dist/doc/latex/tikz-triminos/tikz-triminos-doc.tex
+runfiles size=3
+ texmf-dist/tex/latex/tikz-triminos/tikz-triminos.sty
+catalogue-contact-home https://forge.apps.education.fr/pierquetcedric/packages-latex
+catalogue-contact-repository https://forge.apps.education.fr/pierquetcedric/packages-latex
+catalogue-ctan /graphics/pgf/contrib/tikz-triminos
+catalogue-license lppl1.3c
+catalogue-topics games amusements pgf-tikz
+catalogue-version 0.1.0
+
name tikz-truchet
category Package
revision 50020
@@ -308789,12 +308928,12 @@ catalogue-version 0.13
name tikzdotncross
category Package
-revision 72638
-shortdesc Small set of macros for defining/marking coordinates and crossing (jumps) paths
+revision 73605
+shortdesc Marking coordinates and crossing paths
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 already existent path, which is quite a common issue when
+longdesc drawing, for instace, electronic circuits (like with
longdesc CircuiTikZ).
docfiles size=65
texmf-dist/doc/latex/tikzdotncross/README.md details="Readme"
@@ -308803,12 +308942,11 @@ docfiles size=65
runfiles size=3
texmf-dist/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.2
+catalogue-topics pgf-tikz graphics diagram-circ electronic expl3
+catalogue-version 1.2c
name tikzducks
category Package
@@ -317664,7 +317802,7 @@ catalogue-version 0.3.0
name toptesi
category Package
-revision 56276
+revision 73464
shortdesc Bundle for typesetting multilanguage theses
longdesc This bundle contains everything needed for typesetting a
longdesc bachelor, master, or PhD thesis in Italian (or in any other
@@ -317678,7 +317816,7 @@ longdesc more and more frequent thanks to the double degree programs of
longdesc the European Community Socrates programs. Toptesi is designed
longdesc to save the PDF version of a thesis in PDF/A-1b compliant mode
longdesc and with all the necessary metadata.
-docfiles size=2186
+docfiles size=2217
texmf-dist/doc/latex/toptesi/FrontespiziAssemblati.pdf
texmf-dist/doc/latex/toptesi/FrontespiziAssemblati1.pdf
texmf-dist/doc/latex/toptesi/FrontespiziAssemblati2.pdf
@@ -317744,7 +317882,7 @@ runfiles size=40
catalogue-ctan /macros/latex/contrib/toptesi
catalogue-license lppl1.3c
catalogue-topics dissertation class multilingual
-catalogue-version 6.4.06
+catalogue-version 6.4.07
name totalcount
category Package
@@ -317995,7 +318133,7 @@ catalogue-version 2.3
name tracklang
category Package
-revision 73456
+revision 73600
shortdesc Language and dialect tracker
longdesc The tracklang package is provided for package developers who
longdesc want a simple interface to find out which languages the user
@@ -318003,7 +318141,7 @@ longdesc has requested through packages such as babel or polyglossia.
longdesc This package does not provide any translations! Its purpose is
longdesc simply to track which languages have been requested by the
longdesc user. Generic TeX code is in tracklang.tex for non-LaTeX users.
-docfiles size=764
+docfiles size=833
texmf-dist/doc/generic/tracklang/CHANGES
texmf-dist/doc/generic/tracklang/README details="Readme"
texmf-dist/doc/generic/tracklang/samples/animals/animals-en-GB.ldf
@@ -318081,10 +318219,10 @@ docfiles size=764
texmf-dist/doc/generic/tracklang/tracklang-manual.html details="User manual (HTML)"
texmf-dist/doc/generic/tracklang/tracklang-manual.pdf details="User manual (PDF)"
texmf-dist/doc/generic/tracklang/tracklang-manual.tex
-srcfiles size=77
+srcfiles size=82
texmf-dist/source/latex/tracklang/tracklang.dtx
texmf-dist/source/latex/tracklang/tracklang.ins
-runfiles size=47
+runfiles size=49
texmf-dist/tex/generic/tracklang/tracklang-region-codes.tex
texmf-dist/tex/generic/tracklang/tracklang-scripts.tex
texmf-dist/tex/generic/tracklang/tracklang.tex
@@ -318095,7 +318233,7 @@ catalogue-contact-support https://www.dickimaw-books.com/faq.php?action=view&cat
catalogue-ctan /macros/generic/tracklang
catalogue-license lppl1.3
catalogue-topics package-devel class-supp multilingual
-catalogue-version 1.6.2
+catalogue-version 1.6.4
name trajan
category Package
@@ -319083,42 +319221,60 @@ catalogue-version 1.0
name tuda-ci
category Package
-revision 71696
+revision 73608
shortdesc LaTeX templates of Technische Universitat Darmstadt
longdesc The TUDa-CI-Bundle provides a possibility to use the Corporate
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.
-docfiles size=1751
+docfiles size=1686
texmf-dist/doc/latex/tuda-ci/DEMO-TUDaAnnouncement.pdf
texmf-dist/doc/latex/tuda-ci/DEMO-TUDaAnnouncement.tex
- texmf-dist/doc/latex/tuda-ci/DEMO-TUDaBeamer.pdf
+ texmf-dist/doc/latex/tuda-ci/DEMO-TUDaBeamer.pdf details="Example presentation"
texmf-dist/doc/latex/tuda-ci/DEMO-TUDaBeamer.tex
- texmf-dist/doc/latex/tuda-ci/DEMO-TUDaBeamer2023.pdf details="Example presentation" language="de"
- texmf-dist/doc/latex/tuda-ci/DEMO-TUDaBeamer2023.tex
texmf-dist/doc/latex/tuda-ci/DEMO-TUDaBibliography.bib
texmf-dist/doc/latex/tuda-ci/DEMO-TUDaExercise.pdf
texmf-dist/doc/latex/tuda-ci/DEMO-TUDaExercise.tex
texmf-dist/doc/latex/tuda-ci/DEMO-TUDaFromaddress.lco
texmf-dist/doc/latex/tuda-ci/DEMO-TUDaLeaflet.pdf
texmf-dist/doc/latex/tuda-ci/DEMO-TUDaLeaflet.tex
- texmf-dist/doc/latex/tuda-ci/DEMO-TUDaLetter.pdf details="Example letter" language="de"
+ texmf-dist/doc/latex/tuda-ci/DEMO-TUDaLetter.pdf details="Example letter"
texmf-dist/doc/latex/tuda-ci/DEMO-TUDaLetter.tex
- texmf-dist/doc/latex/tuda-ci/DEMO-TUDaPhD.pdf details="Example PhD thesis" language="de"
+ texmf-dist/doc/latex/tuda-ci/DEMO-TUDaPhD.pdf details="Example PhD thesis"
texmf-dist/doc/latex/tuda-ci/DEMO-TUDaPhD.tex
- texmf-dist/doc/latex/tuda-ci/DEMO-TUDaPoster.pdf details="Example announcement poster" language="de"
+ texmf-dist/doc/latex/tuda-ci/DEMO-TUDaPoster.pdf details="Example announcement poster"
texmf-dist/doc/latex/tuda-ci/DEMO-TUDaPoster.tex
- texmf-dist/doc/latex/tuda-ci/DEMO-TUDaPub.pdf details="Package documentation" language="de"
+ texmf-dist/doc/latex/tuda-ci/DEMO-TUDaPub.pdf
texmf-dist/doc/latex/tuda-ci/DEMO-TUDaPub.tex
texmf-dist/doc/latex/tuda-ci/DEMO-TUDaReport.pdf
texmf-dist/doc/latex/tuda-ci/DEMO-TUDaReport.tex
- texmf-dist/doc/latex/tuda-ci/DEMO-TUDaSciPoster.pdf details="Example scientific poster" language="de"
+ texmf-dist/doc/latex/tuda-ci/DEMO-TUDaSciPoster.pdf details="Example scientific poster"
texmf-dist/doc/latex/tuda-ci/DEMO-TUDaSciPoster.tex
- texmf-dist/doc/latex/tuda-ci/DEMO-TUDaThesis.pdf details="Example bachelor's thesis" language="de"
+ texmf-dist/doc/latex/tuda-ci/DEMO-TUDaThesis.pdf details="Example bachelor's thesis"
texmf-dist/doc/latex/tuda-ci/DEMO-TUDaThesis.tex
+ texmf-dist/doc/latex/tuda-ci/MANIFEST.md
texmf-dist/doc/latex/tuda-ci/README.md details="Readme"
-runfiles size=95
+ texmf-dist/doc/latex/tuda-ci/tuda-ci.pdf details="Package documentation"
+srcfiles size=97
+ texmf-dist/source/latex/tuda-ci/beamercolorthemeTUDa.dtx
+ texmf-dist/source/latex/tuda-ci/beamerfontthemeTUDa.dtx
+ texmf-dist/source/latex/tuda-ci/beamerinnerthemeTUDa.dtx
+ texmf-dist/source/latex/tuda-ci/beamerouterthemeTUDa.dtx
+ texmf-dist/source/latex/tuda-ci/beamerthemeTUDa2008.dtx
+ texmf-dist/source/latex/tuda-ci/tuda-ci.dtx
+ texmf-dist/source/latex/tuda-ci/tuda-ci.ins
+ texmf-dist/source/latex/tuda-ci/tudabeamer.dtx
+ texmf-dist/source/latex/tuda-ci/tudacolors.dtx
+ texmf-dist/source/latex/tuda-ci/tudaexercise.dtx
+ texmf-dist/source/latex/tuda-ci/tudafonts.dtx
+ texmf-dist/source/latex/tuda-ci/tudaleaflet.dtx
+ texmf-dist/source/latex/tuda-ci/tudaletter.dtx
+ texmf-dist/source/latex/tuda-ci/tudaposter.dtx
+ texmf-dist/source/latex/tuda-ci/tudarules.dtx
+ texmf-dist/source/latex/tuda-ci/tudasciposter.dtx
+ texmf-dist/source/latex/tuda-ci/tudasize.dtx
+runfiles size=102
texmf-dist/tex/latex/tuda-ci/beamercolorthemeTUDa.sty
texmf-dist/tex/latex/tuda-ci/beamercolorthemeTUDa2008.sty
texmf-dist/tex/latex/tuda-ci/beamerfontthemeTUDa.sty
@@ -319161,7 +319317,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.41
+catalogue-version 4.00
name tudscr
category Package
@@ -326167,6 +326323,31 @@ catalogue-license lppl1.3
catalogue-topics humanities linguistic biblatex
catalogue-version 0.2
+name unibidi-lua
+category Package
+revision 73554
+shortdesc Unicode bidi algorithm implementation for various LuaTeX formats
+longdesc The package adopts the unicode bidi algorithm implementation
+longdesc provided in ConTeXt, and adapts it to be used in OpTeX, LaTeX
+longdesc and Plain TeX . It works under LuaTeX only.
+docfiles size=12
+ texmf-dist/doc/luatex/unibidi-lua/COPYING
+ texmf-dist/doc/luatex/unibidi-lua/README.md details="Readme"
+ texmf-dist/doc/luatex/unibidi-lua/unibidi-lua-doc.pdf details="Package documentation"
+runfiles size=181
+ texmf-dist/tex/luatex/unibidi-lua/unibidi-lua-data.lua
+ texmf-dist/tex/luatex/unibidi-lua/unibidi-lua.lua
+ texmf-dist/tex/luatex/unibidi-lua/unibidi-lua.opm
+ texmf-dist/tex/luatex/unibidi-lua/unibidi-lua.sty
+ texmf-dist/tex/luatex/unibidi-lua/unibidi-lua.tex
+catalogue-contact-bugs https://github.com/Udi-Fogiel/unibidi-lua/issues
+catalogue-contact-repository https://github.com/Udi-Fogiel/unibidi-lua
+catalogue-contact-support https://github.com/Udi-Fogiel/unibidi-lua/discussions
+catalogue-ctan /macros/luatex/generic/unibidi-lua
+catalogue-license gpl2
+catalogue-topics unicode bidi luatex
+catalogue-version 0.1
+
name unicode-alphabets
category Package
revision 66225
@@ -340374,10 +340555,13 @@ catalogue-version 2.0
name xepersian
category Package
-revision 73362
+revision 73478
shortdesc Persian for LaTeX, using XeTeX
longdesc This package provides a convenient interface for typesetting
-longdesc Persian and English texts in LaTeX, using the XeTeX engine.
+longdesc Persian and English texts in LaTeX, using the XeTeX engine. The
+longdesc name xepersian is derived from the words experience and persian
+longdesc and captures the author's philosophy of writing the package for
+longdesc the best Persian typesetting experience in TeX.
docfiles size=316
texmf-dist/doc/xelatex/xepersian/README details="Readme"
texmf-dist/doc/xelatex/xepersian/dkun-0.3.py
@@ -340479,12 +340663,14 @@ runfiles size=114
texmf-dist/tex/xelatex/xepersian/xepersian.sty
catalogue-contact-announce https://github.com/xepersian/xepersian/discussions/categories/announcements
catalogue-contact-bugs https://github.com/xepersian/xepersian/issues
+catalogue-contact-development https://github.com/sponsors/xepersian
+catalogue-contact-home https://github.com/xepersian
catalogue-contact-repository https://github.com/xepersian/xepersian
catalogue-contact-support https://github.com/xepersian/xepersian/discussions
catalogue-ctan /macros/xetex/latex/xepersian
catalogue-license lppl1.3c
catalogue-topics persian xetex class
-catalogue-version 26.1
+catalogue-version 26.2
name xepersian-hm
category Package
@@ -344314,7 +344500,7 @@ catalogue-version 0.3
name yb-book
category Package
-revision 73446
+revision 73517
shortdesc Template for YB Branded Books
longdesc This template helps the author design books published on Amazon
longdesc under the "Y.B." brand. You are welcome to use it too for your
@@ -344328,11 +344514,13 @@ depend collection-fontsextra
depend collection-fontsrecommended
depend csquotes
depend cyrillic
+depend doi
depend enumitem
depend fancyhdr
depend float
depend footmisc
depend geometry
+depend href-ul
depend hypdoc
depend ifmtarg
depend imakeidx
@@ -344373,7 +344561,7 @@ catalogue-contact-repository https://github.com/yegor256/yb-book
catalogue-ctan /macros/latex/contrib/yb-book
catalogue-license mit
catalogue-topics class doc-templ book-pub
-catalogue-version 0.6.1
+catalogue-version 0.6.2
name ycbook
category Package
@@ -344446,7 +344634,7 @@ catalogue-version 0.7alpha
name yet-another-guide-latex2e
category Package
-revision 73201
+revision 73469
shortdesc A short guide to using LaTeX2e to typeset high quality documents
longdesc This document is a short guide to using LaTeX2e to typeset high
longdesc quality documents. It focuses on users of Windows and guides
@@ -344454,15 +344642,16 @@ longdesc the reader through installation, some of LaTeX's conventions,
longdesc and creating the front matter, body and end matter. The
longdesc appendices contain a list of useful facilities not otherwise
longdesc covered in this document and a list of helpful resources.
-docfiles size=256
+docfiles size=262
+ texmf-dist/doc/latex/yet-another-guide-latex2e/Drawing.pdf
texmf-dist/doc/latex/yet-another-guide-latex2e/README.txt details="Readme"
texmf-dist/doc/latex/yet-another-guide-latex2e/Yet-Another-Guide-LaTeX2e.pdf details="The document itself"
- texmf-dist/doc/latex/yet-another-guide-latex2e/Yet-Another-Guide-LaTeX2e.tex
+ texmf-dist/doc/latex/yet-another-guide-latex2e/Yet-Another-Guide-LaTeX2e_v131.tex
catalogue-alias startlatex2e
catalogue-ctan /info/yet-another-guide-latex2e
catalogue-license fdl
catalogue-topics tut-latex
-catalogue-version 1.3
+catalogue-version 1.3.1
name yfonts
category Package
@@ -344492,7 +344681,7 @@ catalogue-version 1.4
name yfonts-otf
category Package
-revision 65030
+revision 73612
shortdesc OpenType version of the Old German fonts designed by Yannis Haralambous
longdesc This is an OpenType version of the Old German fonts yfrak,
longdesc ygoth, yswab designed by Yannis Haralambous in Metafont. The
@@ -344500,13 +344689,13 @@ longdesc OpenType features make it easier to deal with the long/round s
longdesc and with older forms of umlauts (small e over the letter). A
longdesc style file yfonts-otf.sty is provided as a replacement, for
longdesc LuaLaTeX and XeLaTeX, of yfonts.sty or oldgerm.sty.
-docfiles size=48
+docfiles size=49
texmf-dist/doc/fonts/yfonts-otf/Erlkonig.ltx
texmf-dist/doc/fonts/yfonts-otf/Erlkonig.pdf details="Example of use"
texmf-dist/doc/fonts/yfonts-otf/README.md details="Readme"
texmf-dist/doc/fonts/yfonts-otf/yfonts-otf.ltx
texmf-dist/doc/fonts/yfonts-otf/yfonts-otf.pdf details="Package documentation"
-runfiles size=37
+runfiles size=42
texmf-dist/fonts/opentype/public/yfonts-otf/yfrak.otf
texmf-dist/fonts/opentype/public/yfonts-otf/ygoth.otf
texmf-dist/fonts/opentype/public/yfonts-otf/yswab.otf
@@ -344515,7 +344704,7 @@ runfiles size=37
catalogue-ctan /fonts/yfonts-otf
catalogue-license ofl lppl1.3
catalogue-topics font font-otf font-gothic font-supp
-catalogue-version 0.43
+catalogue-version 0.50
name yfonts-t1
category Package
@@ -344637,7 +344826,7 @@ srcfiles size=11
texmf-dist/source/generic/youngtab/youngtab.ins
runfiles size=2
texmf-dist/tex/generic/youngtab/youngtab.sty
-catalogue-also young ytableau
+catalogue-also young ytableau atableau
catalogue-ctan /macros/generic/youngtab
catalogue-license lppl1
catalogue-topics maths macro-gen
@@ -352642,7 +352831,7 @@ srcfiles size=15
texmf-dist/source/latex/ytableau/ytableau.ins
runfiles size=3
texmf-dist/tex/latex/ytableau/ytableau.sty
-catalogue-also youngtab young
+catalogue-also youngtab young atableau
catalogue-ctan /macros/latex/contrib/ytableau
catalogue-license lppl1.2
catalogue-topics maths
diff --git a/Master/tlpkg/tlpsrc/atableau.tlpsrc b/Master/tlpkg/tlpsrc/atableau.tlpsrc
new file mode 100644
index 00000000000..e69de29bb2d
--- /dev/null
+++ b/Master/tlpkg/tlpsrc/atableau.tlpsrc
diff --git a/Master/tlpkg/tlpsrc/collection-games.tlpsrc b/Master/tlpkg/tlpsrc/collection-games.tlpsrc
index f7a9e7f55dc..fb7e3e97a7d 100644
--- a/Master/tlpkg/tlpsrc/collection-games.tlpsrc
+++ b/Master/tlpkg/tlpsrc/collection-games.tlpsrc
@@ -53,6 +53,7 @@ depend sudoku
depend sudokubundle
depend tangramtikz
depend thematicpuzzle
+depend tikz-triminos
depend trivialpursuit
depend twoxtwogame
depend wargame
diff --git a/Master/tlpkg/tlpsrc/collection-langjapanese.tlpsrc b/Master/tlpkg/tlpsrc/collection-langjapanese.tlpsrc
index 8e394e112fd..ce1c2476546 100644
--- a/Master/tlpkg/tlpsrc/collection-langjapanese.tlpsrc
+++ b/Master/tlpkg/tlpsrc/collection-langjapanese.tlpsrc
@@ -20,6 +20,7 @@ depend bxorigcapt
depend bxwareki
depend chuushaku
depend convbkmk
+depend convert-jpfonts
depend endnotesj
depend gckanbun
depend gentombow
diff --git a/Master/tlpkg/tlpsrc/collection-luatex.tlpsrc b/Master/tlpkg/tlpsrc/collection-luatex.tlpsrc
index 85cba19fb02..4fc596c1529 100644
--- a/Master/tlpkg/tlpsrc/collection-luatex.tlpsrc
+++ b/Master/tlpkg/tlpsrc/collection-luatex.tlpsrc
@@ -113,5 +113,6 @@ depend texfindpkg
depend truthtable
depend tsvtemplate
depend typewriter
+depend unibidi-lua
depend uninormalize
depend yamlvars
diff --git a/Master/tlpkg/tlpsrc/collection-mathscience.tlpsrc b/Master/tlpkg/tlpsrc/collection-mathscience.tlpsrc
index 3ee154ffe75..ca4486770a9 100644
--- a/Master/tlpkg/tlpsrc/collection-mathscience.tlpsrc
+++ b/Master/tlpkg/tlpsrc/collection-mathscience.tlpsrc
@@ -19,6 +19,7 @@ depend amscdx
depend amstex
depend annotate-equations
depend apxproof
+depend atableau
depend autobreak
depend axodraw2
depend backnaur
diff --git a/Master/tlpkg/tlpsrc/collection-pictures.tlpsrc b/Master/tlpkg/tlpsrc/collection-pictures.tlpsrc
index f91b87f93e3..2d0e057812e 100644
--- a/Master/tlpkg/tlpsrc/collection-pictures.tlpsrc
+++ b/Master/tlpkg/tlpsrc/collection-pictures.tlpsrc
@@ -142,6 +142,7 @@ depend polyomino
depend postage
depend postit
depend prerex
+depend prisma-flow-diagram
depend productbox
depend ptolemaicastronomy
depend puyotikz
diff --git a/Master/tlpkg/tlpsrc/convert-jpfonts.tlpsrc b/Master/tlpkg/tlpsrc/convert-jpfonts.tlpsrc
new file mode 100644
index 00000000000..e69de29bb2d
--- /dev/null
+++ b/Master/tlpkg/tlpsrc/convert-jpfonts.tlpsrc
diff --git a/Master/tlpkg/tlpsrc/hyphen-arabic.tlpsrc b/Master/tlpkg/tlpsrc/hyphen-arabic.tlpsrc
index cbf74a0b88e..22568545fba 100644
--- a/Master/tlpkg/tlpsrc/hyphen-arabic.tlpsrc
+++ b/Master/tlpkg/tlpsrc/hyphen-arabic.tlpsrc
@@ -5,8 +5,8 @@ shortdesc (No) Arabic hyphenation patterns.
longdesc Prevent hyphenation in Arabic.
execute AddHyphen \
name=arabic \
- lefthyphenmin= \
- righthyphenmin= \
+ lefthyphenmin=0 \
+ righthyphenmin=0 \
file=zerohyph.tex \
file_patterns=
runpattern f texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-ar.tex
diff --git a/Master/tlpkg/tlpsrc/hyphen-farsi.tlpsrc b/Master/tlpkg/tlpsrc/hyphen-farsi.tlpsrc
index 214213c60bb..d57e2080fd9 100644
--- a/Master/tlpkg/tlpsrc/hyphen-farsi.tlpsrc
+++ b/Master/tlpkg/tlpsrc/hyphen-farsi.tlpsrc
@@ -5,8 +5,8 @@ shortdesc (No) Persian hyphenation patterns.
longdesc Prevent hyphenation in Persian.
execute AddHyphen \
name=farsi synonyms=persian \
- lefthyphenmin= \
- righthyphenmin= \
+ lefthyphenmin=0 \
+ righthyphenmin=0 \
file=zerohyph.tex \
file_patterns=
runpattern f texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-fa.tex
diff --git a/Master/tlpkg/tlpsrc/mathalpha.tlpsrc b/Master/tlpkg/tlpsrc/mathalpha.tlpsrc
index e69de29bb2d..493569ed3f6 100644
--- a/Master/tlpkg/tlpsrc/mathalpha.tlpsrc
+++ b/Master/tlpkg/tlpsrc/mathalpha.tlpsrc
@@ -0,0 +1 @@
+execute addMap ${PKGNAME}.map
diff --git a/Master/tlpkg/tlpsrc/prisma-flow-diagram.tlpsrc b/Master/tlpkg/tlpsrc/prisma-flow-diagram.tlpsrc
new file mode 100644
index 00000000000..e69de29bb2d
--- /dev/null
+++ b/Master/tlpkg/tlpsrc/prisma-flow-diagram.tlpsrc
diff --git a/Master/tlpkg/tlpsrc/tikz-triminos.tlpsrc b/Master/tlpkg/tlpsrc/tikz-triminos.tlpsrc
new file mode 100644
index 00000000000..e69de29bb2d
--- /dev/null
+++ b/Master/tlpkg/tlpsrc/tikz-triminos.tlpsrc
diff --git a/Master/tlpkg/tlpsrc/unibidi-lua.tlpsrc b/Master/tlpkg/tlpsrc/unibidi-lua.tlpsrc
new file mode 100644
index 00000000000..e69de29bb2d
--- /dev/null
+++ b/Master/tlpkg/tlpsrc/unibidi-lua.tlpsrc
diff --git a/Master/tlpkg/tlpsrc/yb-book.tlpsrc b/Master/tlpkg/tlpsrc/yb-book.tlpsrc
index 3d880587be3..a7a94e251f6 100644
--- a/Master/tlpkg/tlpsrc/yb-book.tlpsrc
+++ b/Master/tlpkg/tlpsrc/yb-book.tlpsrc
@@ -7,11 +7,13 @@ hard collection-fontsextra
hard collection-fontsrecommended
hard csquotes
hard cyrillic
+hard doi
hard enumitem
hard fancyhdr
hard float
hard footmisc
hard geometry
+hard href-ul
hard hypdoc
hard ifmtarg
hard imakeidx
@@ -38,7 +40,6 @@ hard xifthen
hard xkeyval
hard zref
soft biblatex
-soft href-ul
soft imakeidx
soft l3build
soft pgfopts