summaryrefslogtreecommitdiff
path: root/systems
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2020-01-06 03:01:05 +0000
committerNorbert Preining <norbert@preining.info>2020-01-06 03:01:05 +0000
commit9d0c8699c4a9f01ec5cc8aeb7e3b14956b3d51c1 (patch)
tree570162c5a6220ea63dffe4e5471f477e99e77c99 /systems
parentd703bc2777b69363e791c0ec50045947b1a399da (diff)
CTAN sync 202001060301
Diffstat (limited to 'systems')
-rw-r--r--systems/texlive/tlnet/tlpkg/TeXLive/TLPSRC.pm28
-rw-r--r--systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl1
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb190
-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.xzbin2149920 -> 2150988 bytes
-rw-r--r--systems/win32/miktex/tm/packages/files.csv.lzmabin516523 -> 516452 bytes
-rw-r--r--systems/win32/miktex/tm/packages/next/files.csv.lzmabin516568 -> 516375 bytes
-rw-r--r--systems/win32/miktex/tm/packages/next/pr.ini8
-rw-r--r--systems/win32/miktex/tm/packages/pr.ini10
-rw-r--r--systems/win32/w32tex/ChangeLog4
12 files changed, 139 insertions, 120 deletions
diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLPSRC.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLPSRC.pm
index c05faad40b..5015e32f3e 100644
--- a/systems/texlive/tlnet/tlpkg/TeXLive/TLPSRC.pm
+++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLPSRC.pm
@@ -1,4 +1,4 @@
-# $Id: TLPSRC.pm 53216 2019-12-23 20:32:38Z karl $
+# $Id: TLPSRC.pm 53309 2020-01-03 18:32:13Z karl $
# TeXLive::TLPSRC.pm - module for handling tlpsrc files
# Copyright 2007-2019 Norbert Preining
# This file is licensed under the GNU General Public License version 2
@@ -12,7 +12,7 @@ use TeXLive::TLUtils;
use TeXLive::TLPOBJ;
use TeXLive::TLTREE;
-my $svnrev = '$Revision: 53216 $';
+my $svnrev = '$Revision: 53309 $';
my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown";
sub module_revision { return $_modulerevision; }
@@ -143,12 +143,12 @@ sub from_file {
# check that no variables remain unexpanded, or rather, for any
# remaining $ (which we don't otherwise allow in tlpsrc files, so
# should never occur) ... except for ${ARCH} which we specially
- # expand in TLTREE.pm, and ${global_*} which need to be defined in
- # 00texlive.autopatterns.tlpsrc. (We distribute one file dvi$pdf.bat,
- # but fortunately it is matched by a directory.)
+ # expand in TLTREE.pm, and ${global_*} (and ${wndws}) which need to
+ # be defined in 00texlive.autopatterns.tlpsrc. (We distribute one
+ # file dvi$pdf.bat, but fortunately it is matched by a directory.)
#
(my $testline = $line) =~ s,\$\{ARCH\},,g;
- $testline =~ s,\$\{global_[^}]*\},,g;
+ $testline =~ s,\$\{(global_[^}]*|wndws)\},,g;
$testline =~ /\$/
&& die "$srcfile:$lineno: variable undefined or syntax error: $line\n";
#debug: warn "new line $line, from $origline\n" if $origline ne $line;
@@ -363,6 +363,11 @@ sub make_tlpobj {
@autoaddpat = ();
$usedefault = 1;
foreach my $p (@{$self->{${pattype} . 'patterns'}}) {
+ # Expansion of ${global_...} variables from autopatterns.
+ for my $key (keys %global_tlpvars) {
+ $p =~ s/\$\{\Q$key\E\}/$global_tlpvars{$key}/g;
+ }
+
if ($p =~ m/^a\s+(.*)\s*$/) {
# format
# a toplevel1 toplevel2 toplevel3 ...
@@ -559,7 +564,7 @@ sub _do_normal_pattern {
#
# The returned hash has an additional key C<tlpvars> for global tlpsrc
# variables, which can be used in any C<.tlpsrc> files. The names of these
-# variables all start with C<global_>.
+# variables all start with C<global_>, except for super-special ${wndws}.
#
# =cut
# (all doc at bottom, let's not rewrite now.)
@@ -618,7 +623,7 @@ sub find_default_patterns {
# check defined variables to ensure their names start with "global_".
my %gvars = %{$tlsrc->_tlpvars};
for my $v (keys %gvars) {
- if ($v !~ /^global_[-_a-zA-Z0-9]+$/) {
+ if ($v !~ /^(global_[-_a-zA-Z0-9]+|wndws)$/) {
tlwarn("$apfile: variable does not start with global_: $v\n")
unless $v eq "PKGNAME";
# the auto-defined PKGNAME is not expected to be global.
@@ -972,9 +977,10 @@ definition and expansion.)
Ordinarily, variables can be used only within the C<.tlpsrc> file where
they are defined. There is one exception: global tlpsrc variables can be
defined in the C<00texlive.autopatterns.tlpsrc> file (mentioned below);
-their names must start with C<global_>, and can only be used in
-C<depend> and C<execute> directives, or another C<tlpsetvar>. For
-example, our C<autopatterns.tlpsrc> defines:
+their names must start with C<global_> (plus super-special C<wndws>),
+and can only be used in C<depend>, C<execute>, and C<...pattern>
+directives, another C<tlpsetvar>. For example, our
+C<autopatterns.tlpsrc> defines:
tlpsetvar global_latex_deps babel,cm,hyphen-base,latex-fonts
diff --git a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
index 4cc1735e08..420c68901f 100644
--- a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
+++ b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
@@ -16,7 +16,6 @@ $mirrors = {
'China' => {
'http://mirror.lzu.edu.cn/CTAN/' => 1,
'http://mirrors.cqu.edu.cn/CTAN/' => 1,
- 'http://mirrors.geekpie.club/CTAN/' => 1,
'http://mirrors.hit.edu.cn/CTAN/' => 1,
'http://mirrors.sjtug.sjtu.edu.cn/ctan/' => 1,
'http://mirrors.tuna.tsinghua.edu.cn/CTAN/' => 1,
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb b/systems/texlive/tlnet/tlpkg/texlive.tlpdb
index af7eaa48da..3a1384853d 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/2019
-depend revision/53306
+depend revision/53323
name 00texlive.image
category TLCore
-revision 53306
+revision 53322
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
@@ -4137,7 +4137,7 @@ depend opt_w32_multi_user:1
name 00texlive.installer
category TLCore
-revision 53296
+revision 53315
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
@@ -43575,7 +43575,7 @@ catalogue-topics caption
name caption
category Package
-revision 53291
+revision 53318
shortdesc Customising captions in floating environments
relocated 1
longdesc The caption package provides many ways to customise the
@@ -43587,10 +43587,10 @@ longdesc compatibility notes, for other packages, is provided in the
longdesc documentation. The package also provides the "caption outside
longdesc float" facility, in the same way that simpler packages like
longdesc capt-of do. The package supersedes caption2.
-containersize 28572
-containerchecksum d20d89bd88aa0f35c71925670bd80adf9340606b6b54b6f603522be2e1b47f335f999bf1ced4e42428b587f14d2a14b1b6180f65929435d026094e3c3cbcc1ae
+containersize 28836
+containerchecksum 6d68f3d0e3817a9d179cec3cbd72e44330bc7ec361ecd96666d0550eebef96c5429e1e87dc43ae8c9a5b06bb6168d04fdb88242a1681580cb952cb3d633f223c
doccontainersize 1585192
-doccontainerchecksum 04031322a2b9288091ddae1b162b391a781094f477c335715ca826a9e86af4643ccb40ebf4b9446a09379d00d2af98b00de465b1f6e8506dcef98558ddd23d2d
+doccontainerchecksum 10f46459f2fa890b15691fe829b34ac4ea0e33793d5a23e55a8ae84df8e4a196297513c76b524cb87b2c917fdb150b417c0bfcdc1404e0d4918850e87b9499da
docfiles size=444
RELOC/doc/latex/caption/CHANGELOG
RELOC/doc/latex/caption/README details="Readme"
@@ -43602,9 +43602,9 @@ docfiles size=444
RELOC/doc/latex/caption/ltcaption.pdf
RELOC/doc/latex/caption/subcaption.pdf
RELOC/doc/latex/caption/totalcount.pdf
-srccontainersize 191392
-srccontainerchecksum 02a4763629b0d0a802bca95cd41662b1c278886124ce65728cdf4b2015a2f8683f68439e1f0ada3b1d4f1c7db6f14d13288945a28d30bfdc18108bd1f4df19ae
-srcfiles size=280
+srccontainersize 192496
+srccontainerchecksum fd32e0d0b9dfec4651e9661fe226283bc9e99b2e9598d0c931eca83563760b53661a4b7fc91468604c54ab17f9c1bec6d6d11087833072fb7a81ad8c0417a77c
+srcfiles size=282
RELOC/source/latex/caption/bicaption.dtx
RELOC/source/latex/caption/caption-deu.tex
RELOC/source/latex/caption/caption-eng.tex
@@ -43618,7 +43618,7 @@ srcfiles size=280
RELOC/source/latex/caption/ltcaption.dtx
RELOC/source/latex/caption/subcaption.dtx
RELOC/source/latex/caption/totalcount.dtx
-runfiles size=42
+runfiles size=44
RELOC/tex/latex/caption/bicaption.sty
RELOC/tex/latex/caption/caption.sty
RELOC/tex/latex/caption/caption2.sty
@@ -82518,7 +82518,7 @@ catalogue-topics german hyphenation
name dehyph-exptl
category Package
-revision 50772
+revision 53316
shortdesc Experimental hyphenation patterns for the German language
relocated 1
longdesc The package provides experimental hyphenation patterns for the
@@ -82532,12 +82532,12 @@ longdesc reformierten Rechtschreibung ab und konnen mit den Paketen
longdesc Babel und hyphsubst aus dem Oberdiek-Bundel verwendet werden.
depend hyphen-base
depend hyph-utf8
-execute AddHyphen name=german-x-2019-04-04 synonyms=german-x-latest lefthyphenmin=2 righthyphenmin=2 file=dehypht-x-2019-04-04.tex file_patterns=hyph-de-1901.pat.txt file_exceptions=hyph-de-1901.hyp.txt
-execute AddHyphen name=ngerman-x-2019-04-04 synonyms=ngerman-x-latest lefthyphenmin=2 righthyphenmin=2 file=dehyphn-x-2019-04-04.tex file_patterns=hyph-de-1996.pat.txt file_exceptions=hyph-de-1996.hyp.txt
-containersize 95836
-containerchecksum df64c7988e8194564716a0abef4949bad9b34b8571a579148cad5eeaa3676a6e066c9eeb183f69d49e5089ce92ef45b4c7747bb4d23334c6812c900c91069ef3
-doccontainersize 138100
-doccontainerchecksum 0199cf3ca0a7fc36fd3b2b736be56c3baa1430422ec97a3bdf86e740c4117ca73cc0b7d057ebf40d1d48def4d5156bf51e9023604794ac3cdab19f0716d8f6a9
+execute AddHyphen name=german-x-2019-04-04 synonyms=german-x-latest lefthyphenmin=2 righthyphenmin=2 file=dehypht-x-2019-04-04.tex file_patterns=hyph-de-1901.pat.txt file_exceptions=
+execute AddHyphen name=ngerman-x-2019-04-04 synonyms=ngerman-x-latest lefthyphenmin=2 righthyphenmin=2 file=dehyphn-x-2019-04-04.tex file_patterns=hyph-de-1996.pat.txt file_exceptions=
+containersize 95812
+containerchecksum 4f4e9585f959c51e3700121785217f96d34ab1c8d9af59fde4e3584eddda75a1f1384427992d8335581ecf53c89a5364e1330abeee00c17b318a04870d9f2c3f
+doccontainersize 138104
+doccontainerchecksum 4469deb5cac413e37b57af14e41c8fbb55fb5c840d4951e79105251b2b362c13417f1811716938b4a2074296845073fb3a13971addd0284207c0c48067c5f719
docfiles size=54
RELOC/doc/generic/dehyph-exptl/CHANGES
RELOC/doc/generic/dehyph-exptl/INSTALL
@@ -100749,17 +100749,18 @@ catalogue-version 0.1d
name endnotes
category Package
-revision 17197
+revision 53319
shortdesc Place footnotes at the end
relocated 1
longdesc Accumulates notes (using the \endnote command, which can be
longdesc used as a replacement for \footnote), and places them at the
longdesc end of the section, chapter or document.
-containersize 5264
-containerchecksum 927d0883e4453e96dbdc9739fd2db471e63d3ebe2ced9f0cf55be74f2bc26804ddd1151b82d04a6d977427e0396bde01f4332083dab7a413049d9d639295c196
-doccontainersize 260012
-doccontainerchecksum 44aa9b7d48d7f363c35c61c1945161650cd030ca23d443931236bd1739f6b1d084998fbfab27fd48fd17ade00d1fa494a3595a8101963c311b7fb41a9307a40d
-docfiles size=69
+containersize 5500
+containerchecksum 3b4d5b55dd1ef844b96d30c7d40d5ea56ea3082a9e6740e3bffb837b864823a2c5545a13fa79eb49f79b47ee86aaa28e15c64f676bd27e4987aaaaca76bb2f31
+doccontainersize 280164
+doccontainerchecksum e4de81d6cf0d7bc686d84420dff1e390ad18747ebc9381c6df006f871f9d5e000aae5cd43a3648dfdab2806da83efc6b375ceb4a9110137ed6b373538a7a8b57
+docfiles size=72
+ RELOC/doc/latex/endnotes/README.md details="Readme"
RELOC/doc/latex/endnotes/endnotes.pdf details="Package documentation"
RELOC/doc/latex/endnotes/endnotes.tex
runfiles size=4
@@ -105063,7 +105064,7 @@ catalogue-topics cv class
name europecv
category Package
-revision 53217
+revision 53313
shortdesc Unofficial class for European curricula vitae
relocated 1
longdesc The europecv class is an unofficial LaTeX implementation of the
@@ -105074,20 +105075,27 @@ longdesc enough to be used for any kind of curriculum vitae. The class
longdesc has localisations for all the official languages of the EU
longdesc (plus Catalan), as well as options permitting input in UTF-8
longdesc and koi8-r.
-containersize 38132
-containerchecksum 6f6a22a387b50f525612b6e83ba0060e62897b842ea8bd1f7814724ca0571e0572e489015544aedd2410d7a18923708711109a790e9239be195811d2ea65e2c7
-doccontainersize 728672
-doccontainerchecksum c69ee3980a9cc75a3af6b56986bbb3796e6b227296b386142afa79630222240667473fa9d1b902ba63409a12e70ae0c7d56309982871ca3c759db13ff3ed30fb
-docfiles size=257
+containersize 38460
+containerchecksum 54c1a4198183c346182db14b62c88dab981b1c2bf18ff10067b335e2e4eff2bb32400f9589d6e16065b891958e46cdf80f8ac4f5a73a70d0fde7a0228b1e13b5
+doccontainersize 949528
+doccontainerchecksum 65ca93f3b5e8cca103abb82cc47485a5aedd1fa9e78d1bb4fe80623c9b76bf34ded529dcf4ebb35f8d141cf198a6e8ba1a012ee4e698053ff16e8ad23741e059
+docfiles size=342
RELOC/doc/latex/europecv/CHANGELOG.rst
RELOC/doc/latex/europecv/CONTRIBUTING.md
RELOC/doc/latex/europecv/LICENSE
RELOC/doc/latex/europecv/README.md details="Readme"
RELOC/doc/latex/europecv/europecv.pdf details="Class documentation"
RELOC/doc/latex/europecv/europecv.tex
+ RELOC/doc/latex/europecv/examples/EuropeFlagCMYK-eps-converted-to.pdf
+ RELOC/doc/latex/europecv/examples/EuropeFlagCMYK.eps
+ RELOC/doc/latex/europecv/examples/Pythagoras.jpg
RELOC/doc/latex/europecv/examples/at.pdf
RELOC/doc/latex/europecv/examples/bulgarian-koi8-r.tex
RELOC/doc/latex/europecv/examples/bulgarian-utf8.tex
+ RELOC/doc/latex/europecv/examples/europass-cv.pdf
+ RELOC/doc/latex/europecv/examples/europass-cv.tex
+ RELOC/doc/latex/europecv/examples/europasslogo-eps-converted-to.pdf
+ RELOC/doc/latex/europecv/examples/europasslogo.eps
RELOC/doc/latex/europecv/examples/greek-utf8.pdf
RELOC/doc/latex/europecv/examples/greek-utf8.tex
RELOC/doc/latex/europecv/examples/maltese-maltese.tex
@@ -107731,7 +107739,7 @@ catalogue-version 1.2m
name fbox
category Package
-revision 52637
+revision 53320
shortdesc Extended \fbox macro from standard LaTeX
relocated 1
longdesc This package redefines \fbox to allow an optional argument for
@@ -107739,11 +107747,11 @@ longdesc different frames. It can be any combination of l)eft, r)ight,
longdesc t)op, and b)ottom, for example: \fbox[lt]{foo}. Using uppercase
longdesc letters or a combination of lowercase and uppercase is also
longdesc possible.
-containersize 1540
-containerchecksum c89f74e8823352000b5955ba6994516da0d078c81ea9d9c328ddc6bae5928ad7835892eb63b71a3701b9bec2b4be9c2adbb91aef1a7852e852fa47aab259a985
-doccontainersize 37444
-doccontainerchecksum 5ca1a74c7dd33f88052779005cec47e1d2b8347b3faaf9999cd597747718e5f3863904991095ac0d65f0d01f0ebc6687a37ec7f6fae37eb2c3c39b08aaf936d4
-docfiles size=12
+containersize 1624
+containerchecksum c7b6b1af67b8984486b5327a1d017be65ee3f5bb026e9e41e929dd572125363aaa9726ed6d619903ad465c792f10ce52038f0ae7356d836799945416e96e18c3
+doccontainersize 44176
+doccontainerchecksum 565c22a94102c184da9180cca35e840881bfee10c9f404dbec230e167f1f2587233d85851c9db6babbe29494c7ba4f6acc495464320df0a6f4055c29ae8eb1f2
+docfiles size=15
RELOC/doc/latex/fbox/CHANGELOG
RELOC/doc/latex/fbox/README.md details="Readme"
RELOC/doc/latex/fbox/fbox.pdf details="Package documentation"
@@ -107753,7 +107761,7 @@ runfiles size=1
catalogue-ctan /macros/latex/contrib/fbox
catalogue-license lppl1.3c
catalogue-topics boxing
-catalogue-version 0.03
+catalogue-version 0.04
name fbs
category Package
@@ -132698,31 +132706,33 @@ catalogue-topics font font-otf font-type1
name impatient
category Package
-revision 35573
+revision 53321
shortdesc Free edition of the book "TeX for the Impatient"
relocated 1
longdesc "TeX for the Impatient" is a book (of around 350 pages) on TeX,
longdesc Plain TeX and Eplain. The book is also available in French and
longdesc Chinese translations.
-containersize 512
-containerchecksum d66e22eadafc2de1816356c60151578f7ae7b1b7136ebc9cdb4e1a32e019b4d403af2f19d4bfb15d8fce4a7e48576e396cb63dee1a07da6d013e93fb09421423
-doccontainersize 1562772
-doccontainerchecksum dc557d4bf80acf430ba867a0767e17ab2ffd57acda5d811f38144b57ec19ee797ca64fa01487704a90c3eb84ebc14610719370af358d60fa392877d4133a49a0
-docfiles size=605
+containersize 488
+containerchecksum dbb5efd07c2a88643c5b49a9d835061ac13c1dbf4356769b30b7d7ceff8c29d75b3abc00dcacc9cc901a449bf18b95781916f9b33c3917e86310b0923033301c
+doccontainersize 1665604
+doccontainerchecksum 7558bb2138f0b09179d3979f46328366a410a540e51aa59380c6c5107067dd5b9b350be2f38255a271f75b01bf4669fd64e75fae7fff88d4239b459f70cc5988
+docfiles size=616
+ RELOC/doc/plain/impatient/ChangeLog
RELOC/doc/plain/impatient/Makefile
- RELOC/doc/plain/impatient/Makefile.in
RELOC/doc/plain/impatient/NEWS
RELOC/doc/plain/impatient/README details="Basic project information"
RELOC/doc/plain/impatient/backm.tex
+ RELOC/doc/plain/impatient/book.ccs
RELOC/doc/plain/impatient/book.pdf details="A copy of the book (English)" language="en"
RELOC/doc/plain/impatient/book.sdx
RELOC/doc/plain/impatient/book.tex
RELOC/doc/plain/impatient/capsule.tex
RELOC/doc/plain/impatient/concepts.tex
RELOC/doc/plain/impatient/config.tex
- RELOC/doc/plain/impatient/configure
- RELOC/doc/plain/impatient/configure.ac
RELOC/doc/plain/impatient/copyrght.tex
+ RELOC/doc/plain/impatient/diffs/impatient-2.0-2.3.diff.gz
+ RELOC/doc/plain/impatient/diffs/impatient-2.3-2.4.diff.gz
+ RELOC/doc/plain/impatient/diffs/impatient-2.4-2020.diff.gz
RELOC/doc/plain/impatient/eplain.tex
RELOC/doc/plain/impatient/errata.future
RELOC/doc/plain/impatient/errors.tex
@@ -161186,7 +161196,7 @@ catalogue-version 2.0
name libertine
category Package
-revision 52663
+revision 53310
shortdesc Use of Linux Libertine and Biolinum fonts with LaTeX
relocated 1
longdesc The package provides the Libertine and Biolinum fonts in both
@@ -161200,10 +161210,10 @@ depend iftex
depend mweights
depend xkeyval
execute addMap libertine.map
-containersize 13944848
-containerchecksum 763ff8d1f1869de846da2e98ea460a51bf86c6242d36e5d763240c57e4dfea08473b5397fc997dfcc788c4cf06bc131e03bb0bcfece3945b522e797edc1a3482
-doccontainersize 1119080
-doccontainerchecksum 0661f102a09e1e1bbb8e1bbe94c626509e23ed80ab9232a2713646764fe5910ecd0363b6b340a67494e4c6a9cb6c3488d92c0e4f1da1ab69f12df8915e832f41
+containersize 13948192
+containerchecksum d52bf688d69ea2ba5de9c455ed61e4f084cc9b003cf075a319330ba0281bca5e4f3ffdf5c173fb77c831b9e8b8363da62c937ca13882194276024867573c47eb
+doccontainersize 1119088
+doccontainerchecksum a4eaeb71df66f5533024024c77090d13bbf8de085848ee20f8747a26f958f877f90e1f94414fab3e8ac632c482413a842a6568f166de7777caa615a0fa7f3ee6
docfiles size=305
RELOC/doc/fonts/libertine/Bugs.txt
RELOC/doc/fonts/libertine/ChangeLog.txt
@@ -161218,7 +161228,7 @@ docfiles size=305
RELOC/doc/fonts/libertine/rename_enc
RELOC/doc/fonts/libertine/samples.pdf details="Font samples"
RELOC/doc/fonts/libertine/samples.tex
-runfiles size=8280
+runfiles size=8161
RELOC/fonts/enc/dvips/libertine/lbtn_25tcsq.enc
RELOC/fonts/enc/dvips/libertine/lbtn_2exa4z.enc
RELOC/fonts/enc/dvips/libertine/lbtn_2ezly2.enc
@@ -161526,7 +161536,6 @@ runfiles size=8280
RELOC/fonts/opentype/public/libertine/LinBiolinum_RB.otf
RELOC/fonts/opentype/public/libertine/LinBiolinum_RBO.otf
RELOC/fonts/opentype/public/libertine/LinBiolinum_RI.otf
- RELOC/fonts/opentype/public/libertine/LinLibertineMBnew.otf
RELOC/fonts/opentype/public/libertine/LinLibertine_DR.otf
RELOC/fonts/opentype/public/libertine/LinLibertine_I.otf
RELOC/fonts/opentype/public/libertine/LinLibertine_M.otf
@@ -170432,25 +170441,26 @@ catalogue-version 2.5
name logix
category Package
-revision 51581
+revision 53317
shortdesc Supplement to the Unicode math symbols providing over 3,000 symbols
relocated 1
longdesc The package provides a Unicode font with over 3,000 symbols to
longdesc supplement the Unicode math symbols. It is compatible with and
longdesc complements the AMS STIX2 math fonts, but focuses on new
longdesc symbols and symbol variants more suited to work in logic.
-containersize 1365472
-containerchecksum 19aa0ab48dce9b395436486fc731ec9ac1a153bd965aa6cb0835954acf54b2d2e32faef22c4130e167957ccfbed59fb3a83ded4d2b180966cd383e27d6a65f92
-doccontainersize 1233400
-doccontainerchecksum f2408fc3d3a99c97e3be5090a54472f568cda97425d106bd14610d687f7bf5bf4297c3870c69a4f6b94004ad0e439e57055c2a6af5e18d39861640d0725405ea
-docfiles size=1151
+containersize 1371416
+containerchecksum 5d392c564c4d4a5827a2fc58b95f95dcfb51e32c116bbf94834831ef2eda9880a07d0c21032a6a36f1a694cf184b5d4f306c0935f1c80ccb6bcbff97e9d6d37a
+doccontainersize 1247836
+doccontainerchecksum 2a12509e023fc089166aefff11174470856225b610b87f1707d775cea2e9d60da1ed047ae98a62ad7d923ceba2f71d30576f262e0db0a6dbf68f89ba612a64e0
+docfiles size=1225
RELOC/doc/fonts/logix/CHANGELOG
RELOC/doc/fonts/logix/README details="Readme"
RELOC/doc/fonts/logix/logix.eot
+ RELOC/doc/fonts/logix/logix.math
RELOC/doc/fonts/logix/logix.pdf details="Package documentation"
RELOC/doc/fonts/logix/logix.tex
RELOC/doc/fonts/logix/logix.vfc
-runfiles size=581
+runfiles size=585
RELOC/fonts/opentype/public/logix/logix.otf
RELOC/fonts/opentype/public/logix/logix.woff
RELOC/fonts/opentype/public/logix/logix.woff2
@@ -170459,7 +170469,7 @@ runfiles size=581
catalogue-ctan /fonts/logix
catalogue-license ofllppl1.3c
catalogue-topics font font-otf
-catalogue-version 1.01
+catalogue-version 1.02
name logpap
category Package
@@ -173561,7 +173571,7 @@ catalogue-version 0.03
name luajittex
category TLCore
-revision 53216
+revision 53322
shortdesc LuaTeX with just-in-time (jit) compiler
depend luatex
depend cm
@@ -173574,9 +173584,9 @@ depend unicode-data
depend luajittex.ARCH
execute AddFormat name=luajittex engine=luajittex options="luatex.ini" patterns=language.def,language.dat.lua fmttriggers=cm,etex,hyphen-base,knuth-lib,plain,tex-ini-files,unicode-data,luatex
containersize 448
-containerchecksum 8a60d3caa091f166c1c858f43bb1213e7040e731b5b44c73b923cde35e8b656bf07efe403f3ca377e09e5fa45af3eeb593dfc43db2815deb01aaed5023c1aa9f
+containerchecksum 781346b437fd5fccd22a56d37fbe42d40197173db24960aa435d75fcf7fbafc2bea362156250cee34e1c03c8aa9ee340d97327cbafa32a202eed1af032370ef5
doccontainersize 30220
-doccontainerchecksum 3c55f283e1fc8adba9f1db9d75fb7f1c33dff6bda03aa538cb85cce4bf4d2f53340ed1f418e9c3d51251f3e4eecb4caf27d5156b5bf89e702c87eb269997ddd0
+doccontainerchecksum 045e424a75a951d6c6af885f952831d26cc44db785c5c802b7e88e37540c110074c4d2adaa872c1ff230bc0d37b247b0a44b9621f12e7e37f170b81abd9f7191
docfiles size=10
texmf-dist/doc/man/man1/luajittex.1
texmf-dist/doc/man/man1/luajittex.man1.pdf
@@ -183837,7 +183847,7 @@ catalogue-version 1.002
name mflua
category TLCore
-revision 53216
+revision 53322
shortdesc configuration and base files for MFLua
longdesc For information on this Lua-enabled Metafont, see, for example:
longdesc tug.org/TUGboat/tb32-2/tb101scarso.pdf.
@@ -183846,7 +183856,7 @@ depend luatex
depend mflua.ARCH
execute AddFormat name=mflua engine=mflua-nowin options="mf.ini" fmttriggers=luatex,metafont mode=disabled
containersize 31672
-containerchecksum 7460c24c911da8a1c4477335c1e9d73d7489e6ecaebb5b980f22f661597b800680dfc835b8e29e105dd573dbede6ee6c74036713686af133fc8eabb320cd713f
+containerchecksum d7e7707c9c44f0e744326afcb58e3cb5f71451530503c0b09940db3d5d29d6d0d6e0b3b258dfc6a85d8698afd85a61c196c0f9d47ed804b7b2b12c94a1e229b4
runfiles size=48
texmf-dist/metafont/mflua/mflua.ini
texmf-dist/metafont/mflua/mfluajit.ini
@@ -253243,7 +253253,7 @@ containerchecksum 4485027ddec5142642acfc84ebbbff4ebc0e150ccea58e05ac558627b884a2
name scholax
category Package
-revision 53301
+revision 53311
shortdesc Extension of TeXGyreSchola (New Century Schoolbook) with math support
relocated 1
longdesc This package contains an extension of TeXGyreSchola with
@@ -253253,11 +253263,11 @@ longdesc slanted and bold slanted faces. Math support is provided by one
longdesc of two options to newtxmath, one of which uses an adaptation of
longdesc the fourier math Greek letters.
execute addMap ScholaX.map
-containersize 1730432
-containerchecksum 571d4522c6c1c01a745b7fd27e6da5f5f5606cac9fc5521eeadcef9e5989c7dd2fce9462ea0f036e1abe16773c4e02fbd2ee6b1aedd0897c90938feb96e60da4
-doccontainersize 217084
-doccontainerchecksum d3ee460588a0088634b6ded3b6e49c0a0b82f4e83d1642ff4a6121825be40b2e5b6c96c685df70161b8f61c8a982099aa6edf11f9f1fd0e225bbe062099b1bc6
-docfiles size=95
+containersize 1730232
+containerchecksum 621b9966dc7bddbaeb88249a11c8840f6118ee9094379db73761111635ae44babf4a2bc9e0eecbe139dc2b6ecf853b5063415af8b0b5efb9a5b99d9bb10d3812
+doccontainersize 214564
+doccontainerchecksum 1bd91bee3bf4cfff6c0131b6a21eaa892f64698d51f73be414514625d385b9410c94e68f19849941207bdaa80044b061e2575c3e8e644b5fd658c32cd38af8e3
+docfiles size=94
RELOC/doc/fonts/scholax/README details="Readme"
RELOC/doc/fonts/scholax/scholax-doc.pdf details="Package documentation"
RELOC/doc/fonts/scholax/scholax-doc.tex
@@ -253874,7 +253884,7 @@ runfiles size=1414
catalogue-ctan /fonts/scholax
catalogue-license lppl
catalogue-topics font font-body font-maths font-serif font-proportional font-otf font-type1 font-supp font-t1enc
-catalogue-version 1.01
+catalogue-version 1.02
name schule
category Package
@@ -282794,15 +282804,15 @@ docfiles size=572
name texlive-docindex
category TLCore
-revision 53296
+revision 53315
shortdesc top-level TeX Live doc.html, etc.
longdesc These files are regenerated as needed, which is often, so we
longdesc make them a separate package. See the tl-update-auto script
longdesc for the process.
containersize 388
-containerchecksum d28d8f12b3ce9fd662820bea45cdbed24044f32ad3b21942b4cc8af261905ceb3e5272e2aa8d12649f3f1d8db7998958409bf45cd3ea46825a00553c04eadc0b
-doccontainersize 157720
-doccontainerchecksum 9670dda57c5b15d01b9fffb89c1ebb9d2c9640cc536a1d0bf3b6da56950de4b37f5d60826c01a85c881013e69c9e9806552e337bb31f8447b49856331fb6ed61
+containerchecksum d2f029ec26a7759c6abbeb64034f5674c1f848fffc24993eacab58154aa843d264850634c1e2e886e1d71cb009e509e0144cd7f72648d0a7854e528e237accf2
+doccontainersize 157784
+doccontainerchecksum 4828c3699ab6329ea0ad94a9da3f6c026fb4026cab2a4b2abd92d1df27a1c9fa55f35db2ba273eedebc565cc2c16ca8da73c122da0ce0cc93b83dfd893a1204a
docfiles size=309
doc.html
@@ -283017,17 +283027,17 @@ docfiles size=503
name texlive-scripts
category TLCore
-revision 53296
+revision 53315
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.
depend texlive.infra
depend texlive-scripts.ARCH
postaction shortcut type=menu name="TeX Live command-line" cmd=TEXDIR/tlpkg/installer/tl-cmd.bat
-containersize 83332
-containerchecksum 66ed7bda9725a2e4aa668e798714ff0bb7678fceb4aabf6cbb9b5e4a95e3f217d675763ea3eac0288f8242a5c2d41ab48fb126960b222388101da4be005e194a
+containersize 83340
+containerchecksum 4a377a6be6aa1ba91f3fe3cc0aa4f3b03108eabb88f3a208268ca0dc7e11070e89919672b535e65286fc2ea401cd1b32fd05c0d4448a5514981848108b7892b0
doccontainersize 130232
-doccontainerchecksum 489b3ec53a70c63faed6601459337e0a297b8f67e3017835dc2c6a4cc7f1877f6dee9aa8b5470dd2e8e57bef098001e27ac845cc63d677d73d30691c98226808
+doccontainerchecksum 6f44cad233febc7cb5c4bcb7614e55225498d812a7dd71f659c7bd15204ab4592bef968347c2e8b430f0650500957a4b483d4f3977d1140de7ae6013017d7e98
docfiles size=53
texmf-dist/doc/man/man1/install-tl.1
texmf-dist/doc/man/man1/install-tl.man1.pdf
@@ -288038,21 +288048,21 @@ catalogue-version 0.12
name tikzducks
category Package
-revision 50840
+revision 53312
shortdesc A little fun package for using rubber ducks in TikZ
relocated 1
longdesc The package is a LaTeX package for ducks to be used in TikZ
longdesc pictures. This project is a continuation of an answer at
longdesc StackExchange How we can draw a duck?
-containersize 15252
-containerchecksum a4787c51f622a45befe7a01e0d30dd7b6f7f408fc9f64bd53fbfbbef721a0adfbf80253a395670e13c6eed43593facb704894d8652d65853d1082c0fecde8498
-doccontainersize 569176
-doccontainerchecksum 55f442ca85b45e3ab1852e2dca324bb580e35a648a4eeb7a693c4497ac358e6be94e5c90062f6216f5feddaa900376f96bf00b222574a5f45b176e2a80b38449
-docfiles size=152
+containersize 17388
+containerchecksum 60a0bcb4560e294c96c3469e557c114cda5b92c6ad2b75c04d8bb7a07426f5dfb115072ff66894a75291bba786ae58d19ee5f651cc80dd1549367d5bbdee5829
+doccontainersize 444348
+doccontainerchecksum e7b34bbeb3372eb3ef9bc7b758ce479229b78dd3f9af72bf71bb56cccf2927bf8ca52f9bf985f2d44323754b41180197356f49d3e93ea34ad8ac2cf1adfe9e27
+docfiles size=119
RELOC/doc/latex/tikzducks/README.md details="Readme"
RELOC/doc/latex/tikzducks/tikzducks-doc.pdf details="Package documentation"
RELOC/doc/latex/tikzducks/tikzducks-doc.tex
-runfiles size=22
+runfiles size=26
RELOC/tex/latex/tikzducks/tikzducks.sty
RELOC/tex/latex/tikzducks/tikzlibraryducks.code.tex
catalogue-also tikzlings tikzmarmots
@@ -288061,8 +288071,8 @@ catalogue-contact-repository https://github.com/samcarter/tikzducks
catalogue-contact-support https://github.com/samcarter/tikzducks/issues
catalogue-ctan /graphics/pgf/contrib/tikzducks
catalogue-license lppl1.3c
-catalogue-topics pgf-tikz
-catalogue-version 1.1
+catalogue-topics amusements graphics pgf-tikz
+catalogue-version 1.3
name tikzinclude
category Package
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
index 8d1f5d014d..bb7821a28e 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
@@ -1 +1 @@
-8db1d412c9d7240cfaf184d88a6fa3fe texlive.tlpdb
+9e246e97dc0f7759da5bc6fa6cb97a1f texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
index 1680070da0..6e113d8c59 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
@@ -1 +1 @@
-b440101a43b4b99dacd4de33f7c4c43c621517a3e318ce5506ca42131719100f4bf2ff0822e43b7e40d438a08a4c8491982ff1cc699e66a61e3f7ec8d2fda8b4 texlive.tlpdb
+a15bf6741672f6ec5d7fe5ece0d97621eeae7b64eb175f80a9a40c52522ed9abe817815b1721e50d62179f4c13938cd27b8bcd4dcddd34f9087ef69eb418f11e texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
index bf57cdedc3..22a0ed7d34 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-----
-iQEcBAEBCgAGBQJeDpDkAAoJEEzhh34ZQ4xwZrgIAJrGOhtgDxylaTcAEaN4OVlk
-OOnm8eZ8VqFfxF77FadTXr82mBm6uk1e6IH+h4slVC7lQx4ZSu+CyIh+BRbo/VMh
-t1ZS95oai0Zaq2LvmG9ZuOajkIVrSracYhNAT2rkz2i0KTUeKeQZ1B9rNNFkXnk7
-5+uqXdqO8Ii61xuHd3G7pX6EIs+r2s5wsJOLQOznoA3+50Ehjt0BQlikbs2CNK9i
-kgGpyncB4lYqBNgmdXYXOQolZ2i7t2NbjEkpnR9x7PRzcfpkHmFmSczkxqRgWjho
-czHcc5fCBwyXMoLyfAJ4bIUBnqwcYMmOaqExJKKXOXVjS0xRfgRa0PWKEEzLDdw=
-=T33k
+iQEcBAEBCgAGBQJeETP9AAoJEEzhh34ZQ4xw9XYH/jSiPLhoNeG3TE2fvuKf2DuV
+EsG3lGd0oDv1EeMjVuiApoZZnr1ioY/b4VgLEEF1gbQqQr/oYvXcCAWVRgJ3ScgE
+I09JKMKgja7srZhNI/nbI8obfhtORkonJgD++qoA2RduMnBfUJlG+4O6Drf0WnN8
+SjSoaiw24NUFBvI4nKaz0othHs6toyUQ7aqGadncSJ6rJNWlPejPQqOX3mLnlAW2
+zorB92j/ndYvoJEnt5E/10sk+c0G1ls4tEji/d6uznl6bHY6KbV2YOb/iLpCr24l
+YimOt46tcQEjtSptThQPsekqGOkEN+COxhiLKxzdZecxdjOzU4C1x1n6e2Mz2iY=
+=zxo4
-----END PGP SIGNATURE-----
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
index a9672da719..4905e9b725 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/files.csv.lzma b/systems/win32/miktex/tm/packages/files.csv.lzma
index 68d42b4939..abf5b6c1d1 100644
--- a/systems/win32/miktex/tm/packages/files.csv.lzma
+++ b/systems/win32/miktex/tm/packages/files.csv.lzma
Binary files differ
diff --git a/systems/win32/miktex/tm/packages/next/files.csv.lzma b/systems/win32/miktex/tm/packages/next/files.csv.lzma
index 070cfd4b75..9e5af870aa 100644
--- a/systems/win32/miktex/tm/packages/next/files.csv.lzma
+++ b/systems/win32/miktex/tm/packages/next/files.csv.lzma
Binary files differ
diff --git a/systems/win32/miktex/tm/packages/next/pr.ini b/systems/win32/miktex/tm/packages/next/pr.ini
index 9c3945537a..2fd20de42c 100644
--- a/systems/win32/miktex/tm/packages/next/pr.ini
+++ b/systems/win32/miktex/tm/packages/next/pr.ini
@@ -2,9 +2,9 @@
[repository]
-date=1578172507
+date=1578259136
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=d397275f0186d6ec3d0b95c489f5fba5
-numpkg=3833
+lstdigest=579684000e3ffd4c7c024600b4311a1f
+numpkg=3834
relstate=next
-version=7308
+version=7309
diff --git a/systems/win32/miktex/tm/packages/pr.ini b/systems/win32/miktex/tm/packages/pr.ini
index a33f58fb7e..2e186f962f 100644
--- a/systems/win32/miktex/tm/packages/pr.ini
+++ b/systems/win32/miktex/tm/packages/pr.ini
@@ -2,9 +2,9 @@
[repository]
-date=1578172281
-lastupd=chess-problem-diagrams covington epigraph geometry hypernat nicematrix schwalbe-chess verifica biblatex-archaeology calxxxx-yyyy caption embrac latexmk miktex-misc oberdiek pdfxup sanitize-umlaut scholax secnum acro
-lstdigest=90fee95852d14399145e07fe105d2228
-numpkg=3833
+date=1578258730
+lastupd=caption endnotes europecv fbox impatient libertine logix scholax tikzducks chess-problem-diagrams covington epigraph geometry hypernat nicematrix schwalbe-chess verifica biblatex-archaeology calxxxx-yyyy embrac
+lstdigest=924298fe2bcd5d796eada02b796e5455
+numpkg=3834
relstate=stable
-version=7308
+version=7309
diff --git a/systems/win32/w32tex/ChangeLog b/systems/win32/w32tex/ChangeLog
index 3eeab29468..535b9c3721 100644
--- a/systems/win32/w32tex/ChangeLog
+++ b/systems/win32/w32tex/ChangeLog
@@ -1,5 +1,9 @@
W32TeX (x86 & x64) ChangeLog
+[2020/01/04]
+(01) pgfcontrib.tar.xz
+ Update tikzducks.
+
[2020/01/03]
(01) luajittex-exp-w32.tar.xz
Update luajittex.dll (1.12.0), and luajithbtex.dll (1.12.0).