summaryrefslogtreecommitdiff
path: root/systems/texlive/tlnet
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2023-04-05 03:02:06 +0000
committerNorbert Preining <norbert@preining.info>2023-04-05 03:02:06 +0000
commit085271aaf9917d7116be9774c6cd0a117aa4111e (patch)
treef222fa9f21aed2a069c8d380429558a802964b66 /systems/texlive/tlnet
parente9f267fd4c8414d6146c5fee0dbe459613dd0f3b (diff)
CTAN sync 202304050302
Diffstat (limited to 'systems/texlive/tlnet')
-rw-r--r--systems/texlive/tlnet/tlpkg/TeXLive/TLPaper.pm121
-rw-r--r--systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl8
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb178
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.md52
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha5122
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc14
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.xzbin2434064 -> 2436408 bytes
7 files changed, 180 insertions, 145 deletions
diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLPaper.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLPaper.pm
index 09136b54a0..b199afded4 100644
--- a/systems/texlive/tlnet/tlpkg/TeXLive/TLPaper.pm
+++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLPaper.pm
@@ -1,6 +1,6 @@
-# $Id: TLPaper.pm 61372 2021-12-21 22:46:16Z karl $
+# $Id: TLPaper.pm 66757 2023-04-04 14:00:33Z preining $
# TeXLive::TLPaper.pm - query/modify paper sizes for our various programs
-# Copyright 2008-2021 Norbert Preining
+# Copyright 2008-2023 Norbert Preining
# This file is licensed under the GNU General Public License version 2
# or any later version.
@@ -8,7 +8,7 @@ use strict; use warnings;
package TeXLive::TLPaper;
-my $svnrev = '$Revision: 61372 $';
+my $svnrev = '$Revision: 66757 $';
my $_modulerevision;
if ($svnrev =~ m/: ([0-9]+) /) {
$_modulerevision = $1;
@@ -83,8 +83,14 @@ our %paper = (
"context" => {
sub => \&paper_context,
default_component => "tex/context/user",
- default_file => "cont-sys.tex",
+ default_file => "cont-sys.mkxl",
pkg => "context",
+ variant => {
+ sub => \&paper_context,
+ default_component => "tex/context/user",
+ default_file => "cont-sys.mkiv",
+ pkg => "context",
+ }
},
"psutils" => {
sub => \&paper_psutils,
@@ -184,6 +190,8 @@ my %pdftex_papersize = (
"letter" => [ '8.5 true in', '11 true in' ],
);
+my %context_papersize = ( "A4" => 1, "letter" => 1, );
+
my %dvipdfm_papersize = (
"a3" => 1,
"a4" => 1,
@@ -284,10 +292,11 @@ sub find_paper_file {
sub setup_names {
my $prog = shift;
+ my $variant = shift || "";
my $outcomp = $paper_config_path_component{$prog}
- || $paper{$prog}{'default_component'};
+ || ($variant eq "variant" ? $paper{$prog}{'variant'}{'default_component'} : $paper{$prog}{'default_component'});
my $filecomp = $paper_config_name{$prog}
- || $paper{$prog}{'default_file'};
+ || ($variant eq "variant" ? $paper{$prog}{'variant'}{'default_file'} : $paper{$prog}{'default_file'});
return ($outcomp, $filecomp);
}
@@ -672,7 +681,7 @@ sub paper_dvipdfmx {
# context format:
-# /--- cont-sys.{tex,rme}
+# /--- cont-sys.mkxl and cont-sys.mkiv // formerly {tex,rme}
# |...
# |\setuppapersize[letter][letter]
# |...
@@ -681,70 +690,98 @@ sub paper_dvipdfmx {
sub paper_context {
my $outtree = shift;
my $newpaper = shift;
- my ($outcomp, $filecomp) = setup_names("context");
- my $dftfile = $paper{'context'}{'default_file'};
- my $outfile = "$outtree/$outcomp/$filecomp";
- my $inp = &find_paper_file("context", "tex", $filecomp, "cont-sys.rme", $dftfile);
+ # context mkxl actually expects "A4" in contrast to all previous versions
+ # of context - thanks! But since tlmgr expects to work with a4/letter,
+ # rewrite a4 -> A4 in the actual function.
+ if ($newpaper && $newpaper eq "a4") {
+ $newpaper = "A4";
+ }
+ return (__paper_context($outtree, $newpaper, "context") | __paper_context($outtree, $newpaper, "variant"));
+}
- return($F_ERROR) unless $inp;
+sub __paper_context {
+ my $outtree = shift;
+ my $newpaper = shift;
+ my $what = shift;
+ my $prog = $what;
+ my $prog_long = $what;
+ if ($what eq "variant") {
+ $prog = "context";
+ $prog_long = "context (MkIV)";
+ }
+ my ($outcomp, $filecomp) = setup_names($prog, $what);
+ my $dftfile = ($what eq 'variant' ? $paper{$prog}{'variant'}{'default_file'} : $paper{$prog}{'default_file'});
+ my $outfile = "$outtree/$outcomp/$filecomp";
+ my $inp = &find_paper_file("context", "tex", $filecomp, $dftfile);
- open(FOO, "<$inp") || die "$prg: open($inp) failed: $!";
- my @lines = <FOO>;
- close(FOO);
+ # return($F_ERROR) unless $inp;
+ # We don't return error here, since the default configuration file
+ # for context might not have been generated by now cont-sys.mkxl
+ #
+ my @lines;
+ my $endinputidx = -1;
my @idx;
my $idxlast;
- my $endinputidx = -1;
my $currentpaper;
- # read the lines and the last setuppapersize before the endinput wins
- for my $idx (0..$#lines) {
- my $l = $lines[$idx];
- if ($l =~ m/^[^%]*\\endinput/) {
- $endinputidx = $idx;
- last;
- }
- if ($l =~ m/^\s*\\setuppapersize\s*\[([^][]*)\].*$/) {
- if (defined($currentpaper) && $currentpaper ne $1) {
- tl_warn("TLPaper: inconsistent paper sizes in $inp! Please fix that.\n");
- return $F_ERROR;
+ if ($inp) {
+ open(FOO, "<$inp") || die "$prg: open($inp) failed: $!";
+ @lines = <FOO>;
+ close(FOO);
+
+ # read the lines and the last setuppapersize before the endinput wins
+ for my $idx (0..$#lines) {
+ my $l = $lines[$idx];
+ if ($l =~ m/^[^%]*\\endinput/) {
+ $endinputidx = $idx;
+ last;
+ }
+ if ($l =~ m/^\s*\\setuppapersize\s*\[([^][]*)\].*$/) {
+ if (defined($currentpaper) && $currentpaper ne $1) {
+ tl_warn("TLPaper: inconsistent paper sizes in $inp! Please fix that.\n");
+ return $F_ERROR;
+ }
+ $currentpaper = $1;
+ $idxlast = $idx;
+ push @idx, $idx;
+ next;
}
- $currentpaper = $1;
- $idxlast = $idx;
- push @idx, $idx;
- next;
}
+ } else {
+ @lines = []
+ # TODO ???
}
# if we haven't found a paper line, assume a4
- $currentpaper || ($currentpaper = "a4");
+ $currentpaper || ($currentpaper = "A4");
# trying to find the right papersize
#
if (defined($newpaper)) {
if ($newpaper eq "--list") {
info("$currentpaper\n");
- for my $p (keys %pdftex_papersize) {
+ for my $p (keys %context_papersize) {
info("$p\n") unless ($p eq $currentpaper);
}
} elsif ($newpaper eq "--json") {
my @ret = ();
push @ret, "$currentpaper";
- for my $p (keys %pdftex_papersize) {
+ for my $p (keys %context_papersize) {
push @ret, $p unless ($p eq $currentpaper);
}
my %foo;
- $foo{'program'} = "context";
+ $foo{'program'} = $prog;
$foo{'file'} = $inp;
$foo{'options'} = \@ret;
return \%foo;
} elsif ($newpaper eq "--returnlist") {
my @ret = ();
push @ret, "$currentpaper";
- for my $p (keys %pdftex_papersize) {
+ for my $p (keys %context_papersize) {
push @ret, $p unless ($p eq $currentpaper);
}
return \@ret;
} else {
my $found = 0;
- for my $p (keys %pdftex_papersize) {
+ for my $p (keys %context_papersize) {
if ($p eq $newpaper) {
$found = 1;
last;
@@ -760,20 +797,20 @@ sub paper_context {
}
} else {
my $addlines = "\\setuppapersize[$newpaper][$newpaper]\n";
- if (defined($endinputidx)) {
+ if ($endinputidx > -1) {
$lines[$endinputidx] = $addlines . $lines[$endinputidx];
} else {
$lines[$#lines] = $addlines;
}
}
- info("$prg: setting paper size for context to $newpaper: $outfile\n");
+ info("$prg: setting paper size for $prog_long to $newpaper: $outfile\n");
mkdirhier(dirname($outfile));
# if we create the outfile we have to call mktexlsr
TeXLive::TLUtils::announce_execute_actions("files-changed")
unless (-r $outfile);
if (!open(TMP, ">$outfile")) {
tlwarn("$prg: Cannot write to $outfile: $!\n");
- tlwarn("Not setting paper size for context.\n");
+ tlwarn("Not setting paper size for $prog_long.\n");
return($F_ERROR);
}
for (@lines) { print TMP; }
@@ -782,12 +819,12 @@ sub paper_context {
# TODO should we return the value of announce_execute action?
return($F_OK);
} else {
- tlwarn("$prg: Not a valid paper size for context: $newpaper\n");
+ tlwarn("$prg: Not a valid paper size for $prog_long: $newpaper\n");
return($F_WARNING);
}
}
} else {
- info("Current context paper size (from $inp): $currentpaper\n");
+ info("Current $prog_long paper size (from $inp): $currentpaper\n");
}
return($F_OK);
}
diff --git a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
index 25b04befa2..fe4d3f5a4a 100644
--- a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
+++ b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
@@ -12,7 +12,6 @@ $mirrors = {
'https://mirrors.cloud.tencent.com/CTAN/' => 1,
'https://mirrors.cqu.edu.cn/CTAN/' => 1,
'https://mirrors.hit.edu.cn/CTAN/' => 1,
- 'https://mirrors.nju.edu.cn/CTAN/' => 1,
'https://mirrors.pku.edu.cn/ctan/' => 1,
'https://mirrors.sjtug.sjtu.edu.cn/ctan/' => 1,
'https://mirrors.sustech.edu.cn/CTAN/' => 1,
@@ -32,7 +31,6 @@ $mirrors = {
},
'Iran' => {
'https://ctan.asis.sh/' => 1,
- 'https://mirror.bardia.tech/ctan/' => 1,
},
'Japan' => {
'http://ring.airnet.ne.jp/archives/text/CTAN/' => 1,
@@ -42,9 +40,9 @@ $mirrors = {
},
'Korea' => {
'http://ftp.ktug.org/tex-archive/' => 1,
+ 'https://cran.asia/tex/' => 1,
'https://ftp.kaist.ac.kr/pub/tex-archive/' => 1,
'https://lab.uklee.pe.kr/tex-archive/' => 1,
- 'https://mirror.kakao.com/CTAN/' => 1,
'https://mirror.navercorp.com/CTAN/' => 1,
},
'Singapore' => {
@@ -119,7 +117,6 @@ $mirrors = {
'https://ftp.snt.utwente.nl/pub/software/tex/' => 1,
'https://mirror.koddos.net/CTAN/' => 1,
'https://mirror.lyrahosting.com/CTAN/' => 1,
- 'https://mirrors.evoluso.com/CTAN/' => 1,
},
'Norway' => {
'https://ctan.uib.no/' => 1,
@@ -175,9 +172,6 @@ $mirrors = {
'https://mirror.its.dal.ca/ctan/' => 1,
'https://muug.ca/mirror/ctan/' => 1,
},
- 'Costa Rica' => {
- 'https://mirrors.ucr.ac.cr/CTAN/' => 1,
- },
'USA' => {
'http://bay.uchicago.edu/CTAN/' => 1,
'http://mirrors.ibiblio.org/pub/mirrors/CTAN/' => 1,
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb b/systems/texlive/tlnet/tlpkg/texlive.tlpdb
index 4fa4f1774d..150e4e3163 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb
@@ -26,7 +26,7 @@ depend container_split_src_files/1
depend frozen/0
depend minrelease/2016
depend release/2023
-depend revision/66754
+depend revision/66766
name 00texlive.image
category TLCore
@@ -4721,7 +4721,7 @@ depend setting_available_architectures:aarch64-linux amd64-freebsd amd64-netbsd
name 00texlive.installer
category TLCore
-revision 66748
+revision 66756
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
@@ -42163,28 +42163,28 @@ catalogue-version 0.1
name bithesis
category Package
-revision 66622
+revision 66765
shortdesc Templates for the Beijing Institute of Technology
relocated 1
longdesc This package establishes a simple and easy-to-use LaTeX
longdesc template for Beijing Institute of Technology dissertations,
longdesc including general undergraduate theses and master theses.
-containersize 23372
-containerchecksum 8f9ded5179dd8a844b15bd8b266c9cc936fee89fd61fd8e556c13be60ee215335413a406ad4d4839dd0eb10c318f5017039eec27023bb37c60afa92bece7d644
-doccontainersize 1065072
-doccontainerchecksum d4e19072a92429fd68236bb403ad8702403641cdf430cf6b423bcad949d98fc2a1ab2857d66cc0931bfbbd4049248bb3dd3804f1302208dba109e196eb691a7a
-docfiles size=271
+containersize 24092
+containerchecksum b1d197c28a00d4adc51ca0a5cbdbdf6f97a947801f9ec124562d183f77060b357677a2dc3de4009d37a7948d6588b26a2255b1fef35ac6ae5d9125e3ec30f4db
+doccontainersize 1091688
+doccontainerchecksum 08d4ec497506533435d2d1c311aae0a6649e96cb890107a5e1798c717c8ddc7836789aa40f596ae3fb68b33a160b1b940c21d64b62e17cfa8532b88d607a26f5
+docfiles size=277
RELOC/doc/latex/bithesis/README.md details="Readme"
RELOC/doc/latex/bithesis/bithesis.pdf details="Package documentation" language="zh"
RELOC/doc/latex/bithesis/contributing-zh.md
RELOC/doc/latex/bithesis/contributing.md
RELOC/doc/latex/bithesis/dtx-style.sty
-srccontainersize 42784
-srccontainerchecksum 0a143c06b02f679e38a9bda7119ed6cce5be31b23967f6d39b4a715d7830d57db40f92e7557212444d8e18d28415b18ef80aff0d857d6be6d58bafc1e12d5150
-srcfiles size=52
+srccontainersize 44748
+srccontainerchecksum 22d32c4def530077a3a42abe51f31f375d4e8d1ec1e6b8897889d7263a43e4cd13dee575fb6502122c2b38272f1e5602c2186126653f3b770e9eadfbb8f84481
+srcfiles size=54
RELOC/source/latex/bithesis/bithesis.dtx
RELOC/source/latex/bithesis/bithesis.ins
-runfiles size=33
+runfiles size=34
RELOC/tex/latex/bithesis/bitart.cls
RELOC/tex/latex/bithesis/bitbeamer.cls
RELOC/tex/latex/bithesis/bitbook.cls
@@ -42199,7 +42199,7 @@ catalogue-contact-support https://github.com/BITNP/BIThesis/discussions
catalogue-ctan /macros/unicodetex/latex/bithesis
catalogue-license lppl1.3c
catalogue-topics class dissertation doc-templ chinese expl3
-catalogue-version 3.4.3
+catalogue-version 3.5.0
name bitpattern
category Package
@@ -176010,7 +176010,7 @@ binfiles arch=x86_64-solaris size=1
name latexmk
category Package
-revision 65485
+revision 66766
shortdesc Fully automated LaTeX document generation
longdesc Latexmk completely automates the process of generating a LaTeX
longdesc document. Given the source files for a document, latexmk issues
@@ -176022,11 +176022,11 @@ longdesc files), and reruns LaTeX, etc., whenever a source file has
longdesc changed. Thus a previewer can offer a display of the document's
longdesc latest state.
depend latexmk.ARCH
-containersize 108100
-containerchecksum c00227344e815dd558173662022045e2d6d2bf626235aa2b12e637da5ecfe069b4bf74d243eda7d33d0fb9d7c98e67fc33b2a6735d87bae17f22f5e81b1f2710
-doccontainersize 511516
-doccontainerchecksum 4daa3f455c7396aaff4c7ad0322787621fb91f247cf8da95dd65aebc4d09f114ef226b65c701807b6f4d66777026be2d65ff10745d96832658139f33b315069b
-docfiles size=276
+containersize 110284
+containerchecksum 575ebf70cead03d93088e6437a91b26cc1f4d41c2148fc5aa8eb8908b1f854f91929b1089961546ee019033f8b6d06a208edc103e068feb199e805a7f2a44538
+doccontainersize 520952
+doccontainerchecksum 70ee88482f70accd9081daea1543408de456cecc03db83ae103a1fcce4a9d7e5297409011b9ca08c85eda5b2a508101312e7973a82d290a01404888dcc8d346f
+docfiles size=282
texmf-dist/doc/man/man1/latexmk.1
texmf-dist/doc/man/man1/latexmk.man1.pdf
texmf-dist/doc/support/latexmk/CHANGES
@@ -176050,16 +176050,17 @@ docfiles size=276
texmf-dist/doc/support/latexmk/example_rcfiles/minted_latexmkrc
texmf-dist/doc/support/latexmk/example_rcfiles/mpost_latexmkrc
texmf-dist/doc/support/latexmk/example_rcfiles/nomenclature_latexmkrc
- texmf-dist/doc/support/latexmk/example_rcfiles/pdflatexmkrc
texmf-dist/doc/support/latexmk/example_rcfiles/pweave-latexmkrc
texmf-dist/doc/support/latexmk/example_rcfiles/pythontex-latexmkrc
texmf-dist/doc/support/latexmk/example_rcfiles/sagetex_latexmkrc
+ texmf-dist/doc/support/latexmk/example_rcfiles/schultz-texshop-latexmkrc
texmf-dist/doc/support/latexmk/example_rcfiles/splitindex.latexmkrc
texmf-dist/doc/support/latexmk/example_rcfiles/sweave_latexmkrc
texmf-dist/doc/support/latexmk/example_rcfiles/tex4ht-latexmkrc
texmf-dist/doc/support/latexmk/example_rcfiles/texinfo-latexmkrc
texmf-dist/doc/support/latexmk/example_rcfiles/tikz-externalized-latexmkrc
texmf-dist/doc/support/latexmk/example_rcfiles/xelatex_latexmkrc
+ texmf-dist/doc/support/latexmk/example_rcfiles/xr_latexmkrc
texmf-dist/doc/support/latexmk/extra-scripts/README-latexmk-scripts
texmf-dist/doc/support/latexmk/extra-scripts/dvipdfm_call
texmf-dist/doc/support/latexmk/extra-scripts/dvipdfm_call.bat
@@ -176076,14 +176077,14 @@ docfiles size=276
texmf-dist/doc/support/latexmk/latexmk.cmd
texmf-dist/doc/support/latexmk/latexmk.pdf details="Manual page, PDF"
texmf-dist/doc/support/latexmk/latexmk.txt details="Manual page, text format"
-runfiles size=116
+runfiles size=119
texmf-dist/scripts/latexmk/latexmk.pl
catalogue-also latexn prv arara
catalogue-contact-home http://personal.psu.edu/~jcc8/software/latexmk/
catalogue-ctan /support/latexmk
catalogue-license gpl2
catalogue-topics compilation
-catalogue-version 4.79
+catalogue-version 4.80
name latexmk.aarch64-linux
category Package
@@ -194465,25 +194466,25 @@ catalogue-version 1.0
name luamplib
category Package
-revision 61587
+revision 66762
shortdesc Use LuaTeX's built-in MetaPost interpreter
relocated 1
longdesc The package enables the user to specify MetaPost diagrams
longdesc (which may include colour specifications from the color or
longdesc xcolor packages) into a document, using LuaTeX's built-in
longdesc MetaPost library. The facility is only available in PDF mode.
-containersize 12060
-containerchecksum daa0a03eca57570f485d2b7decf564eb9f6614a5799d93b798310c20ecb2f055b6dd469c87fbafc1722cb931dc387eada416bb83d609d76a9cfc8c482298edc8
-doccontainersize 156860
-doccontainerchecksum 13b6b7322faf3fda798049bada6d1737f30cb2ce7841ea858ac798fa3f63818ae6661a4e050e4dca336dab37ba9292fa19446a9e1d07a86509c0856793716975
+containersize 12108
+containerchecksum d76fbb6ed2654e4ece2a00aa636f43e99797eb66c93a320a0c4b24a85f7300d35db74c3273383b1244a8b89c835fb1b6e83223f8e13968a293ccbbe6f68d03d4
+doccontainersize 156684
+doccontainerchecksum 611cc10ec2bd8fc142b7aca1f7af7462ff1fc3dfb747dd5facda36cacc0016bc6733edc8354e2a474585454b09f888e93835ffeb69fbdea3f6da7f00f6332759
docfiles size=45
RELOC/doc/luatex/luamplib/NEWS
RELOC/doc/luatex/luamplib/README details="Readme"
RELOC/doc/luatex/luamplib/luamplib.pdf details="Package documentation"
RELOC/doc/luatex/luamplib/test-luamplib-latex.tex
RELOC/doc/luatex/luamplib/test-luamplib-plain.tex
-srccontainersize 27400
-srccontainerchecksum 097a263699067a731409704d7de358c85f4509bfc6426dccd2b193b85430413c441a2c5dc011da613e1e673e6670f7d7ed847e59c58c74d6caae66b7b3c2a29d
+srccontainersize 27432
+srccontainerchecksum d34bf6f41848734d96400934e98f9593c0f07d37a835e669a2ad94f8522e3b19d691accfc3707a3b00cbd11c65deac32a61ed6d3fe59c9f0f8b4e33d3cee6859
srcfiles size=25
RELOC/source/luatex/luamplib/Makefile
RELOC/source/luatex/luamplib/luamplib.dtx
@@ -194495,7 +194496,7 @@ catalogue-contact-repository https://github.com/lualatex/luamplib
catalogue-ctan /macros/luatex/generic/luamplib
catalogue-license gpl2
catalogue-topics mp-use graphics-in-tex luatex
-catalogue-version 2.23.0
+catalogue-version 2.24.0
name luaoptions
category Package
@@ -248108,32 +248109,32 @@ catalogue-topics doc-supp
name piton
category Package
-revision 65835
+revision 66763
shortdesc Typeset Python listings with LPEG
relocated 1
longdesc This package uses the Lua library LPEG to typeset and highlight
longdesc Python listings.
-containersize 11760
-containerchecksum 431d6967b4825b4e36b2251d59571f57ef3f20d231c4f215d67ba34ac5a105de25c8f2044b4f7a5bd774a906bca4d98bc77b76e3b678b80c57aee4d1c6d705b3
-doccontainersize 603852
-doccontainerchecksum ef3dfcdcfb807135535f52859c6fff5bc46e78e979c07290b96c50fa1f1ffd3fea1a17a619c23f4aeb1fc4d0b21313d841b323799ea050b38b9bb1575d974c62
-docfiles size=259
+containersize 12724
+containerchecksum fe64b54eb5886015e271dfcb20b29308a784258ee3fe89078b04f3ba1dbd04db5c10ceac092cf924900b9bf3b61178959bf3c480ddeb42b3626b1d0e10f9c871
+doccontainersize 611736
+doccontainerchecksum 3bff2b128fa8095b51f70b06553ba5b042286581ad5e1576179fdc37041692ea11286b173635282a91257cb82b3a817ae8f66746092bfece1641a6e25dcb800d
+docfiles size=264
RELOC/doc/lualatex/piton/README.md details="Readme"
RELOC/doc/lualatex/piton/piton-french.pdf details="Package documentation (French)" language="fr"
RELOC/doc/lualatex/piton/piton-french.tex
RELOC/doc/lualatex/piton/piton.pdf details="Package documentation (English)"
-srccontainersize 34288
-srccontainerchecksum 137f87044f7625fd7db4c4fd43957f929ada766248d262c883c111592e00e63f613201c0641a50917bb663adb6c976af7e91f10193cb9cd985eedf5f27d9f52a
-srcfiles size=41
+srccontainersize 35888
+srccontainerchecksum bc5306c715c25e79c2b61311719c345e06d592f791929e1464ba12e45da4864db5f331c2babfc2758c89ecad73996e44c81801a019912bbaef900ce1ff7ae447
+srcfiles size=43
RELOC/source/lualatex/piton/piton.dtx
RELOC/source/lualatex/piton/piton.ins
-runfiles size=15
+runfiles size=16
RELOC/tex/lualatex/piton/piton.sty
catalogue-also codehigh
catalogue-ctan /macros/luatex/latex/piton
catalogue-license lppl1.3
catalogue-topics listing synt-hlt luatex
-catalogue-version 1.4
+catalogue-version 1.5
name pittetd
category Package
@@ -255394,7 +255395,7 @@ catalogue-version 1.0
name proflycee
category Package
-revision 66727
+revision 66759
shortdesc A LaTeX package for French maths teachers in high school
relocated 1
longdesc This package provides some commands to help French mathematics
@@ -255403,13 +255404,15 @@ longdesc create splines with "derivative control";
longdesc \CalculFormelParametres and \CalculFormelLigne in order to
longdesc create an xcas-windows-like; \CodePythonLstFichier to create
longdesc code presentation and code execution with pythontex.
-containersize 29448
-containerchecksum dc03fc6cc352c41a7a726d18b1ce19f4f6774599ca52203ad2a6b8f290cc47ad07d689eb529fd6ae790389c8e016ec335c4bd3f69ea45feca95b546b10b8b9b0
-doccontainersize 1601684
-doccontainerchecksum 80b949a16bf0ada1e1ab4995be2499b6ee414e82d811483ca1391ab468ccc0f489a2eb7fc057e3a8d05e1ac1ab01382800dc4e50fc1f5204936c4a7e6b9b02a1
-docfiles size=524
+containersize 30400
+containerchecksum 0850428f471bd90be3d9cffcead18214e146713c4952cddf42666139e572d2014a52432ecdcd55a1e65d6ee84bd1134d088d3388d0506b28877cb3f4e30b5bd3
+doccontainersize 1664064
+doccontainerchecksum b71da05ce1ce57d694d59ef188f1645a6e03b72aa984e2c5d86b6bf7b111636d77cbb93472c3475b61cdc94255ba9b19bf177f69694c7662159b01c6e292c072
+docfiles size=544
RELOC/doc/latex/proflycee/ProfLycee-doc.pdf details="Package documentation" language="fr"
RELOC/doc/latex/proflycee/ProfLycee-doc.tex
+ RELOC/doc/latex/proflycee/ProfLycee-exemples-pyluatex.pdf
+ RELOC/doc/latex/proflycee/ProfLycee-exemples-pyluatex.tex
RELOC/doc/latex/proflycee/ProfLycee-old-doc.pdf
RELOC/doc/latex/proflycee/ProfLycee-old-doc.tex
RELOC/doc/latex/proflycee/README.md details="Readme"
@@ -255430,7 +255433,7 @@ docfiles size=524
RELOC/doc/latex/proflycee/graphics/pl-solve_c.png
RELOC/doc/latex/proflycee/graphics/pl-solve_d.png
RELOC/doc/latex/proflycee/testscript.py
-runfiles size=63
+runfiles size=64
RELOC/tex/latex/proflycee/ProfLycee-old.sty
RELOC/tex/latex/proflycee/ProfLycee.sty
RELOC/tex/latex/proflycee/proflycee-tools-minted.tex
@@ -255442,7 +255445,7 @@ catalogue-contact-repository https://github.com/cpierquet/ProfLycee
catalogue-ctan /macros/latex/contrib/proflycee
catalogue-license lppl1.3c
catalogue-topics maths french teaching expl3 pgf-tikz
-catalogue-version 2.5.6
+catalogue-version 2.5.7
name program
category Package
@@ -266019,7 +266022,7 @@ catalogue-version 1.3i
name ragged2e
category Package
-revision 66152
+revision 66760
shortdesc Alternative versions of "ragged"-type commands
relocated 1
longdesc The package defines new commands \Centering, \RaggedLeft, and
@@ -266027,16 +266030,16 @@ longdesc \RaggedRight and new environments Center, FlushLeft, and
longdesc FlushRight, which set ragged text and are easily configurable
longdesc to allow hyphenation (the corresponding commands in LaTeX, all
longdesc of whose names are lower-case, prevent hyphenation altogether).
-containersize 3020
-containerchecksum 24f17ba539fe5b23cf5a4f75b0bec2ae7a1810562df80229727805b31d877709d65e2ceda5757dde970539c1f93a478927c9625941fbf99f9fb306afdbce6379
-doccontainersize 687784
-doccontainerchecksum f3aeceac054552375150317e3e4d7baaf1e7a23e2e03a0a97b1a210771b9d5ac381f59874e202a9bb1b39b6e043eee85de6e5fb15869fa7ecd7da77506a7cb2d
-docfiles size=177
+containersize 3036
+containerchecksum 0287a06d4351c2b136c0f14809e0be8ad0dfb9ef71fed3f47af9cab76ea83a14c64be9454766404ace6f2944c997b72f3c600d189401336dcd17ccaddb6b7491
+doccontainersize 689076
+doccontainerchecksum 93925d55a32192332be4d1c78cf0ab71700038d39f1040434280f8337296e04b8c4219700a82f78b168e03787f1f0f40d9462913bae1669434cbce6f44e8485f
+docfiles size=178
RELOC/doc/latex/ragged2e/LICENSE.md
RELOC/doc/latex/ragged2e/README.md details="Readme"
RELOC/doc/latex/ragged2e/ragged2e.pdf details="Package documentation"
-srccontainersize 11932
-srccontainerchecksum 2f7bab3b8a4c3f41ccd368697eaf397e7516d73bd65cc3952864e0e21a3359ae361fa15cff3c317c928a4e6e6de6ac8bde40ea45ebd3d3a694caf2fe401ddc3d
+srccontainersize 11984
+srccontainerchecksum 031b137908adf39c032447d045a67db3b2c1ac6bfb383c46af5d1d19a62a874937ca7f5b27d36ee1e8d13ed3924e929539de01da3ae78cc6fa4c64a3bb2dff7a
srcfiles size=14
RELOC/source/latex/ragged2e/ragged2e.dtx
RELOC/source/latex/ragged2e/ragged2e.ins
@@ -266048,7 +266051,7 @@ catalogue-contact-repository https://gitlab.com/TeXhackse/ragged2e
catalogue-ctan /macros/latex/contrib/ragged2e
catalogue-license lppl1.3c
catalogue-topics layout parshape
-catalogue-version 3.4
+catalogue-version 3.5
name raleway
category Package
@@ -278690,7 +278693,7 @@ catalogue-version 4.0.2
name scikgtex
category Package
-revision 65256
+revision 66764
shortdesc Mark research contributions in scientific documents and embed them in PDF metadata
relocated 1
longdesc Scientific Knowledge Graph TeX (SciKgTeX) is a LuaLaTeX package
@@ -278699,14 +278702,15 @@ longdesc contributions in scientific documents. SciKGTeX will enrich the
longdesc document by adding the marked contributions to PDF metadata in
longdesc a structured XMP format which can be picked up by search
longdesc engines and knowledge graphs.
-containersize 6680
-containerchecksum 5374ed0713db77cd6f84ef8709e0dc73ed411d8679cf7292015d0e0533d577fe7009c08e6d17f10a9c2422c67e56b1b547f46868d570c7ace6910fa7738179a0
-doccontainersize 1348
-doccontainerchecksum 960bbe9295e14c7ba1a9ed53d6df468c2dfafe3b84a0ada506e7fd26335b79880bb8e592463375490d2141fa62fb41aedd79aa3c85bcf0187d4ad2ef2be3ea71
-docfiles size=2
+containersize 6924
+containerchecksum 32433b1c031747037fa329d8b8048563cb53af867bebde85bd5fb95abbdfbd67434595d5fbe682f1247c23535d75929f341668fba9a02221b4864728a5f3cee3
+doccontainersize 854156
+doccontainerchecksum 217da3550e3752fe239831790294d158dd68d16545e5c9ef3e047bedcbe82acee7e34d4216ef843363979e269e03180f20ec9e83b033b44f28acabb67ee26f74
+docfiles size=236
RELOC/doc/lualatex/scikgtex/LICENSE
- RELOC/doc/lualatex/scikgtex/README details="Readme"
-runfiles size=7
+ RELOC/doc/lualatex/scikgtex/README.md details="Readme"
+ RELOC/doc/lualatex/scikgtex/scikgtex.pdf details="Package documentation off-CTAN"
+runfiles size=8
RELOC/tex/lualatex/scikgtex/scikgtex.lua
RELOC/tex/lualatex/scikgtex/scikgtex.sty
catalogue-contact-bugs https://github.com/Christof93/SciKGTeX/issues
@@ -278714,7 +278718,7 @@ catalogue-contact-repository https://github.com/Christof93/SciKGTeX
catalogue-ctan /macros/luatex/latex/scikgtex
catalogue-license mit
catalogue-topics metadata pdf-feat luatex
-catalogue-version 2.1.1
+catalogue-version 2.2.0
name sciposter
category Package
@@ -282727,7 +282731,7 @@ catalogue-version 1.36
name siunitx
category Package
-revision 66627
+revision 66761
shortdesc A comprehensive (SI) units package
relocated 1
longdesc Typesetting values with units requires care to ensure that the
@@ -282752,17 +282756,17 @@ longdesc The package relies on LaTeX 3 support from the l3kernel and
longdesc l3packages bundles.
depend l3kernel
depend l3packages
-containersize 66112
-containerchecksum 9d0a112abfc69d850bd21059b0b0a25110057c09760fb00eaee0de21f1fa39c9dc86ea8c4e97eabc5524a6dbbdcc2e2da000d6a32b62955d9294577fdd5ec9a1
-doccontainersize 1268704
-doccontainerchecksum 8e90f9be529a66c359c2e87e3dee1b203eccb9378f3d33f667d1132ac9f9c9e18f35cbb7be7f801e2832054501a12ac52f805c5b27c74ed1b382e8f982df19fd
+containersize 66180
+containerchecksum aaded1fccb8703c0b05561a7c76194b37852ad7ae90bf582a0284514a7af579864a748365084ace80123fb952bfe02ab2cf47751ff84c80933ff745f33c19dae
+doccontainersize 1268776
+doccontainerchecksum d5978edf99346c8fb51a6825d39061064044bc4bcd26e6f3689e83d57cdf77e672f496e76adb658628919ae84aa49d0d66c2fdfc6fb70f2c56c6bd9c3065f1b1
docfiles size=345
RELOC/doc/latex/siunitx/CHANGELOG.md
RELOC/doc/latex/siunitx/README.md details="Readme"
RELOC/doc/latex/siunitx/siunitx-code.pdf details="Code documentation"
RELOC/doc/latex/siunitx/siunitx.pdf details="User manual"
-srccontainersize 117920
-srccontainerchecksum 2c2aed01d20705e213802304765192dcafa29bb53ed8db9ab7745de9552f7ab5640a8148a00de9a8074490af94a392b7f29b3ba50f80e38f91ebeeb06fc07ccf
+srccontainersize 118132
+srccontainerchecksum e7068687ab67e410c600eac46672661991bd8c22882d6d1fea199f78d12d03141d02083e9a9ea06d1a40d8436b38cc376fcd9b9a8f683208ae379ec97fd93205
srcfiles size=183
RELOC/source/latex/siunitx/siunitx-abbreviation.dtx
RELOC/source/latex/siunitx/siunitx-angle.dtx
@@ -282794,7 +282798,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.2.3
+catalogue-version 3.2.4
name skak
category Package
@@ -299159,23 +299163,23 @@ catalogue-topics documentation polish-doc
name tex-vpat
category Package
-revision 66678
+revision 66758
shortdesc TeX Accessibility Conformance Report
relocated 1
longdesc TeX Accessibility Conformance Report based on ITI VPAT(R)
longdesc guidelines. Currently it covers TeX Live. Other distributions
longdesc can be added if needed.
containersize 508
-containerchecksum f06f689352a2360f700485b92d4d85ef3811637d7c334b01c7629db245cea4243801b34fb9802f171e87a5a7b405fdc329b45d8c4534b745db07b453d98e3830
-doccontainersize 108924
-doccontainerchecksum 80fc270f66a83550fa706a08c46b77b9df51105cc8ce71ad937f8c1b239bbc5947f315948a35a0c58e4d35a26b692715325a90a47c8b1215a4f4e96cfd02ed2f
-docfiles size=215
+containerchecksum 918054527c2d325ac0c1bdd621014fa4c79d7c6cf4ec8b5ac5d81dee84b9159fab0cc0047ea35eeb2de4460952126b3bdcd03395c29379e9df517ed7243206f0
+doccontainersize 142172
+doccontainerchecksum f16ad935930ab663bb2e5b486c4fe53b3bd9e883c660d97893c4aa86bfe22f7ffed77dc66d88060f7eabb1daadd2dc77742c1d9604ea94d26594aba340693f35
+docfiles size=151
RELOC/doc/latex/tex-vpat/LICENSE
RELOC/doc/latex/tex-vpat/Makefile
RELOC/doc/latex/tex-vpat/README.md details="Readme"
RELOC/doc/latex/tex-vpat/texlive-vpat.css
- RELOC/doc/latex/tex-vpat/texlive-vpat.html
- RELOC/doc/latex/tex-vpat/texlive-vpat.pdf details="Package documentation"
+ RELOC/doc/latex/tex-vpat/texlive-vpat.html details="The document itself (HTML)"
+ RELOC/doc/latex/tex-vpat/texlive-vpat.pdf details="The document itself (PDF)"
RELOC/doc/latex/tex-vpat/texlive-vpat.tex
RELOC/doc/latex/tex-vpat/texlive-vpat2.html
RELOC/doc/latex/tex-vpat/texlive-vpat3.html
@@ -299191,7 +299195,7 @@ catalogue-contact-repository https://github.com/TeXUsersGroup/TeX-VPAT
catalogue-ctan /info/tex-vpat
catalogue-license cc-by-3
catalogue-topics std-conform std-spec
-catalogue-version 2.2
+catalogue-version 2.3
name tex.aarch64-linux
category TLCore
@@ -310936,7 +310940,7 @@ docfiles size=376
name texlive-scripts
category TLCore
-revision 66748
+revision 66756
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.
@@ -310944,10 +310948,10 @@ depend texlive-scripts.ARCH
depend texlive.infra
execute addMap mathpple.map
postaction shortcut type=menu name="TeX Live command-line" cmd=TEXDIR/tlpkg/installer/tl-cmd.bat
-containersize 113984
-containerchecksum 3fd7d8e0dbbb9164e4bf5fa18cf3162ff4a7a88b26da971e6c08449b0a222801acb91ce9dcf3c5939eec8ee322ee9172b057aed96cd66b63c771553e66b1c36e
+containersize 113972
+containerchecksum ecc07b81bb0fdf53c7edd7faa25f0514c65fed88c829af59c719201dba26ab94c70d883414d3518c1df31f4d5c1ba848dd393eafb12eb090fa3e0acd81232af1
doccontainersize 423520
-doccontainerchecksum 968274730d09c26f8ba678b57b1a27133c1c14de1299ecd516d8099b15211d604b61a07e8dea2422ec57a1897f2e6c212ba550aaece12a42f96b65ff9fb5f2a1
+doccontainerchecksum e49f4adecabd8a2c8c6bcda160180d7bef871b14400ac1ff7dba0070c8243958007819b88ab6134c08c510a69336912889bd28ce0935eb4d9f6756219149c2b3
docfiles size=537
doc.html
texmf-dist/doc/man/man1/fmtutil-sys.1
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
index bd5aec96d7..0876b4168c 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
@@ -1 +1 @@
-4dca691c30c4fa84560cb79ec1eb4015 texlive.tlpdb
+0c82eb192ffe0ca11863fecf629f4c4d texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
index 46bbd91e39..179988ee1e 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
@@ -1 +1 @@
-c47a14fc832cb97502eec54e1bb190c7fbc98381b26793d56eb904d3326e2b00dd6db47aef21bfbe1863d71bf095d58056c51757b7fed2995ed2fbecb4e17c73 texlive.tlpdb
+fe442edd55fdfb4ea0dd40b019158b75e3e681c94fea229af14bfb9f24ea1556a5be9f5027ebf4e85b835b0cf44847956fbc558df43d0cdb5c1988332f4aaae8 texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
index 0584482d68..1a77c884bf 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
@@ -1,10 +1,10 @@
-----BEGIN PGP SIGNATURE-----
-iQEcBAEBCgAGBQJkK2dBAAoJEEzhh34ZQ4xwtk0H/i0sIcYom5C/UDMXmBcbDTes
-G4eQKGUlwa95rawiI7vtDt98gD4s5xRhjtRdNqQa9Ax5ctTn+rNb5n6igG8QPxap
-SG1f8zd6ZyxJeiqisyNY4rkNFdbkCwSPR0Rp3+FvwM1az6QiEQz2wpukq3SGUfUt
-+DzAwf+tubbL5dE8ZEzp742q/skXxP9t5k+91iZcnSD2bPIt8cn/lnA59lukm3rQ
-4ew5a6U+599VJG09w3hXV4JiNhJq02woYZsNeggd9R6uJYRPLQ2/khG/aYkgzEMy
-AmtcB9H9fuDWrdx1sA3CdNqSnR+/HpjDMK+NRQpGBE3xzQShXCav6aSqD55MPHw=
-=tQAJ
+iQEcBAEBCgAGBQJkLLhvAAoJEEzhh34ZQ4xwnQ0H/29LgOPHuHXW0hbmywHaoy27
+tRn9NUzBP0d26B+27YMvFjjWTJgc9Ef6jIyS5dhNr/0NJA/9QwgkU+WVIBi1SVVR
+7P1ms2ESOAJfNpqxJDf9Fpjm05AHGm08I6cEhjkloLAtrF4HiywENN69ACtPAydt
+HcbFqpf/7PFI6TEDWe7Chq/3Dtava+mhbToe9PqYxwU7n6H90IkIauFGR9FuP9DG
+alTpl7f7LTSF7G+zzbS7ZfuIfx9wkHdmD3hdeRBOpTKxhSuRUFwIq9ieNIh+3tX4
+v3ZsF/P4prPSGRIFUn1qZ+TCry1IaeBzJta3MYmoUYLlAwWoukhNtkZBBt9LOUM=
+=m3Sq
-----END PGP SIGNATURE-----
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
index 312319cd5d..faf2cca8db 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
Binary files differ