summaryrefslogtreecommitdiff
path: root/systems
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2021-05-07 03:01:25 +0000
committerNorbert Preining <norbert@preining.info>2021-05-07 03:01:25 +0000
commitc92d9953347e3bdebc5243c67cf012a2f7a60fb6 (patch)
tree808a0ad402713257a48445f97e662786d95207ee /systems
parent25f20b6d8ccd4edcdfec23c1a3c908516076ee06 (diff)
CTAN sync 202105070301
Diffstat (limited to 'systems')
-rw-r--r--systems/texlive/tlnet/tlpkg/TeXLive/TLConfig.pm13
-rw-r--r--systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm12
-rw-r--r--systems/texlive/tlnet/tlpkg/TeXLive/TLPOBJ.pm6
-rw-r--r--systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm14
-rw-r--r--systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl8
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb181
-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.xzbin2302228 -> 2301796 bytes
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/da.po20
-rw-r--r--systems/win32/miktex/tm/packages/next/pr.ini8
-rw-r--r--systems/win32/miktex/tm/packages/pr.ini8
-rw-r--r--systems/win32/w32tex/ChangeLog34
14 files changed, 186 insertions, 136 deletions
diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLConfig.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLConfig.pm
index 4d5bc62759..99b4a0f68e 100644
--- a/systems/texlive/tlnet/tlpkg/TeXLive/TLConfig.pm
+++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLConfig.pm
@@ -1,4 +1,4 @@
-# $Id: TLConfig.pm 58938 2021-04-21 21:26:24Z karl $
+# $Id: TLConfig.pm 59097 2021-05-06 18:08:29Z karl $
# TeXLive::TLConfig.pm - module exporting configuration values
# Copyright 2007-2021 Norbert Preining
# This file is licensed under the GNU General Public License version 2
@@ -6,7 +6,7 @@
package TeXLive::TLConfig;
-my $svnrev = '$Revision: 58938 $';
+my $svnrev = '$Revision: 59097 $';
my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown";
sub module_revision { return $_modulerevision; }
@@ -125,10 +125,13 @@ if ($^O =~ /^MSWin/i) {
our @AcceptedFallbackDownloaders = qw/curl wget/;
our %FallbackDownloaderProgram = ( 'wget' => 'wget', 'curl' => 'curl');
our %FallbackDownloaderArgs = (
- 'curl' => ['--user-agent', 'texlive/curl', '--retry', '4', '--retry-delay', '5',
- '--fail', '--location',
- '--connect-timeout', "$NetworkTimeout", '--silent', '--output'],
+ 'curl' => ['--user-agent', 'texlive/curl',
+ '--retry', '4', '--retry-delay', '4',
+ '--connect-timeout', "$NetworkTimeout",
+ '--insecure',
+ '--fail', '--location', '--silent', '--output'],
'wget' => ['--user-agent=texlive/wget', '--tries=4',
+ '--no-check-certificates',
"--timeout=$NetworkTimeout", '-q', '-O'],
);
# the way we package things on the web
diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm
index c299c8c2dd..8b4ffeae29 100644
--- a/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm
+++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm
@@ -1,12 +1,12 @@
-# $Id: TLPDB.pm 55126 2020-05-13 17:27:10Z karl $
+# $Id: TLPDB.pm 59098 2021-05-06 20:21:11Z karl $
# TeXLive::TLPDB.pm - tlpdb plain text database files.
-# Copyright 2007-2020 Norbert Preining
+# Copyright 2007-2021 Norbert Preining
# This file is licensed under the GNU General Public License version 2
# or any later version.
package TeXLive::TLPDB;
-my $svnrev = '$Revision: 55126 $';
+my $svnrev = '$Revision: 59098 $';
my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown";
sub module_revision { return $_modulerevision; }
@@ -98,7 +98,8 @@ use TeXLive::TLConfig qw($CategoriesRegexp $DefaultCategory $InfraLocation
use TeXLive::TLCrypto;
use TeXLive::TLPOBJ;
use TeXLive::TLUtils qw(dirname mkdirhier member win32 info log debug ddebug
- tlwarn basename download_file merge_into tldie system_pipe);
+ tlwarn basename download_file merge_into tldie
+ system_pipe);
use TeXLive::TLWinGoo;
use Cwd 'abs_path';
@@ -424,7 +425,8 @@ sub writeout {
}
my $fd = (@_ ? $_[0] : STDOUT);
foreach (sort keys %{$self->{'tlps'}}) {
- ddebug("writeout: tlpname=$_ ", $self->{'tlps'}{$_}->name, "\n");
+ TeXLive::TLUtils::dddebug("writeout: tlpname=$_ ",
+ $self->{'tlps'}{$_}->name, "\n");
$self->{'tlps'}{$_}->writeout($fd);
print $fd "\n";
}
diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLPOBJ.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLPOBJ.pm
index d99f36d015..cc41b4ea01 100644
--- a/systems/texlive/tlnet/tlpkg/TeXLive/TLPOBJ.pm
+++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLPOBJ.pm
@@ -1,12 +1,12 @@
-# $Id: TLPOBJ.pm 58384 2021-03-15 04:22:12Z preining $
+# $Id: TLPOBJ.pm 59098 2021-05-06 20:21:11Z karl $
# TeXLive::TLPOBJ.pm - module for using tlpobj files
-# Copyright 2007-2019 Norbert Preining
+# Copyright 2007-2021 Norbert Preining
# This file is licensed under the GNU General Public License version 2
# or any later version.
package TeXLive::TLPOBJ;
-my $svnrev = '$Revision: 58384 $';
+my $svnrev = '$Revision: 59098 $';
my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown";
sub module_revision { return $_modulerevision; }
diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm
index 8b437b1b0b..0d86a1fdc0 100644
--- a/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm
+++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm
@@ -1,4 +1,4 @@
-# $Id: TLUtils.pm 59044 2021-05-01 22:05:56Z karl $
+# $Id: TLUtils.pm 59098 2021-05-06 20:21:11Z karl $
# TeXLive::TLUtils.pm - the inevitable utilities for TeX Live.
# Copyright 2007-2021 Norbert Preining, Reinhard Kotucha
# This file is licensed under the GNU General Public License version 2
@@ -6,7 +6,7 @@
package TeXLive::TLUtils;
-my $svnrev = '$Revision: 59044 $';
+my $svnrev = '$Revision: 59098 $';
my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown";
sub module_revision { return $_modulerevision; }
@@ -656,8 +656,8 @@ sub run_cmd {
=item C<system_pipe($prog, $infile, $outfile, $removeIn, @extraargs)>
-Runs C<$prog> with C<@extraargs> redirecting stdin from C<$infile>, stdout to C<$outfile>.
-Removes C<$infile> if C<$removeIn> is true.
+Runs C<$prog> with C<@extraargs> redirecting stdin from C<$infile>,
+stdout to C<$outfile>. Removes C<$infile> if C<$removeIn> is true.
=cut
@@ -2394,7 +2394,7 @@ sub untar {
# quoting issues.
# so fall back on chdir in Perl.
#
- debug("unpacking $tarfile in $targetdir\n");
+ debug("TLUtils::untar: unpacking $tarfile in $targetdir\n");
my $cwd = cwd();
chdir($targetdir) || die "chdir($targetdir) failed: $!";
@@ -2750,7 +2750,7 @@ sub download_file {
return \*RETFH;
} else {
if (-r $filetoopen) {
- copy ($filetoopen, $par);
+ copy ("-f", $filetoopen, $dest);
return 1;
}
return 0;
@@ -4585,7 +4585,7 @@ sub mktexupd {
}
-=item C<check_sys_user_mode($user,$sys,$tmfc, $tmfsc, $tmfv, $tmfsv)>
+=item C<setup_sys_user_mode($user,$sys,$tmfc, $tmfsc, $tmfv, $tmfsv)>
=cut
diff --git a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
index e148e572b9..8e651c1d21 100644
--- a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
+++ b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
@@ -14,7 +14,6 @@ $mirrors = {
},
'Asia' => {
'China' => {
- 'https://mirror.bjtu.edu.cn/CTAN/' => 1,
'https://mirrors.aliyun.com/CTAN/' => 1,
'https://mirrors.bfsu.edu.cn/CTAN/' => 1,
'https://mirrors.cqu.edu.cn/CTAN/' => 1,
@@ -48,9 +47,8 @@ $mirrors = {
},
'Korea' => {
'http://ftp.ktug.org/tex-archive/' => 1,
- 'https://cran.asia/tex/' => 1,
'https://ftp.harukasan.org/CTAN/' => 1,
- 'https://mirror.kakao.com/CTAN/' => 1,
+ 'https://ftp.kaist.ac.kr/pub/tex-archive/' => 1,
'https://mirror.navercorp.com/CTAN/' => 1,
'https://mirror.yongbok.net/ctan/' => 1,
},
@@ -118,6 +116,9 @@ $mirrors = {
'Hungary' => {
'https://mirror.szerverem.hu/ctan/' => 1,
},
+ 'Italy' => {
+ 'https://ctan.mirror.garr.it/mirrors/ctan/' => 1,
+ },
'Netherlands' => {
'https://ftp.snt.utwente.nl/pub/software/tex/' => 1,
'https://mirror.koddos.net/CTAN/' => 1,
@@ -155,6 +156,7 @@ $mirrors = {
},
'Sweden' => {
'https://ftp.acc.umu.se/mirror/CTAN/' => 1,
+ 'https://ftpmirror1.infania.net/mirror/CTAN/' => 1,
},
'Switzerland' => {
'https://mirror.foobar.to/CTAN/' => 1,
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb b/systems/texlive/tlnet/tlpkg/texlive.tlpdb
index 563f9c76f3..262ba03f93 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb
@@ -26,11 +26,11 @@ depend container_split_src_files/1
depend frozen/0
depend minrelease/2016
depend release/2021
-depend revision/59092
+depend revision/59108
name 00texlive.image
category TLCore
-revision 59079
+revision 59098
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
@@ -4383,7 +4383,7 @@ depend setting_available_architectures:aarch64-linux amd64-freebsd amd64-netbsd
name 00texlive.installer
category TLCore
-revision 59083
+revision 59094
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
@@ -37497,7 +37497,7 @@ catalogue-version 1.7
name biblatex-gb7714-2015
category Package
-revision 58753
+revision 59101
shortdesc A BibLaTeX implementation of the GBT7714-2015 bibliography style for Chinese users
relocated 1
longdesc This package provides an implementation of the GBT7714-2015
@@ -37505,17 +37505,17 @@ longdesc bibliography style. This implementation follows the
longdesc GBT7714-2015 standard and can be used by simply loading
longdesc BibLaTeX with the appropriate option. A demonstration database
longdesc is provided to show how to format input for the style.
-containersize 39800
-containerchecksum c4bd497d3ea4c27fe8f9382ac54f865da57576b08fadd28e10d93a7dbabb935a877e4c45058f4055dfe319e3e29df3995b8fce7496f12765b9c1c5120943c6a5
-doccontainersize 1602620
-doccontainerchecksum b88722523465025454afa64841f00df9cb8cdfd9aaa81dfa75cdcbc9a7362f980b9d51d874dccda310a0afe5f25f1ad9955dc6ae6317a4d0bba2deb47fda02a5
-docfiles size=569
+containersize 40548
+containerchecksum 77e698ff10013102ef99be65711b8977b67a0a96528c1ff2219827f052ca304f2e5e26ad9414a4c65f2048f302f3f9d1e297bc9be209cb6eb26d7e717c4bda0c
+doccontainersize 1616860
+doccontainerchecksum f61e22f663bf2690a34b3640f4ef3ad175a64cdada2090b1d46ef9df5a0f79eef6d61f105f417b09da0e7069fa20af891ac7393916e2040a0a094dbdc5df3d9c
+docfiles size=571
RELOC/doc/latex/biblatex-gb7714-2015/README.md details="Readme"
RELOC/doc/latex/biblatex-gb7714-2015/biblatex-gb7714-2015-preamble.tex
RELOC/doc/latex/biblatex-gb7714-2015/biblatex-gb7714-2015.pdf details="Package documentation (Chinese)" language="zh"
RELOC/doc/latex/biblatex-gb7714-2015/biblatex-gb7714-2015.tex
RELOC/doc/latex/biblatex-gb7714-2015/example.bib
-runfiles size=162
+runfiles size=164
RELOC/tex/latex/biblatex-gb7714-2015/chinese-erj.bbx
RELOC/tex/latex/biblatex-gb7714-2015/chinese-erj.cbx
RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015-gbk.def
@@ -37529,9 +37529,9 @@ runfiles size=162
RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015mx.cbx
catalogue-contact-repository https://github.com/hushidong/biblatex-gb7714-2015
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-gb7714-2015
-catalogue-license lppl1.3
+catalogue-license lppl1.3c
catalogue-topics biblatex chinese
-catalogue-version 1.0x
+catalogue-version 1.0y
name biblatex-german-legal
category Package
@@ -70935,18 +70935,18 @@ catalogue-topics documentation
name comprehensive
category Package
-revision 55667
+revision 59099
shortdesc Symbols accessible from LaTeX
relocated 1
-longdesc Over 14000 symbols are listed as a set of tables. The tables of
+longdesc Over 18000 symbols are listed as a set of tables. The tables of
longdesc symbols are ordered in a logical way (the document begins with
longdesc a 'frequently requested symbols' list), the aim being to make
longdesc the document a convenient way of looking up symbols.
containersize 500
-containerchecksum 57046d6981bcda498ff025644fe915ce67a01b60c6fe58431060754e801b51b9332eb718fca263fd39b9b728b9db6702d83e227d8ed579c03d58f6d653c76a0d
-doccontainersize 17436548
-doccontainerchecksum a2c4c855c0321e2d57d430f6788e762ab1bc8d51a5513fbbf0f6f4b53874d8816b877d9e4d5f3222e1014b8ea8384ff16a9d52742e9bebfc7932e08ab170e53e
-docfiles size=4929
+containerchecksum 9c414012e570fac3a3aee90cc7b6983d6791dcdcda0709722dc5354068815b2407fd4ed9196b8e961164698597324b9da8ff85b741eca86a4962701e0ce40d1a
+doccontainersize 29910680
+doccontainerchecksum 24c7c0fdda00f5f5dd7c66c383d95a4fd99b41c5470482d1e53e8f061796cab5955b8043f80a2a57c9f045765ff1d10f0c7b48b10705a2677b80b67d01dafa96
+docfiles size=8199
RELOC/doc/latex/comprehensive/README details="Package README"
RELOC/doc/latex/comprehensive/README.TEXLIVE
RELOC/doc/latex/comprehensive/SYMLIST details="Plain text list of symbol commands"
@@ -70971,6 +70971,7 @@ docfiles size=4929
RELOC/doc/latex/comprehensive/source/makefakefdsymbol
RELOC/doc/latex/comprehensive/source/makefakestarfont
RELOC/doc/latex/comprehensive/source/makefakestix
+ RELOC/doc/latex/comprehensive/source/makefakeworldflags
RELOC/doc/latex/comprehensive/source/makerawtables
RELOC/doc/latex/comprehensive/source/symbols.ist
RELOC/doc/latex/comprehensive/source/symbols.tex
@@ -70980,7 +70981,7 @@ docfiles size=4929
catalogue-ctan /info/symbols/comprehensive
catalogue-license lppl1.3
catalogue-topics font-index ref-latex
-catalogue-version 13.0
+catalogue-version 14.0
name computational-complexity
category Package
@@ -98584,21 +98585,21 @@ catalogue-topics notes editorial
name easybook
category Package
-revision 59076
+revision 59102
shortdesc Typeset Chinese books or notes
relocated 1
longdesc Easybook is a minimalist style template based on the ctexbook
longdesc book document class.
-containersize 12744
-containerchecksum 647118c8be359aea6456753aaef286482291b246a7fc0585c25e172f8da17a6257aec5e346e933348ac1b598bdf02725d1eaaf73cc92b65d65d957522a515634
-doccontainersize 478208
-doccontainerchecksum 61a972ce2d217bbb47879e466561c33691544ff3ca5db337a45491d1e61610e3975b0643c1a8532d0eaa1270025b51c823053b976be614bcadc620eda0dd9017
-docfiles size=118
+containersize 12944
+containerchecksum 36efe1825db4316519f20420a9869ec72786afe322688f88115e6493606d3d4078f52b57299c87357fc94776c454c04aa0c6bc7dfac32f964b1b0bd2fb8a50f7
+doccontainersize 480008
+doccontainerchecksum c9a889024d0f0f175206197ddb019d38d514beb0d53da3688977b95c7d3832e0e935ec8bfdc47690b0ade858f9d610c6e356b3e7fca98650363902e1273c1989
+docfiles size=119
RELOC/doc/latex/easybook/README.md details="Readme"
RELOC/doc/latex/easybook/easybook.pdf details="Package documentation" language="zh"
-srccontainersize 27668
-srccontainerchecksum 9e358bfb1b00a4fd94f210ad30771b6af8d260e46cdae082816c834f41c16b878d88002ae1b35d88bb8cb354fa478314d3e9a3bd5dc0cc7047c6eabfac1e1a07
-srcfiles size=29
+srccontainersize 28364
+srccontainerchecksum e94e5951436fdbb40d193a53bfee786192bad937d3509f53000dd825bb176bc5e757287fab2fdd3cbec2a9e7b52cb61f8e38a6d15a28f0d6441a62dd45d3e13a
+srcfiles size=30
RELOC/source/latex/easybook/easybook.dtx
RELOC/source/latex/easybook/easybook.ins
runfiles size=15
@@ -98608,7 +98609,7 @@ catalogue-contact-repository https://gitee.com/texl3/easybook
catalogue-ctan /macros/latex/contrib/easybook
catalogue-license cc-by-4
catalogue-topics book-pub class chinese expl3
-catalogue-version 1.25a
+catalogue-version 1.25c
name easyfig
category Package
@@ -124829,22 +124830,22 @@ catalogue-version 1.4a
name froufrou
category Package
-revision 58968
+revision 59103
shortdesc Fancy section separators
relocated 1
longdesc This package provides fancy separators, which are visual cues
longdesc that indicate a change of subject or context without actually
longdesc starting a new chapter or section.
-containersize 4036
-containerchecksum 8f6aec27e2d8cfeb0705cdafedcb741de6fd7ec656f422034bc771573951c8bc8b778e509de57c516b7adad6509fd52b87ee5ec01f77efb318ee1e374c5d2cb4
-doccontainersize 41820
-doccontainerchecksum 701b5021ff3b21ae1f65d59d01ce534c3efca07c09bab2ae22df5c37e1510a0c80c2abccd2d738acd0195cb218169293f36827078552a3b94c82c46d6be000da
-docfiles size=13
+containersize 4068
+containerchecksum 33efee00b38590de9510689730fa45f1123b5df05fae66fbdb4ffa740e8495309e75c75dba1c7d4d3b58ab7cc1a85d899654a27cc31f3b5eb983f512b5641db8
+doccontainersize 65564
+doccontainerchecksum 4b19469842e5dd7e0b852e531d2f99159acef4b8eb0cbaf3c03a510673a95896abdc2f80209ce164f71acca58c476d593a30449fcc05ae52851f78f76d6000bc
+docfiles size=19
RELOC/doc/latex/froufrou/LICENSE
RELOC/doc/latex/froufrou/README.md details="Readme"
RELOC/doc/latex/froufrou/froufrou.pdf details="Package documentation"
-srccontainersize 6256
-srccontainerchecksum d6cde8286592041c04157f222045082329023b6784677a8d587f63fc52f0af4e673b45a66a5756a29b4aae147f3a80c2e1b93faafc1268655431315a7808247e
+srccontainersize 6528
+srccontainerchecksum 4e06412734c22e9035b311771412e4221cadd00c693f13d78ca221b1e07e895f09cac9ec97c56be02aad4fdf7e7f6aee3e04585856b773e455efc499ad04d763
srcfiles size=5
RELOC/source/latex/froufrou/froufrou.dtx
RELOC/source/latex/froufrou/froufrou.ins
@@ -124853,9 +124854,9 @@ runfiles size=3
catalogue-contact-bugs https://gitlab.com/lago/froufrou/issues
catalogue-contact-repository https://gitlab.com/lago/froufrou
catalogue-ctan /macros/latex/contrib/froufrou
-catalogue-license lppl1.3
+catalogue-license lppl1.3c
catalogue-topics decoration
-catalogue-version 1.3.0
+catalogue-version 1.4.0
name frpseudocode
category Package
@@ -137274,7 +137275,7 @@ catalogue-version 0.01
name hvfloat
category Package
-revision 59069
+revision 59104
shortdesc Rotating caption and object of floats independently
relocated 1
longdesc This package defines a macro to place objects (tables and
@@ -137286,11 +137287,11 @@ longdesc \hvFloat{figure}{\includegraphics{rose}}{Caption}{fig:0}.
longdesc Options are provided to place captions to the right or left,
longdesc and rotated. Setting nonFloat=true results in placing the float
longdesc here.
-containersize 8364
-containerchecksum c57acb1f6b5b117e5728cfcc5a009d23d24fb31e1928eb220f0d63cd5f8b8e7e83f15f8e8fdd80f3f99a83a9f3e2bb088bf99f38868b985e0d9eea99feec9226
-doccontainersize 19073660
-doccontainerchecksum e2ef456032dea2e21e94e5e21d68a51b40d4f63a57d4ee2f91d0be5742816f9e538b1a08ff3507b3e4636c64ed0f32e4eb942886bc9378967b0da53e0428adc8
-docfiles size=5870
+containersize 8548
+containerchecksum 2db54315134572bf83c48863502d9c94fcb85329413622524f21543d7e7ae4ec7952ce2531c9c057200933bd10dd953792b4c6ecd68c2c6c3bae7e48b94e36b2
+doccontainersize 19151668
+doccontainerchecksum 12dce3b932ae81f967a2c630d1814381b6344543bef58cfdad7f063fd83c90b4f502dd0f43d340868b7beb73526209f1c2ccff771cc02547c001413fec5c1517
+docfiles size=5894
RELOC/doc/latex/hvfloat/CTAN.png
RELOC/doc/latex/hvfloat/Changes
RELOC/doc/latex/hvfloat/README details="Readme"
@@ -137299,6 +137300,9 @@ docfiles size=5870
RELOC/doc/latex/hvfloat/after1s1c.tex
RELOC/doc/latex/hvfloat/after2s2c.pdf
RELOC/doc/latex/hvfloat/after2s2c.tex
+ RELOC/doc/latex/hvfloat/capPos.ltx
+ RELOC/doc/latex/hvfloat/capPos.pdf
+ RELOC/doc/latex/hvfloat/capPos.tex
RELOC/doc/latex/hvfloat/default1s1c.pdf
RELOC/doc/latex/hvfloat/default1s1c.tex
RELOC/doc/latex/hvfloat/default1s2c.pdf
@@ -137406,7 +137410,7 @@ catalogue-also rotating
catalogue-ctan /macros/latex/contrib/hvfloat
catalogue-license lppl
catalogue-topics float box-manip
-catalogue-version 2.21
+catalogue-version 2.22
name hvindex
category Package
@@ -213658,7 +213662,7 @@ catalogue-topics font font-type1 font-decor
name nicematrix
category Package
-revision 58987
+revision 59105
shortdesc Improve the typesetting of mathematical matrices with PGF
relocated 1
longdesc This package is based on the package array. It creates PGF/TikZ
@@ -213670,26 +213674,26 @@ 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 etc. The package requires and loads l3keys2e, xparse, array,
longdesc amsmath, pgfcore, and the module shapes of PGF.
-containersize 28844
-containerchecksum acb3bea7fbf5c5693549dd5556addfe5695e3eda66d6d9db7de4fb41fd91f341a1ff8e61322ec30a4c3a726c602314502972f7d5223f71be556798fa2d86047c
-doccontainersize 1668768
-doccontainerchecksum 30b06ba14cb06e828858bb74f31b454a802ef21968cb9d887687fe9f294f6a562184fbe124cb936584b7ca76481fb8828fde796af0da117d88f6edefb63dbdc1
-docfiles size=457
+containersize 29296
+containerchecksum b0b2150e1971df7bdab1925a7f69a8d4a3a1a7828bfed2f15f35475ee7c38f3f0e3ef0c63c0c0818327118f7ce5f799984bf0bb170d793e5004d7b848faa20d6
+doccontainersize 1680940
+doccontainerchecksum 054a79e2233a88d0df6ee47ad5a1ec0581d65b1f8ab7aa9659238b8d6ee468e5b14bdd0e3e8411e2a98da51fd05b88b95bff2ada20ce18867abf5fc1ed77abd7
+docfiles size=460
RELOC/doc/latex/nicematrix/README.md details="Readme"
RELOC/doc/latex/nicematrix/nicematrix-french.pdf details="Package documentation in French" language="fr"
RELOC/doc/latex/nicematrix/nicematrix-french.tex
RELOC/doc/latex/nicematrix/nicematrix.pdf details="Package documentation"
-srccontainersize 98308
-srccontainerchecksum 68da52316a3494a9dd613f8e673e23c3c633576470d475637eb4db7d29ffebb604afe966ca9fc0ca89655621f815168070667ca0345a7d31b9bddbfff3d97e4f
-srcfiles size=149
+srccontainersize 99100
+srccontainerchecksum 0f7b0d7467d5c11e8be0dbe692c5da98244042f14bd4290a8b8db6465753bfc482976bc316d875fe177bab343e8c5a4778be9ac58f13c7b10302be7d039b6ed9
+srcfiles size=150
RELOC/source/latex/nicematrix/nicematrix.dtx
RELOC/source/latex/nicematrix/nicematrix.ins
-runfiles size=63
+runfiles size=65
RELOC/tex/latex/nicematrix/nicematrix.sty
catalogue-ctan /macros/latex/contrib/nicematrix
catalogue-license lppl1.3
catalogue-topics maths matrix pgf-tikz expl3
-catalogue-version 5.15
+catalogue-version 5.15a
name nicetext
category Package
@@ -236391,7 +236395,7 @@ catalogue-version 5.0
name pbalance
category Package
-revision 57161
+revision 59106
shortdesc Balance last page in two-column mode
relocated 1
longdesc This package balances the columns on the last page of a
@@ -236399,16 +236403,16 @@ longdesc two-column document. If the page is "simple" (no footnotes,
longdesc floats, or marginpars), is uses the balance package; otherwise,
longdesc it uses \enlargethispage to make the left column shorter,
longdesc balancing the columns.
-containersize 5724
-containerchecksum 7db75e950aca473dffc3d3efb419bbe33b5f04d1a0295a73de3d7385883d576f46bf377554ffaef44608cc8c6df3f3594bd0a0e5ed7ca649c7ced5c5834192db
-doccontainersize 241320
-doccontainerchecksum 98828ffca4f1e4dab5b51e45028058cff1af38cedb05f1b0a201bff1ddb508374da6fb0d77ff4d14bdef6ec04a468435dd9870ce0f1e34685fb982f21c982e79
-docfiles size=61
+containersize 5900
+containerchecksum d581197f756e58499058618fa63f735c955612d5bea3e80d0853611f26187deae9e046f0de8c2823c445c3f8b30bc14f3f8649b613fcdc43825ceecbfbac2220
+doccontainersize 244384
+doccontainerchecksum 0db997d5d9ca1e08a76e84418c4e822400edba8b0b1294969eaa57d3d628dd0aa093ef67adddc6be3444ca57e6101da87568777682a885b5f99c5ac8e83624e4
+docfiles size=62
RELOC/doc/latex/pbalance/LICENSE
RELOC/doc/latex/pbalance/README.md details="Readme"
RELOC/doc/latex/pbalance/pbalance.pdf details="Package documentation"
-srccontainersize 11568
-srccontainerchecksum 21236f5d7cc9a64472d9f214777331d3b230773d134b0ed5a83d1a3dd21c2d4a76df78f42824012d4edaabfeab612684fa2577bac3bd4070ed2b5956d19272dd
+srccontainersize 11864
+srccontainerchecksum 3f14551ea9d27a970220adf8ce88d27628d3d4b1e91d3358691af53fb69576aea36a5bfea98a636ddebb4d74fc05c64da9734d93d78bad48e9e8aa64d4c39df0
srcfiles size=11
RELOC/source/latex/pbalance/pbalance.dtx
RELOC/source/latex/pbalance/pbalance.ins
@@ -236418,9 +236422,9 @@ catalogue-also flushend
catalogue-contact-bugs https://gitlab.com/lago/pbalance/issues
catalogue-contact-home https://gitlab.com/lago/pbalance
catalogue-ctan /macros/latex/contrib/pbalance
-catalogue-license lppl1.3
+catalogue-license lppl1.3c
catalogue-topics multicol
-catalogue-version 1.0.1
+catalogue-version 1.1.0
name pbibtex-base
category Package
@@ -289889,7 +289893,7 @@ binfiles arch=x86_64-solaris size=1
name tex4ht
category Package
-revision 59071
+revision 59107
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
@@ -289904,10 +289908,10 @@ longdesc restricted-syntax systems such as hyperlatex and gellmu. Note
longdesc that CTAN no longer holds the definitive sources of the
longdesc package: see the 'Readme' file.
depend tex4ht.ARCH
-containersize 906804
-containerchecksum 7b4b31d69cceb108946f27a549e5ccee1657dba4ba1733e7b271544ec6c457d2e19b83aa5468e26f0b81992b2a5f22b251de7867a658f82b3214ded4f29077bb
+containersize 904660
+containerchecksum 29c54f0b0bc368f3d6427a4de5b4b334505d4813803c6924482f8446505ffb3a6270cfaf4763d81264b6b3ed6349f231788a1c982cc50b16bce11c071edbfb20
doccontainersize 136384
-doccontainerchecksum eadf79734ea3df71f2f6f0d8a901c77bc1a9616a437424163bff2c7f1c6b6c6fa76dff71fb0b591d145a3862a7db1596308187cba4706ec45e0f19a3cc62e38b
+doccontainerchecksum bf30694d1117f5b899308ed9f40d1aa2d90655637868909ea91a89889551c88195ff501813ed6c9a09ea6e1539f562e49ff7f3929b645b9588b379a317ca9f12
docfiles size=260
texmf-dist/doc/generic/tex4ht/Makefile
texmf-dist/doc/generic/tex4ht/README details="Readme"
@@ -289979,9 +289983,9 @@ docfiles size=260
texmf-dist/doc/generic/tex4ht/mn56.html
texmf-dist/doc/generic/tex4ht/mn5x.png
texmf-dist/doc/generic/tex4ht/mn6x.png
-srccontainersize 1204676
-srccontainerchecksum ca78387d73af725b7965d07dce7f860687eff64e91415edcb50d4c61362286dbcac0305b30a2c508ec992922bb10466f9a777e4e2c4f215368255e360c2e8026
-srcfiles size=3622
+srccontainersize 1211764
+srccontainerchecksum 9d652655a57e6caa4c6dbba232136ffbff604ed3a416dfbc462c2a0c3c01d809d8bd45859123f94f9c28a8eb8a0e5b611055400b3cab5ea2eeb1e4d644fde7a1
+srcfiles size=3623
texmf-dist/source/generic/tex4ht/ChangeLog
texmf-dist/source/generic/tex4ht/Makefile
texmf-dist/source/generic/tex4ht/README
@@ -290053,7 +290057,7 @@ srcfiles size=3622
texmf-dist/source/generic/tex4ht/tex4ht-xhtmml-xtpipes.tex
texmf-dist/source/generic/tex4ht/wripro.tex
texmf-dist/source/generic/tex4ht/xtpipes.tex
-runfiles size=9795
+runfiles size=9801
texmf-dist/scripts/tex4ht/ht.sh
texmf-dist/scripts/tex4ht/htcontext.sh
texmf-dist/scripts/tex4ht/htcopy.pl
@@ -290223,6 +290227,9 @@ runfiles size=9795
texmf-dist/tex/generic/tex4ht/floatflt.4ht
texmf-dist/tex/generic/tex4ht/floatpag.4ht
texmf-dist/tex/generic/tex4ht/foils.4ht
+ texmf-dist/tex/generic/tex4ht/fontawesome5-hooks.4ht
+ texmf-dist/tex/generic/tex4ht/fontawesome5-utex-helper-hooks.4ht
+ texmf-dist/tex/generic/tex4ht/fontawesome5.4ht
texmf-dist/tex/generic/tex4ht/fontmath.4ht
texmf-dist/tex/generic/tex4ht/fontspec-4ht.lua
texmf-dist/tex/generic/tex4ht/fontspec-hooks.4ht
@@ -290334,6 +290341,7 @@ runfiles size=9795
texmf-dist/tex/generic/tex4ht/mdwtab.4ht
texmf-dist/tex/generic/tex4ht/memoir.4ht
texmf-dist/tex/generic/tex4ht/mempatch.4ht
+ texmf-dist/tex/generic/tex4ht/menukeys.4ht
texmf-dist/tex/generic/tex4ht/mex.4ht
texmf-dist/tex/generic/tex4ht/mfpic.4ht
texmf-dist/tex/generic/tex4ht/microtype.4ht
@@ -296762,6 +296770,7 @@ runfiles size=9795
texmf-dist/tex4ht/ht-fonts/unicode/ebg/ntxebgmia.htf
texmf-dist/tex4ht/ht-fonts/unicode/ec/eccc-uni.htf
texmf-dist/tex4ht/ht-fonts/unicode/erewMath/zutmia.htf
+ texmf-dist/tex4ht/ht-fonts/unicode/fontawesome5/fa5.htf
texmf-dist/tex4ht/ht-fonts/unicode/fourier-orns/futrorn.htf
texmf-dist/tex4ht/ht-fonts/unicode/futr-sup/futr-sup.htf
texmf-dist/tex4ht/ht-fonts/unicode/futrc9d/futrc9d.htf
@@ -299026,14 +299035,14 @@ docfiles size=539
name texlive-msg-translations
category TLCore
-revision 59050
+revision 59096
shortdesc translations of the TeX Live installer and TeX Live Manager
longdesc This package contains the translated messages of the TeX Live
longdesc installer and TeX Live Manager. For information on creating or
longdesc updating translations, see
longdesc http://tug.org/texlive/doc.html#install-tl-xlate.
-containersize 146428
-containerchecksum 55f1b16743b49bbc97a0a8749ede1850fdf8ebb133bb192b99d0d979a6097bf4feebb2121a5eebeea7579febea00014bae569b65592cc6a0b77cafd965767601
+containersize 146440
+containerchecksum 24fe985ecf667671f0ce8935c2547745aeb378eb22dd2b5a3cfedb6eb47075dde8631fffeba2adec45e07a43d6e9a5a8df02661c29b41fcedb5b22163d1cbbc7
runfiles size=364
tlpkg/translations/README
tlpkg/translations/cs.po
@@ -299095,7 +299104,7 @@ docfiles size=376
name texlive-scripts
category TLCore
-revision 59083
+revision 59094
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.
@@ -299103,10 +299112,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 107216
-containerchecksum 9b172ad7074c07c5295fbbc24afb21d45231b95a56c40cb0fa320c42f9b93120f0820396d24ffc4c67554c6b695b45731a6ecc1c5975f545e5a16c41ed5e53e4
+containersize 107244
+containerchecksum 9d9d9e6e0d0c55a3fc4363e52e9e9ffbe61cdf180594221a5764992d8df2448180e208442db995310d88d87a5404ad093d0ef5ecb9152f0e7515483e3959bf54
doccontainersize 218532
-doccontainerchecksum ea88cf467d8c67c754f83a547bdc9e50af029992d51f9a8c2ca23790dbe88244e0da79c5911086a799d11501638bccc9d86dffd754de10626340ec7ec0e39d3b
+doccontainerchecksum 12f14dc2e2e6e0d038afd11791f466e336cce9c1fa9f304c2f0cf4eba58c28b13ab237ee0903fe9fa4667ec0339e091bc7ada24d1fe34c44e7dbf55bc1fc2174
docfiles size=137
texmf-dist/doc/man/man1/fmtutil-sys.1
texmf-dist/doc/man/man1/fmtutil-sys.man1.pdf
@@ -309368,16 +309377,16 @@ catalogue-topics graphics-prep
name tlmgr-intro-zh-cn
category Package
-revision 59087
+revision 59100
shortdesc A short tutorial on using tlmgr in Chinese
relocated 1
longdesc This is a Chinese translation of the tlmgr documentation. It
longdesc introduces some of the common usage of the TeX Live Manager.
longdesc The original can be found in the tlmgrbasics package.
containersize 492
-containerchecksum 6c73e523aca2cd703812b2f0ebe009ca8be1b3e687517e1dd3af9ab03bfe042dfe4aaf0570c131e8d976e77b73fade2676b07062cd310700b7e2a2a17048c509
-doccontainersize 444372
-doccontainerchecksum c17b1125ebf88c0b17782da85a788a8679ceb19b00c82df6398c44847339ff037481c062ced8eb11f28c14908e4606c85e414dde85d388fd62a9ec69a65438bd
+containerchecksum a89c2f99ad63c8352462ef7139b36e8563e1db815dcb06bd2e0f8b96554c380b574f7d856aa6bffb3c972bd68e9505d7864d87cfb7bcfef1bdebacd10f14a96a
+doccontainersize 444724
+doccontainerchecksum 2b5a7672c600eb2f4cbfb2810090e4383a7032d851f35a74e36c75914d9813566603019f232715e2e39ab6d2f8a60273c01e5cbdcb345892b0bf8c99995e3d4d
docfiles size=131
RELOC/doc/support/tlmgr-intro-zh-cn/LICENSE
RELOC/doc/support/tlmgr-intro-zh-cn/README.md details="Readme" language="zh"
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
index 74b3055528..5aaa7114a8 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
@@ -1 +1 @@
-d24994076f9cfec49e87546f891eaf27 texlive.tlpdb
+52737cca3cb8c4a5ca1300b0c35f4fae texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
index 1de9ad17ce..25d3e869ac 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
@@ -1 +1 @@
-6d92391f00d0f45aae52b62c0c0413fffc2325cad476ecb4a68bee658c51c8de55dddff92aaf83bc68615ef09608d66f48f59398cdeb2f8e32f7b78323d71297 texlive.tlpdb
+11e2bd6bc5a252871327f8fa93bfc9f7755ee62fda3a3ccb40882cecdee19d2dd4c98a701431fc02faa95b4a3404f1f0ba2841d94632099fcdd6388ef2de7283 texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
index 39b0eecfed..5508a8431f 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-----
-iQEcBAEBCgAGBQJgky/YAAoJEEzhh34ZQ4xw6rwH/j9vw/EHESib1oc6V61Euqvx
-wFShXGGqbqbPVPdLnKrkZp1uVM/akYfvxXW4N8xqB6NFSaMMxpR/rAOcx5QTG/a9
-LiE4Pbme6EVIRLI45gE/cPj4f9JMStV1dWKn5U5LFRatumwDfRR8zZIMP63hCHUn
-HnA1JKUemX2lFTEryT5GU7wN+IaogYUVnOxWi669NXuM/LaDKmglSYGOAZA+crxU
-cbC63VsYf1yAVe6WyONSyg0CtKxrsrwCIsQNmBZXDWPq/DCV0mmLWooVaJpolAxq
-aXkwCDVPP7VvzEPUCNox953lX7Pgh2F2e39FYuSOyFpT64NgTKpKVh95+EZ9Z/4=
-=oBwe
+iQEcBAEBCgAGBQJglIFoAAoJEEzhh34ZQ4xwpuQH+QHVCwHd19l3kbbBvgJa7J76
+rFMErtb08HT8iY1fnNbScxapOojYNM330y7k8E+3vTqavmvBG/v0jRwnbCO8g7Ik
+mGhTCR6sTykYqHnIDFfAKID7eBF6m2FkdS0sK4lkI71F0tZmra4T56KVLJ9aqkL2
+8vLNWOrZ2NBtZw9TLSM5tOA1+NjZRQSn8FoeZeJFhfGPYgCFg8WJE/9qSFCnHCbE
+S3YBOV96cb335l9fGG+au5STrg0txzYCefOBeFYncMWZoNfy8+2+XtDwtXz8CZkP
+163bk2+IitEfU/kj4e3YunVJMynZs9mDEa+8ZMkYE0Zd9LJ4CKXW7kNW9R0jmdk=
+=BL0t
-----END PGP SIGNATURE-----
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
index 70d880972d..e3d7675052 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
Binary files differ
diff --git a/systems/texlive/tlnet/tlpkg/translations/da.po b/systems/texlive/tlnet/tlpkg/translations/da.po
index f78cedea6e..075e1890e4 100644
--- a/systems/texlive/tlnet/tlpkg/translations/da.po
+++ b/systems/texlive/tlnet/tlpkg/translations/da.po
@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live 2021\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2021-05-01 01:50+0200\n"
-"PO-Revision-Date: 2021-04-29 11:20+0200\n"
-"Last-Translator: \n"
-"Language-Team: \n"
+"POT-Creation-Date: 2021-04-26 01:49+0200\n"
+"PO-Revision-Date: 2021-05-05 10:13+0200\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Last-Translator: \n"
+"Language-Team: \n"
"X-Generator: Poedit 2.3\n"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:137
@@ -296,7 +296,7 @@ msgstr "Hjælp"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:525
msgid "Load default (from tlpdb) repository:"
-msgstr "Indlæs standarddatalager (from tlpdb):"
+msgstr "Indlæs standarddatalager (fra tlpdb):"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:528
msgid "Load cmd line repository:"
@@ -336,7 +336,7 @@ msgstr "GUI-sprog..."
#: texmf-dist/scripts/texlive/tlmgrgui.pl:557
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1458
msgid "Expert options"
-msgstr "Expertindstillinger"
+msgstr "Ekspertindstillinger"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:561
msgid "Enable debugging output"
@@ -590,7 +590,7 @@ msgstr "Standardpakkedatalager"
#: tlpkg/installer/install-tl-gui.tcl:1541
#: tlpkg/installer/install-tl-gui.tcl:1560
msgid "Change"
-msgstr "Ændring"
+msgstr "Ændre"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1157
msgid "Create formats on installation"
@@ -1914,11 +1914,11 @@ msgstr "Programmer, der kun understøttes på Windows"
msgid "XeTeX and packages"
msgstr "XeTeX med pakker"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2616
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2621
msgid "Welcome to TeX Live!"
msgstr "Velkommen til TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2619
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2624
#, perl-format
msgid ""
"See %s/index.html for links to documentation.\n"
@@ -1933,7 +1933,7 @@ msgstr ""
"rundt; overvej venligt at støtte den gruppe, der passer bedst med dine "
"behov. En liste med grupper er at finde på https://tug.org/usergroups.html."
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2629
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2634
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/win32/miktex/tm/packages/next/pr.ini b/systems/win32/miktex/tm/packages/next/pr.ini
index 4c2c35a9ca..aeff154481 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=1620245657
+date=1620332115
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=492e26c9f2b51936aa66693b8aba8418
+lstdigest=0c00fa8f09602caa09a2be2309c103d6
numpkg=4092
relstate=next
-version=7795
+version=7796
;;;;This configuration file is signed by a MiKTeX maintainer. The signature follows.
;;;;-----BEGIN MIKTEX SIGNATURE-----
-;;;; signature/miktex: stN21RAYwpBERwuEp9s/D6A/8R1O+x+fQ/XtrdD4TR7I2WArf9klfGmyJnsFBbU3ROkUbI5AclLuIiByN8LeStdtD73T8+c7l8bOpfRqFDdJtGn3x+7VFL9dvYq8Dmq7CI9JklNOuqfCFZTa1RYLM5HOR9KPqB3wwiiduQ54oljhcS62ohp/KmUIy48MJ8iwhhM/+jQQHt4JaBGteKZuRH76f99+BV61ofWvn3W9h0weK/ROdy2dx8ONlNT2rx+FKpkbpcrA7JZbSq7BGRPDNnhlOHegRA344DyF9KHLlbomFZ4usILVtE2TdydeBBof1lx0rWtDbVA1n9gDNDTzzQ==
+;;;; signature/miktex: WeX4YAKc2O53liJZWA7KaEbd/ihupXG1rfigPJc9iRLR8It19RveHZroC0Ej91Wmdic2t+vOD7Kjp/P357/f6RXJd4rBzfjjNqY0keQYAYX1asQkHwx1OU2z8KvxjNasABl2gesrYRPGOIHJMo2VVeV19MHjoZuwlm8eVlgGJ6iyx9V73Z2Z+h+2CC1UrTbWEd03TbFRZ1AD3uOJivMcZ1sjl00/RQDdEfsOPfJr0Ru/tZ3R+lDsIvvmVWk6stQJsqEGvPDEmeW33mQdq7e/it4UmocT6zjD2Amm4dHyfOtd95Wl77sx3TBfUCHKoZSfaLtsT9mB1jZjeMyFsLoxPg==
;;;;-----END MIKTEX SIGNATURE-----
diff --git a/systems/win32/miktex/tm/packages/pr.ini b/systems/win32/miktex/tm/packages/pr.ini
index 62c1149227..0bf73e80d9 100644
--- a/systems/win32/miktex/tm/packages/pr.ini
+++ b/systems/win32/miktex/tm/packages/pr.ini
@@ -1,13 +1,13 @@
[repository]
-date=1620245465
+date=1620331917
lastupd=acrotex babel easybook grundgesetze lua-ul nicematrix optex pdfxup profcollege structmech todonotes worldflags acmart beamerswitch biblatex-ext biblatex-philosophy byo-twemojis circuitikz erewhon erewhon-math
-lstdigest=58a8cea071d46686708f3f69b44525d2
+lstdigest=0a9cb2b8c6a69a1755b3b729ffe34f93
numpkg=4092
relstate=stable
-version=7795
+version=7796
;;;;This configuration file is signed by a MiKTeX maintainer. The signature follows.
;;;;-----BEGIN MIKTEX SIGNATURE-----
-;;;; signature/miktex: VPBb3h7sUegCLTmFs/XwT7Dvxt+1sDaA0S9QCR+6MIy7ZzHc5dIlAjfv+eS36kez2kvEWLBLdfeq2p8nolkaNpA06X0vW5zFVyw+CqLfN4xo7dE0wZSVnTey1p3pxd2ixkunNjoz8EdZu772NEg4I/eJmpSnHaAm1rNaiqO9/HXfgPgkzNI5LVlH12ex3oLHW6zAvLda0Ovgzlio1+IA9stg/06IWDe+/5ho0k0ZHl2lr9AEBgZzcIt8OsBRYNVtD9jYZqfnAMXBwHG/K1swqQl2dO7MjKGx3xZxmydFbnbZUqHERE9KwGmrTFRtZ5utSQumnGCM76IpIeQIDe3R5w==
+;;;; signature/miktex: YDUGqdKC1HSES1mtxF0wTBPfFKnP9PYnBDPu6PyJ8c01852T/Hpkj0fJ+K89omVQ50WbhvDiSpHfaYvOqZK8e5EUKm6nb56pGEuOLJS9NZCcK5GraGChM1JTDAChrYpO05rm9ZIewZ8UQYE2SqenpXaD3rEblZGcxcD61bDY3mqs9+JJPQh6/X9HO7dTZ3dPmXqw8X4U3TXHTegbNtmrr71rXiVl6oXl/+h3OxzfoS9OBxb1CZtx/l/PBvFRBPNQZs3ChA0evsmITYS/523uVOWtP6ZcP1vya1sBYYR+LMQyCFSQe4Nq1oXmjeuNHXfhRDZOW/DwRQDTAsU8w+ryqg==
;;;;-----END MIKTEX SIGNATURE-----
diff --git a/systems/win32/w32tex/ChangeLog b/systems/win32/w32tex/ChangeLog
index 3402e26ed4..f4e605b9c8 100644
--- a/systems/win32/w32tex/ChangeLog
+++ b/systems/win32/w32tex/ChangeLog
@@ -1,5 +1,39 @@
W32TeX (x86 & x64) ChangeLog
+[2021/05/06]
+(01) context.tar.xz
+ ConTeXt version: 2021.05.05 19:22.
+(02) ltxpkgs.tar.xz
+ Update polexpr, xint and l3build.
+(03) luajittex-dev-w32.tar.xz
+ Update harfbuzz (2.8.1) in luajithbtex.dll.
+(04) luajittex-exp-w32.tar.xz
+ Update harfbuzz (2.8.1) in luajithbtex.dll.
+(05) luajittex-w32.tar.xz
+ Update harfbuzz (2.8.1) in luajithbtex.dll.
+(06) luatex-dev-w32.tar.xz
+ Update harfbuzz (2.8.1) in luahbtex.dll.
+(07) luatex-exp-w32.tar.xz
+ Update harfbuzz (2.8.1) in luahbtex.dll.
+(08) luatex-w32.tar.xz
+ Update harfbuzz (2.8.1) in luahbtex.dll.
+(09) xetex-w32.tar.xz
+ Update harfbuzz (2.8.1) in xetex.dll
+(10) win64/luajittex-dev-w64.tar.xz
+ Update harfbuzz (2.8.1) in luajithbtex.dll.
+(11) win64/luajittex-exp-w64.tar.xz
+ Update harfbuzz (2.8.1) in luajithbtex.dll.
+(12) win64/luajittex-w64.tar.xz
+ Update harfbuzz (2.8.1) in luajithbtex.dll.
+(13) win64/luatex-dev-w64.tar.xz
+ Update harfbuzz (2.8.1) in luahbtex.dll.
+(14 win64/luatex-exp-w64.tar.xz
+ Update harfbuzz (2.8.1) in luahbtex.dll.
+(15 win64/luatex-w64.tar.xz
+ Update harfbuzz (2.8.1) in luahbtex.dll.
+(16 win64/xetex-w64.tar.xz
+ Update harfbuzz (2.8.1) in xetex.dll
+
[2021/05/05]
(01) dvipdfm-w32.tar.xz
Update dvipdfmx.dll.