summaryrefslogtreecommitdiff
path: root/systems
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2022-01-01 03:00:53 +0000
committerNorbert Preining <norbert@preining.info>2022-01-01 03:00:53 +0000
commit39877769ecfa442af71b4ddd1c266f401957cdd8 (patch)
tree06aaa106eb40b7e0b2ee91073f636bb5975e502c /systems
parent2c09a813df08895666d3755db66718dcd501aee5 (diff)
CTAN sync 202201010300
Diffstat (limited to 'systems')
-rw-r--r--systems/doc/luatex/luatex-backend.tex6
-rw-r--r--systems/doc/luatex/luatex-fonts.tex47
-rw-r--r--systems/doc/luatex/luatex-graphics.tex4
-rw-r--r--systems/doc/luatex/luatex-lua.tex4
-rw-r--r--systems/doc/luatex/luatex-math.tex38
-rw-r--r--systems/doc/luatex/luatex-modifications.tex18
-rw-r--r--systems/doc/luatex/luatex-nodes.tex7
-rw-r--r--systems/doc/luatex/luatex.pdfbin1763334 -> 1784672 bytes
-rw-r--r--systems/doc/luatex/luatex.tex2
-rw-r--r--systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl2
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb94
-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.xzbin2337740 -> 2338932 bytes
-rw-r--r--systems/win32/miktex/tm/packages/next/pr.ini8
-rw-r--r--systems/win32/miktex/tm/packages/pr.ini8
17 files changed, 180 insertions, 76 deletions
diff --git a/systems/doc/luatex/luatex-backend.tex b/systems/doc/luatex/luatex-backend.tex
index cfadd46f25..c2479238f3 100644
--- a/systems/doc/luatex/luatex-backend.tex
+++ b/systems/doc/luatex/luatex-backend.tex
@@ -93,6 +93,12 @@ normally~1 but when set to~2 some data will not be written to the file in order
to comply with the standard. What minor version you set depends on what \PDF\
features you use. This is out of control of \LUATEX.
+One can set the major version number to~2 but we cannot guarantee that the engine
+adapts itself correctly, because there is no public and free specification that
+we know of. Also, user constructed annotations are not checked and just passed
+to the file. On the other hand, the \PDF\ that the engine generated is rather
+simple and not that version depending.
+
\stopsubsection
\startsubsection[title={\type {getcreationdate}}]
diff --git a/systems/doc/luatex/luatex-fonts.tex b/systems/doc/luatex/luatex-fonts.tex
index 400550a96d..136d20dd3b 100644
--- a/systems/doc/luatex/luatex-fonts.tex
+++ b/systems/doc/luatex/luatex-fonts.tex
@@ -1,4 +1,4 @@
-% language=uk
+% language=uk engine=luatex
\environment luatex-style
@@ -861,6 +861,51 @@ value is the index in \type {font.fonts}, the second the font itself, as a \LUA\
table. The indices are listed incrementally, but they do not always form an array
of consecutive numbers: in some cases there can be holes in the sequence.
+\startsubsection[title={\type{\glyphdimensionsmode}}]
+
+Already in the early days of \LUATEX\ the decision was made to calculate the
+effective height and depth of glyphs in a way that reflected the applied vertical
+offset. The height got that offset added, the depth only when the offset was
+larger than zero. We can now control this in more detail with this mode
+parameter. An offset is added to the height and|/|or subtracted from the depth.
+The effective values are never negative. The zero mode is the default.
+
+\starttabulate[|l|pl|]
+\DB value \BC effect \NC\NR
+\TB
+\NC \type {0} \NC the old behavior: add the offset to the height and only subtract
+ the offset only from the depth when it is positive \NC \NR
+\NC \type {1} \NC add the offset to the height and subtract it from the depth \NC \NR
+\NC \type {2} \NC add the offset to the height and subtract it from the depth but
+ keep the maxima of the current and previous results \NC \NR
+\NC \type {3} \NC use the height and depth of the glyph, so no offset is applied \NC \NR
+\LL
+\stoptabulate
+
+\stopsubsection
+
+\startsubsection[title={\type {\discretionaryligaturemode}}]
+
+This parameter controls how complex ligatures interact with discretionaries (as
+injected by the hyphenator). The non||zero values prevent the construction of
+so called init and select discretionaries.
+
+\definefontfeature[ligmodetest][default][mode=base]
+\definefont [ligmodefont][Serif*ligmodetest]
+
+\hyphenation{xx-f-f-i-xx}
+
+\starttabulate[|p|p|p|]
+ \DB 0 \BC 1 \BC 2 \NC \NR
+ \TB
+ \NC \ligmodefont \discretionaryligaturemode0 \hsize1pt xxffixx
+ \NC \ligmodefont \discretionaryligaturemode1 \hsize1pt xxffixx
+ \NC \ligmodefont \discretionaryligaturemode2 \hsize1pt xxffixx \NC \NR
+ \LL
+\stoptabulate
+
+\stopsubsection
+
\stopsection
\stopchapter
diff --git a/systems/doc/luatex/luatex-graphics.tex b/systems/doc/luatex/luatex-graphics.tex
index 3f12762b68..0e34a65284 100644
--- a/systems/doc/luatex/luatex-graphics.tex
+++ b/systems/doc/luatex/luatex-graphics.tex
@@ -515,9 +515,9 @@ In contrast with the normal stand alone \type {mpost} command, there is
\stopfunctioncall
If for some reason you want to stop using an \MPLIB\ instance while processing is
-not yet actually done, you can call \type finish}. Eventually, used memory
+not yet actually done, you can call \type{finish}. Eventually, used memory
will be freed and open files will be closed by the \LUA\ garbage collector, but
-an explicit \type finish} is the only way to capture the final part of the
+an explicit \type{finish} is the only way to capture the final part of the
output streams.
\subsection{Result table}
diff --git a/systems/doc/luatex/luatex-lua.tex b/systems/doc/luatex/luatex-lua.tex
index 04dceda64f..94dead9e14 100644
--- a/systems/doc/luatex/luatex-lua.tex
+++ b/systems/doc/luatex/luatex-lua.tex
@@ -372,7 +372,7 @@ piecemeal: \libidx {string} {utfvalues}, \libidx {string} {utfcharacters},
\type {string.utfcharacters(s)}: a string with a single \UTF-8 token in it
\stopitem
\startitem
- \type {string.cWharacters(s)}: a string containing one byte
+ \type {string.characters(s)}: a string containing one byte
\stopitem
\startitem
\type {string.characterpairs(s)}: two strings each containing one byte or an
@@ -421,7 +421,7 @@ and \libidx {string} {utflength}.
the given code points
\stopitem
\startitem
- \type {string.utflength(s)}: returns the length oif the given string
+ \type {string.utflength(s)}: returns the length of the given string
\stopitem
\stopitemize
diff --git a/systems/doc/luatex/luatex-math.tex b/systems/doc/luatex/luatex-math.tex
index 89c0836ba7..54de255da7 100644
--- a/systems/doc/luatex/luatex-math.tex
+++ b/systems/doc/luatex/luatex-math.tex
@@ -1,4 +1,4 @@
-% language=uk
+% language=uk engine=luatex
\environment luatex-style
@@ -1575,6 +1575,40 @@ Because there are quite some math related parameters and values, it is possible
to limit tracing. Only when \type {tracingassigns} and|/|or \type
{tracingrestores} are set to~2 or more they will be traced.
+\subsection {Math options with \lpr {mathdefaultsmode}}
+
+This option has been introduced because \LATEX\ developers wanted some of the
+defaults to be different from the ones that were set in stone when we froze
+\LUATEX. The default values are:
+
+\starttabulate[|l|c|c|]
+\DB \BC scanning \BC rendering \NC \NR
+\TB
+\NC radical/root \NC cramped \NC cramped \NC \NR
+\NC under delimiter \NC cramped \NC supstyle \NC \NR
+\NC over delimiter \NC cramped \NC substyle \NC \NR
+\NC delimiter under \NC cramped \NC current \NC \NR
+\NC delimiter over \NC cramped \NC current \NC \NR
+\LL
+\stoptabulate
+
+When \type {\mathdefaultsmode} is larger than zero, we have:
+
+\starttabulate[|l|c|c|]
+\DB \BC scanning \BC rendering \NC \NR
+\TB
+\NC radical/root \NC cramped \NC cramped \NC \NR
+\NC under delimiter \NC substyle \NC substyle \NC \NR
+\NC over delimiter \NC supstyle \NC supstyle \NC \NR
+\NC delimiter under \NC current \NC current \NC \NR
+\NC delimiter over \NC cramped \NC cramped \NC \NR
+\LL
+\stoptabulate
+
+It is outside the scope of this manual to discuss the rationale behind these
+defaults. The zero values date back from the early times. If needed you can
+explicitly set the style in the content argument.
+
\subsection {Math options with \lpr {mathoption}}
The logic in the math engine is rather complex and there are often no universal
@@ -1588,7 +1622,7 @@ This option was introduced for testing purposes when the math engine got split
code paths and it forces the engine to treat new fonts as old ones with respect
to italic correction etc. There are no guarantees given with respect to the final
result and unexpected side effects are not seen as bugs as they relate to font
-properties. Ther eis currently only one option:
+properties. There is currently only one option:
\startbuffer
\mathoption old 1
diff --git a/systems/doc/luatex/luatex-modifications.tex b/systems/doc/luatex/luatex-modifications.tex
index bf4233165b..caf643913f 100644
--- a/systems/doc/luatex/luatex-modifications.tex
+++ b/systems/doc/luatex/luatex-modifications.tex
@@ -1,4 +1,4 @@
-% language=uk
+% language=us engine=luatex runpath=texruns:manuals/luatex
\environment luatex-style
@@ -507,6 +507,14 @@ opened it up.
\stopsubsection
+\startsubsection[title=Changes from anywhere]
+
+The \type {\partokenname} and \type {\partokencontext} primitives are taken from
+the \PDFTEX\ change file posted on the implementers list. They are explained in
+the \PDFTEX\ manual and are classified as \ETEX\ extensions.
+
+\stopsubsection
+
\startsubsection[title=Changes from standard \WEBC]
\topicindex {\WEBC}
@@ -1129,6 +1137,14 @@ kerns, should be handled in the input or macro package because there is no way w
can predict the expected behaviour. In fact, the \lpr {linedir} is just a
convenience extra which could also have been implemented using node list parsing.
+Directions are complicated by the fact that they often need to work over groups
+so a separate grouping related stack is used. A side effect is that there can be
+paragraphs with only a local par node followed by direction synchronization
+nodes. Paragraphs like that are seen as empty paragraphs and therefore ignored.
+Because \type {\noindent} doesn't inject anything but a \type {\indent} injects
+an box, paragraphs with only an indent and directions are handles as paragraphs
+with content.
+
\stopsubsection
\startsubsection[title={Controlling glue with \lpr {breakafterdirmode}}]
diff --git a/systems/doc/luatex/luatex-nodes.tex b/systems/doc/luatex/luatex-nodes.tex
index a379b7b0a4..5a48b4c18a 100644
--- a/systems/doc/luatex/luatex-nodes.tex
+++ b/systems/doc/luatex/luatex-nodes.tex
@@ -1002,7 +1002,7 @@ what you generate.
\NC \NC string \NC the destination name \NC \NR
\NC \type{dest_type} \NC number \NC type of destination \NC \NR
\NC \type{xyz_zoom} \NC number \NC the zoom factor (times 1000) \NC \NR
-\NC \type{objnum} \NC number \NC the \PDF\ object number \NC \NR
+\NC \type{objnum} \NC number \NC the \PDF\ object number; for structure references the \PDF\ object number of the linked structure element \NC \NR
\LL
\stoptabulate
@@ -1016,10 +1016,13 @@ objects.
\TB
\NC \type{action_type} \NC number \NC the kind of action involved \NC \NR
\NC \type{action_id} \NC number or string \NC token list reference or string \NC \NR
-\NC \type{named_id} \NC number \NC the index of the destination \NC \NR
+\NC \type{named_id} \NC number \NC are \type {dest_id} and \type {struct_id} string values? \NC \NR
\NC \type{file} \NC string \NC the target filename \NC \NR
\NC \type{new_window} \NC number \NC the window state of the target \NC \NR
\NC \type{data} \NC string \NC the name of the destination \NC \NR
+\NC \type{struct_id} \NC nil \NC the action does not reference a structure destination \NC \NR
+\NC \NC number \NC id of the referenced structure destination \NC \NR
+\NC \NC string \NC name of the referenced structure destination \NC \NR
\LL
\stoptabulate
diff --git a/systems/doc/luatex/luatex.pdf b/systems/doc/luatex/luatex.pdf
index 467a43ff44..ea45ac532e 100644
--- a/systems/doc/luatex/luatex.pdf
+++ b/systems/doc/luatex/luatex.pdf
Binary files differ
diff --git a/systems/doc/luatex/luatex.tex b/systems/doc/luatex/luatex.tex
index b4c13c4de2..9f7236b284 100644
--- a/systems/doc/luatex/luatex.tex
+++ b/systems/doc/luatex/luatex.tex
@@ -73,7 +73,7 @@
\startdocument
[manual=Lua\TeX,
status=stable,
- version=1.13]
+ version=1.15]
\startnotmode[*export]
\component luatex-titlepage
diff --git a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
index 19895fc030..5578b660b0 100644
--- a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
+++ b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
@@ -46,7 +46,6 @@ $mirrors = {
'Korea' => {
'http://ftp.ktug.org/tex-archive/' => 1,
'https://cran.asia/tex/' => 1,
- 'https://ftp.harukasan.org/CTAN/' => 1,
'https://ftp.kaist.ac.kr/pub/tex-archive/' => 1,
'https://mirror.kakao.com/CTAN/' => 1,
'https://mirror.navercorp.com/CTAN/' => 1,
@@ -174,6 +173,7 @@ $mirrors = {
'https://ctan.mirror.rafal.ca/' => 1,
'https://mirror.csclub.uwaterloo.ca/CTAN/' => 1,
'https://mirror.its.dal.ca/ctan/' => 1,
+ 'https://muug.ca/mirror/ctan/' => 1,
},
'Costa Rica' => {
'https://mirrors.ucr.ac.cr/CTAN/' => 1,
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb b/systems/texlive/tlnet/tlpkg/texlive.tlpdb
index cbf8077478..dca5740dbf 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/2021
-depend revision/61441
+depend revision/61449
name 00texlive.image
category TLCore
@@ -4505,7 +4505,7 @@ depend setting_available_architectures:aarch64-linux amd64-freebsd amd64-netbsd
name 00texlive.installer
category TLCore
-revision 61437
+revision 61443
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
@@ -91403,7 +91403,7 @@ catalogue-version 1.4
name docsurvey
category Package
-revision 57362
+revision 61447
shortdesc A survey of LaTeX documentation
relocated 1
longdesc A survey of programming-related documentation for LaTeX.
@@ -91413,10 +91413,10 @@ longdesc distributions, programming-related packages, users groups and
longdesc online communities, and information on creating packages and
longdesc documentation.
containersize 548
-containerchecksum 89b01331fcfe0b039716b7b56f34c6006a15b69d9e8862426d0137221ed6c2909f7537f5252f657eb0448a1484d95bce57a947867bcf25486b893f679ef14072
-doccontainersize 358204
-doccontainerchecksum 795cfea7772c3a0a596dee18c0e2398e883c03e10f9d901a8bbc6dea0e8e599936502acbd687b22fc617d73f96993c6d0eb7801a5445ccf448e42a6ed1605eff
-docfiles size=106
+containerchecksum bfb93b2510b2b2e334e63468dbb4a4860d4a2166c36b5ce5ff706007a2af605ffb1b5b64c567fe1a3bc46a4fe420fef4020ce6bdc16a4a6d3396ef00dc69d076
+doccontainersize 260928
+doccontainerchecksum 5f91a58cd18315c612860bcfcac7b85ffd402b02dfe669e6fae1efbbac5eaec683b3a286231f9db1cfe5ba967be67f08b1319dea72263f7bbcc84cfd913ffc1a
+docfiles size=84
RELOC/doc/latex/docsurvey/README.txt details="Readme"
RELOC/doc/latex/docsurvey/docsurvey.pdf details="The document itself"
RELOC/doc/latex/docsurvey/docsurvey.tex
@@ -187789,7 +187789,7 @@ catalogue-version 1.0
name luapstricks
category Package
-revision 61036
+revision 61446
shortdesc A PSTricks backend for LuaLaTeX
relocated 1
longdesc This package enables the use of PSTricks directly in LuaLaTeX
@@ -187798,13 +187798,13 @@ longdesc implementing a PostScript interpreter in Lua. Therefore it does
longdesc not require shell escape to be enabled or special environments,
longdesc and instead allows PSTricks to be used exactly like in dvips
longdesc based documents.
-containersize 25988
-containerchecksum 11fbfba2f47dabd8db58e4cf502d5b033a13d08f248be071d0c8c4ddb81e7940e1b22b078e75fa50910883a17b71670d328fff00b488b9b6d3d681bc5f784d45
-doccontainersize 1496
-doccontainerchecksum a32552fd6c6038650f2427cbeb320f87bdde17f3ce8a3a07071b22cd71f2a0beef6c730c1af6d7de426403a3793dbc87d7e511792ebd1cbb6dea5fbf4ee3465b
+containersize 27020
+containerchecksum dde995725426bda2d03aefae7062db29911ee9a0dd2179393bcc8b9e07470a378122694f9a5d059bdc2ca797ba99433bd8c31aabfcbdfb426cbf53d8922d8205
+doccontainersize 1524
+doccontainerchecksum e7f5f1790a9a0b6520fd808ef8bd5f080f4fb42db6f020080312e3ef4b4fd65833b48975cca33a8121c49a0156a632a7b406fb605439575fdc00ea52e12b0ccb
docfiles size=1
RELOC/doc/lualatex/luapstricks/README.md details="Readme"
-runfiles size=33
+runfiles size=34
RELOC/fonts/opentype/public/luapstricks/PSTricksDotFont.otf
RELOC/tex/lualatex/luapstricks/luapstricks.lua
catalogue-contact-bugs https://github.com/zauguin/luapstricks/issues
@@ -187812,7 +187812,7 @@ catalogue-contact-repository https://github.com/zauguin/luapstricks
catalogue-ctan /graphics/pstricks/contrib/luapstricks
catalogue-license lppl1.3
catalogue-topics luatex pstricks
-catalogue-version 0.3
+catalogue-version 0.4
name luarandom
category Package
@@ -191647,7 +191647,7 @@ catalogue-version 1.4b
name markdown
category Package
-revision 60667
+revision 61448
shortdesc A package for converting and rendering markdown documents inside TeX
relocated 1
longdesc The package provides facilities for the conversion of markdown
@@ -191660,26 +191660,26 @@ longdesc down and rewritten for the needs of the package. Lunamark
longdesc provides speedy markdown parsing for the rest of the package.
longdesc On top of Lunamark sits code for the plain TeX, LaTeX, and
longdesc ConTeXt formats by Vit Novotny.
-containersize 40256
-containerchecksum 9e0a0cc36d95aff7567a90c64fe3ab81459175c64fee4a12412184c243820f9507cee87ef1e5c49347473ea585924c24d8d386f8633774ab8360f7394d2eeb6c
-doccontainersize 879728
-doccontainerchecksum 7be13326efc5b437395e13b373e7486909446e1b34cfa965adfa02f634314738077a5ba93d8f2d503763731a656607986b55174a68ad117c57e2a3e8bd625251
-docfiles size=383
+containersize 40656
+containerchecksum 88fe8abff1e1a947e4585ef0580c533992573e294eedc4daf132f136ebe5d73e5b232ecfa9e48343855a296e260c564b64b0c2a0062e7ed1c7de920772aea43a
+doccontainersize 887676
+doccontainerchecksum 052deddd1fdf69e62c066d961cf841ffbd27e10faa2813754e15d3b695d9ed0c8dba07c647ce69d95a4cc6faa5508d1c6fc70c265da97e3e1ed7e9679012a083
+docfiles size=385
RELOC/doc/context/third/markdown/examples/context.tex
RELOC/doc/context/third/markdown/examples/example.md
RELOC/doc/context/third/markdown/examples/scientists.csv
RELOC/doc/generic/markdown/README.md details="Readme"
+ RELOC/doc/generic/markdown/VERSION
RELOC/doc/generic/markdown/markdown.css
RELOC/doc/generic/markdown/markdown.html details="User Manual (HTML)"
- RELOC/doc/generic/markdown/markdown.md
RELOC/doc/generic/markdown/markdown.pdf details="Technical documentation"
RELOC/doc/generic/markdown/markdown.png
RELOC/doc/latex/markdown/examples/example.md
RELOC/doc/latex/markdown/examples/latex.tex
RELOC/doc/latex/markdown/examples/scientists.csv
-srccontainersize 83524
-srccontainerchecksum 1ac3f533a56aa89b6afe0d7b364899f4889a4d08cdf2a00ed0e706ae7e344371225871d81cca1ba56f77cfc29681911bed1c1d37bb86c50f887295e2a4a9abf6
-srcfiles size=143
+srccontainersize 85032
+srccontainerchecksum dcf279e76224b4127c2902a0be5be588986ea4214144bdcf8a1ac6e652ad00963d78e8ad71db215fe57ee8cf14f00df3b614a345c26c3ae0aab245e9a1d8b708
+srcfiles size=145
RELOC/source/generic/markdown/docstrip.cfg
RELOC/source/generic/markdown/markdown.dtx
RELOC/source/generic/markdown/markdown.ins
@@ -191700,7 +191700,7 @@ catalogue-contact-repository https://github.com/Witiko/markdown
catalogue-ctan /macros/generic/markdown
catalogue-license lppl1.3
catalogue-topics markup
-catalogue-version 2.11.0-0-g4505824
+catalogue-version 2.12.0-1-g976f074
name marvosym
category Package
@@ -252705,7 +252705,7 @@ catalogue-version 1.5e
name pstricks
category Package
-revision 61084
+revision 61445
catalogue pstricks-base
shortdesc PostScript macros for TeX
relocated 1
@@ -252725,11 +252725,11 @@ longdesc pdftricks package, to generate a PDF inclusion from a PSTricks
longdesc diagram. PSTricks macros can also generate PDF output when the
longdesc document is processed XeTeX, without the need for other
longdesc supporting packages.
-containersize 86928
-containerchecksum 6aa799e9c28a11324c5a979059af293ba45c559e62d422d9f6928feb402fb85f927d2052bec1037e1a44502e5283cbd8b1f325da82a2a8246441297fbb6e8a87
-doccontainersize 7526604
-doccontainerchecksum 89de2d39bb24b21accd0d4092bb830646b91b66ee053469b10dd18a69759b6e2f8c1812c04044d8717626c55b20a878dd108d27d8000f694d9de0935e116be43
-docfiles size=2292
+containersize 87820
+containerchecksum 3d7d958c8928653011df85a25015798b6c9ec0703e3e5ee64a18599e0a1179f83345982fc30104d46b308000348e33d8577a37acb80402adbf82d60c65a60ca3
+doccontainersize 10148024
+doccontainerchecksum ba1f2027c9e072a302170f3ee51a84ded38a22a1adc38a929638a0154b8551297b57ab7eda87a9787556c6ab4d775c995c45e1ff6f5109aa12c56e1ed7cb701d
+docfiles size=2929
RELOC/doc/generic/pstricks/PSTricks.bib
RELOC/doc/generic/pstricks/README details="Readme"
RELOC/doc/generic/pstricks/ctandir.sty
@@ -252779,7 +252779,7 @@ docfiles size=2292
RELOC/doc/generic/pstricks/pstricks-doc.pdf
RELOC/doc/generic/pstricks/test-pst.pdf
RELOC/doc/generic/pstricks/test-pst.tex
-runfiles size=129
+runfiles size=130
RELOC/dvips/pstricks/pst-algparser.pro
RELOC/dvips/pstricks/pst-dots.pro
RELOC/dvips/pstricks/pst-dots97.pro
@@ -252817,7 +252817,7 @@ catalogue-contact-support https://tug.org/mailman/listinfo/pstricks
catalogue-ctan /graphics/pstricks/base
catalogue-license lppl1.3
catalogue-topics graphics-in-tex colour pstricks dvips-special xetex
-catalogue-version 3.11a
+catalogue-version 3.12
name pstricks-add
category Package
@@ -298092,7 +298092,7 @@ docfiles size=376
name texlive-scripts
category TLCore
-revision 61437
+revision 61443
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.
@@ -298100,10 +298100,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 108272
-containerchecksum f75c30db0ad78c99fff248606a2c6eb94e44ce456a81399325a24d27c6800bbe42eab0f4e31dfb8dec0e79a19a7d5828a3e30adf52516aeb932241cca40b0cb6
-doccontainersize 402372
-doccontainerchecksum c41a697ed17c318e3c8a1b4d98aefc87bbdd4a2b9255916695854093719d2a6710701a8e7627869e8d72c60a18ccfcd96260b629b606674784da9ced2d4c1b41
+containersize 108280
+containerchecksum d2f0ce3a1abc81a9b5cd935a224dae79b7076268858fe88c6d47d7144104c8ab13cea71011346730561df720fc9def02ce6b7ad09724838803bd9bff56a3ce04
+doccontainersize 402244
+doccontainerchecksum 1823b524c64e3e1b2d3cc9fc59a3402f2ec89b50046bcf114605bb63a4179065a3293ac3367fae40e09b83f3ddc9c15eff17a9ed97c3abe088a70262d0d74948
docfiles size=500
doc.html
texmf-dist/doc/man/man1/fmtutil-sys.1
@@ -331492,7 +331492,7 @@ catalogue-version 0.3.1
name witharrows
category Package
-revision 58120
+revision 61449
shortdesc "Aligned" math environments with arrows for comments
relocated 1
longdesc This package provides an environment WithArrows which is
@@ -331502,18 +331502,18 @@ longdesc the alignment. These arrows are usually used to give
longdesc explanations concerning the mathematical calculus presented.
longdesc The package requires the following other LaTeX packages: expl3,
longdesc footnote, l3keys2e, tikz, and xparse.
-containersize 14596
-containerchecksum 75f87cfce4089e02f5e1023ebd1f66c0f9ab62932c2fbb7edb8a63948e31efab3a3418b946db7270e6ea88e6536525db5d191f904f5d7ecb0e8f3cdfaea743b6
-doccontainersize 916488
-doccontainerchecksum b22081b8ae14217f4a58f71507314e3bdc50659e6fff761cb1648c8ea03819182a0d4d30122456e4c5d24e307fb301d52eb37e092b8add0b698dacd026e6f5d9
-docfiles size=270
+containersize 14612
+containerchecksum 0b597999e6289943f860db1f280df57debd1a4830768f6a93f41e4a3e1cf3595807d6091a32a4d15c5f7d71d41987c787d7a65bf69978b9630a75882aff5115b
+doccontainersize 949360
+doccontainerchecksum 6da6379637880005527d00dfe48730b1f1616a70181de2e1936ad4d0eaa8d3215f1b7c64ae0a799d16c216417fadce5050dc5314fab5c7632bb331f1b5d1a4a2
+docfiles size=277
RELOC/doc/generic/witharrows/README.md details="Readme"
RELOC/doc/generic/witharrows/witharrows-french.pdf details="Package documentation (French)" language="fr"
RELOC/doc/generic/witharrows/witharrows-french.tex
RELOC/doc/generic/witharrows/witharrows.pdf details="Package documentation (English)"
RELOC/doc/generic/witharrows/witharrows.tex
srccontainersize 52676
-srccontainerchecksum fdde37e183614ffe887b7813db7d09ebd7586e73c4e54c7eeffaa4daa48e23f2f958306f2547bd2b683343b883b3d26f5f9779b9cbf2e755f8b265678b826c9a
+srccontainerchecksum a6012de14f0cbdfb08b16a9eb85d23846ea518b701f9b92c292897fea3289d69829d8ab5bf056eb8fa3dec470071ca42861b4ff18c7662b0780c55e758ffa828
srcfiles size=70
RELOC/source/generic/witharrows/witharrows.dtx
RELOC/source/generic/witharrows/witharrows.ins
@@ -331521,8 +331521,8 @@ runfiles size=24
RELOC/tex/generic/witharrows/witharrows.sty
catalogue-ctan /macros/generic/witharrows
catalogue-license lppl1.3
-catalogue-topics maths maths-syseqn pgf-tikz expl3
-catalogue-version 2.6c
+catalogue-topics maths maths-syseqn pgf-tikz macro-gen expl3
+catalogue-version 2.6d
name wnri
category Package
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
index 6d422e6d38..8f0cac0f31 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
@@ -1 +1 @@
-573474ec470a2a64f368afeb1f51028e texlive.tlpdb
+61e814f74e9d56d9dc43e58ea5768e25 texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
index ed3616a456..c7e2ef5db9 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
@@ -1 +1 @@
-4ed81358a52a87818df70b82c1cb2cefa5b03eedaa44af3c6a196d9bf4159f2ea4fb3b59a7b5241e0ab6b4c3fa50b55c7fb77d6961ba4d7bd8f974e8358ef458 texlive.tlpdb
+9d8170f1ae973a407f51391e88acc59b008e71b22a6e50ed103b55867c4d99017072b47bed4459dd2f07a1fb5e3a481f7cfa378e01bd21ebd4b74eae8f8989d2 texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
index 527b959cac..e23c89ae08 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-----
-iQEcBAEBCgAGBQJhzQNXAAoJEEzhh34ZQ4xwxS4H+QFu0r4SoHTqq0N6p2RKecoD
-WBbsOqHDS3jzsxPnlH2Oeh5un6Mz3BtpS7qyzp90hNNwA7oXefe7ms6gEFyyQdXW
-r0fnmSgLQRddhrAZE340UFkn+vighXVZLopS15vbprpZ9ZZjEaGIkvlJlYXEI6M5
-jkekiw7uZTuxc/KjsLYkoKEfftoPr05JusX6LEkifv7gS5fVac4QZN3FopxpHwGm
-nEvtBrEQA9KJWJ5kBRg6uIffi1RYiCLxdkk/UEf8FBGh/fii6HGiIEWe6IaO6Qk4
-0r9AUBr68MP5BtA3PV1ANsJqbMyFSm2Ao8GxSoZRDvFXxdIgyaQUM8l6LDPpTvo=
-=uI+W
+iQEcBAEBCgAGBQJhzlRjAAoJEEzhh34ZQ4xwLqYH/1C4CadoLDggEl5p0hkk6h0d
+CHyfY1kmhcC4X/n78J1GHszJZZpgXZPTzb2jvUz3v/97vkkYVWQjnctzeiLZzh4J
+zeVechVr4e0JlJjxqk9LCglyB7yKwDqANYNHlAprgG2GHDFS3X03b4ViT+x1U6WH
+AbqEllyIUM8U09r7u20iQ5/LQwd2PTIi4OIgLI+kmdpC6fidrci9Ke+MAgr9ItnP
+Tbov3Ps24pdFpkdPfq8bmfMHHgnEgvLMuoOtVBZpWwSSdibCyMU0wqLlC9+PsDVC
+a5xsVv3EaOtHKNhLMFkNWiXiVrn/3TdSGf0cMBR4uX0yjg2r59BwJp0oN8cPryo=
+=ufBK
-----END PGP SIGNATURE-----
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
index 33a1f1275e..b9986e8d47 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
Binary files differ
diff --git a/systems/win32/miktex/tm/packages/next/pr.ini b/systems/win32/miktex/tm/packages/next/pr.ini
index a3b60b6da4..e16419ab99 100644
--- a/systems/win32/miktex/tm/packages/next/pr.ini
+++ b/systems/win32/miktex/tm/packages/next/pr.ini
@@ -1,13 +1,13 @@
[repository]
-date=1640899128
+date=1640985625
lastupd=miktex-arctrl-bin-2.9 miktex-arctrl-bin-x64-2.9 miktex-asymptote-bin-2.9 miktex-asymptote-bin-x64-2.9 miktex-autosp-bin-2.9 miktex-autosp-bin-x64-2.9 miktex-axohelp-bin-2.9 miktex-axohelp-bin-x64-2.9 miktex-bibarts-bin-2.9 miktex-bibarts-bin-x64-2.9 miktex-bibtex-bin-2.9 miktex-bibtex-bin-x64-2.9 miktex-bibtex8bit-bin-2.9 miktex-bibtex8bit-bin-x64-2.9 miktex-bzip2-bin-2.9 miktex-bzip2-bin-x64-2.9 miktex-cairo-bin-2.9 miktex-cairo-bin-x64-2.9 miktex-chktex-bin-2.9 miktex-chktex-bin-x64-2.9
-lstdigest=e7c3731d08fc40e91320f98dd349aee4
+lstdigest=1edb212d4d86db35a32dc7fe097ab1f4
numpkg=5157
relstate=next
-version=8034
+version=8035
;;;;This configuration file is signed by a MiKTeX maintainer. The signature follows.
;;;;-----BEGIN MIKTEX SIGNATURE-----
-;;;; signature/miktex: D7/wFI9ChzDEqWg96nLTpD266JrTOG7IGhR/8n9juVCwgzj55czOpzYrYnm5YdEC94NOABBn7d8spx+nawZUXbZguvJVbatUS19uDg0F845jwYle1q4xDQPeAeavO88WtbMy9FQr1Z1eWP4sos30IHeINxY65HLj0iilIPq225QSrjEltiqdx4RP67O53wiXdNf831CfLcW5Kaqa35TSsO+pkZKUjJY8Z4r3jh89tB9OGaxvM2vkFck4Bgdt/NQgLDdWwOeamjHrezm4VDyzutUtAL/9X4sCmDwVH2dVYscNthhX7bFtjKV2p6zbh/z2FQBJ4V+zM0wu3fWwmVewig==
+;;;; signature/miktex: JQXRpxt/LyxF+WzAxbrbk4lUxp1UDHU1KHeXeeCvgyES79STKJWSEMBEhyDEOHCSlIfhC1uO2xULHAXNVupgdv+VBMfLKL6wego5B3WjfbyciZA+nBnP44ErBg0ZDuh1cp6+9C7uLZgh+wJ4gxsKItQhxwtArXilqyNFIdyOz3fRyv1dW5+gBMzSoSNZa7gNaDLtFyLUTbqdCvuS/mGBJZ+6e15XumyMk8TUSEKHI3cAjoSp4fyoUONpL9R+Fhk1KXXyJtkvaqOVmipRXO69NW6OM8/rzDFGZt3z2mb8yN/GyUNW+92rTh76aOKto/RaiGic5IDHedm2BgSd+QIhIg==
;;;;-----END MIKTEX SIGNATURE-----
diff --git a/systems/win32/miktex/tm/packages/pr.ini b/systems/win32/miktex/tm/packages/pr.ini
index 010e535d32..4fb9c11b7f 100644
--- a/systems/win32/miktex/tm/packages/pr.ini
+++ b/systems/win32/miktex/tm/packages/pr.ini
@@ -1,13 +1,13 @@
[repository]
-date=1640898674
+date=1640985125
lastupd=dvipdfmx glyphlist ptex-fontmaps miktex-misc ptex-fontmaps__source arara arara__doc arara__source autopuncitems autopuncitems__doc autopuncitems__source beaulivre beaulivre__doc beaulivre__source biblatex-spbasic biblatex-spbasic__doc biblatex-spbasic__source colorist colorist__doc colorist__source
-lstdigest=1d25c7bef074bc51d094a81658b38100
+lstdigest=273fb81bc0c95289c93c726fbd597e90
numpkg=5155
relstate=stable
-version=8034
+version=8035
;;;;This configuration file is signed by a MiKTeX maintainer. The signature follows.
;;;;-----BEGIN MIKTEX SIGNATURE-----
-;;;; signature/miktex: BAHKkVR3cSGaoKEuapsSxKTptM+GwZ84cx25VoXfCnRPu1MeHyhjwXHIhX110IUQRtEgy1/7uIAGf8y7XmFmvs7ztuJwOyPhIYdutC/A+LD0g4SzhYtunMsgU5Gha+qgSStQEZU+5Ia79BXVRg3TtAbTskuhd0raSeBmPkq1ZVoIuzDIV4YPWP/PqFXzSRD6V7GDXfaIR/n33PgTG4YK44sjNe36d1LmlkdMsc+8gIIqfxi0NWuLM9GBx8M1IrSgE0G8iHKR4+KIMzqdmy87q7N3/PIpbGgT+AhDc7Jj0O/NTJg/tT5q8uBJomDyVMWGe2xDC1EtrQdcHiXwYnXvnQ==
+;;;; signature/miktex: A0/rRVmRMQjXydpfgMtzssCyhj7NK+RiIci/Kzc62NcZ2b0q349eH7Sz3iQgtCU5Nv99dFe8zHhpVec2OMqnNBQ5VmUYkL/2gUI64uyndVizDaLRA6MNPgTkxl7ZJPV1Zgz1mh3DQwswN42WEfIJOZQqyKojF92EBv4ou97UuxtGLPZUNUaG4blfu+JopJw/3nfLziTwYQi98DiDcJ2MAjPdzhSDu1dA7hChRPB/XnUtLbJr4Fqs/wAIN5dQY9MzaaQqLUdt8TymQHI7Q970Zh6AAssO/M7bMpQ0dwYPOWwu2KOZKT/NF+7VqOv0pXN9Wq0bJwbMPMTI0pCN1gO/Iw==
;;;;-----END MIKTEX SIGNATURE-----