summaryrefslogtreecommitdiff
path: root/systems
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-10-18 03:01:19 +0000
committerNorbert Preining <norbert@preining.info>2019-10-18 03:01:19 +0000
commit05b01edf56c54f79f4d3bd69677b1946f31ef5b8 (patch)
treedb6bf292aae890721f697196097e057e98616b70 /systems
parent4b52b3987478d3197855edc2e7e24276fc2c3cb3 (diff)
CTAN sync 201910180301
Diffstat (limited to 'systems')
-rw-r--r--systems/mac/mactex/ExtrasFolder.pdfbin38237 -> 38234 bytes
-rw-r--r--systems/mac/mactex/Licenses.txt4
-rwxr-xr-xsystems/texlive/tlnet/install-tl28
-rw-r--r--systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl31
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb61
-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.xzbin2123888 -> 2127648 bytes
-rw-r--r--systems/win32/miktex/tm/packages/files.csv.lzmabin509576 -> 506698 bytes
-rw-r--r--systems/win32/miktex/tm/packages/next/files.csv.lzmabin509469 -> 507022 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/ChangeLog6
14 files changed, 105 insertions, 61 deletions
diff --git a/systems/mac/mactex/ExtrasFolder.pdf b/systems/mac/mactex/ExtrasFolder.pdf
index 66a574db6e..3ffc657d9c 100644
--- a/systems/mac/mactex/ExtrasFolder.pdf
+++ b/systems/mac/mactex/ExtrasFolder.pdf
Binary files differ
diff --git a/systems/mac/mactex/Licenses.txt b/systems/mac/mactex/Licenses.txt
index 7489f1309c..db45be4613 100644
--- a/systems/mac/mactex/Licenses.txt
+++ b/systems/mac/mactex/Licenses.txt
@@ -1,6 +1,6 @@
$Id: Licenses.txt,v 1.14 2007/02/28 14:23:19 herbs Exp $
-Brief summary of the licensing of the various applications included as of 2019/10/14
+Brief summary of the licensing of the various applications included as of 2019/10/17
Aquamacs Emacs (Intel) - 3.5 - gpl - http://aquamacs.org/
Aquatkbibtex - 1.3 - gpl - http://aquatkbibtex.sourceforge.net/
@@ -19,4 +19,4 @@ Symbols Widget - 1.4.3 - gpl - http://vocaro.com/trevor/sof
TeX FoG (10.4+) - 1.3.2 - gpl - http://homepage.mac.com/marco_coisson/TeXFoG/
TeX Live Utility (10.6+) - 1.35 - bsd - https://github.com/amaxwell/tlutility/releases
TexMaker (10.12+) - 5.0.3 - gpl - http://www.xm1math.net/texmaker/
-TeXShop (10.10+) - 4.42 - gpl - http://www.uoregon.edu/~koch/texshop/texshop.html
+TeXShop (10.10+) - 4.43 - gpl - http://www.uoregon.edu/~koch/texshop/texshop.html
diff --git a/systems/texlive/tlnet/install-tl b/systems/texlive/tlnet/install-tl
index 68c6f20f18..74be0fd1b9 100755
--- a/systems/texlive/tlnet/install-tl
+++ b/systems/texlive/tlnet/install-tl
@@ -1,5 +1,5 @@
#!/usr/bin/env perl
-# $Id: install-tl 51840 2019-08-07 22:27:00Z karl $
+# $Id: install-tl 52423 2019-10-17 22:32:30Z karl $
# Copyright 2007-2019
# Reinhard Kotucha, Norbert Preining, Karl Berry, Siep Kroonenberg.
# This file is licensed under the GNU General Public License version 2
@@ -8,7 +8,7 @@
# Be careful when changing wording: *every* normal informational message
# output here must be recognized by the long grep in tl-update-tlnet.
-my $svnrev = '$Revision: 51840 $';
+my $svnrev = '$Revision: 52423 $';
$svnrev =~ m/: ([0-9]+) /;
$::installerrevision = ($1 ? $1 : 'unknown');
@@ -180,6 +180,8 @@ use strict;
# global list of lines that get logged (see TLUtils.pm::_logit).
@::LOGLINES = ();
+# if --version, --help, etc., this just gets thrown away, which is ok.
+&log ("TeX Live installer invocation: $0", map { " $_" } @ARGV, "\n");
# global list of warnings
@::WARNLINES = ();
@@ -2122,9 +2124,23 @@ sub read_profile {
} # read_profile
sub do_install_packages {
- my @what;
- foreach my $package (sort keys %install) {
- push @what, $package if ($install{$package} == 1);
+ # let's install the critical packages first, since they are the most
+ # likely to fail (so let's fail early), and nothing is usable without them.
+ my @what = ();
+ foreach my $package (sort {
+ if ($a =~ /$CriticalPackagesRegexp/) {
+ if ($b =~ /$CriticalPackagesRegexp/) {
+ return $a cmp $b; # both critical
+ } else {
+ return -1; # critical before non-critical
+ }
+ } elsif ($b =~ /$CriticalPackagesRegexp/) {
+ return 1; # critical before non-critical
+ } else {
+ return $a cmp $b;
+ }
+ } keys %install) {
+ push (@what, $package) if ($install{$package} == 1);
}
# temporary unset the localtlpdb options responsible for
# running all kind of postactions, since install_packages
@@ -3163,7 +3179,7 @@ This script and its documentation were written for the TeX Live
distribution (L<https://tug.org/texlive>) and both are licensed under the
GNU General Public License Version 2 or later.
-$Id: install-tl 51840 2019-08-07 22:27:00Z karl $
+$Id: install-tl 52423 2019-10-17 22:32:30Z karl $
=cut
# to remake HTML version: pod2html --cachedir=/tmp install-tl >/tmp/itl.html
diff --git a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
index e122dbdaee..c282386612 100644
--- a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
+++ b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
@@ -3,6 +3,9 @@ $mirrors = {
'Algeria' => {
'http://ctan.epst-tlemcen.dz/tex-archive/' => 1
},
+ 'Morocco' => {
+ 'https://mirror.marwan.ma/ctan/' => 1
+ },
'South Africa' => {
'http://ftp.leg.uct.ac.za/pub/packages/ctan/' => 1,
'http://ftp.sun.ac.za/ftp/CTAN/' => 1,
@@ -18,10 +21,16 @@ $mirrors = {
'http://mirrors.tuna.tsinghua.edu.cn/CTAN/' => 1,
'http://mirrors.ustc.edu.cn/CTAN/' => 1
},
+ 'Hong Kong' => {
+ 'https://mirror-hk.koddos.net/CTAN/' => 1
+ },
'India' => {
'http://ctan.imsc.res.in/' => 1,
'http://mirror.iopb.res.in/tex-archive/' => 1
},
+ 'Indonesia' => {
+ 'https://mirror.unpad.ac.id/ctan/' => 1
+ },
'Iran' => {
'http://ctan.yazd.ac.ir/' => 1
},
@@ -40,6 +49,9 @@ $mirrors = {
'Philippines' => {
'http://mirror.pregi.net/tex-archive/' => 1
},
+ 'Singapore' => {
+ 'https://download.nus.edu.sg/mirror/ctan/' => 1
+ },
'Taiwan' => {
'ftp://ftp.ccu.edu.tw/pub/tex/' => 1,
'http://ftp.yzu.edu.tw/CTAN/' => 1
@@ -60,7 +72,8 @@ $mirrors = {
'http://mirrors.dotsrc.org/ctan/' => 1
},
'Finland' => {
- 'ftp://ftp.funet.fi/pub/TeX/CTAN/' => 1
+ 'ftp://ftp.funet.fi/pub/TeX/CTAN/' => 1,
+ 'https://www.texlive.info/CTAN/' => 1
},
'France' => {
'http://ctan.crest.fr/tex-archive/' => 1,
@@ -69,7 +82,8 @@ $mirrors = {
'http://distrib-coffee.ipsl.jussieu.fr/pub/mirrors/ctan/' => 1,
'http://mirror.ibcp.fr/pub/CTAN/' => 1,
'http://mirrors.ircam.fr/pub/CTAN/' => 1,
- 'http://mirrors.standaloneinstaller.com/ctan/' => 1
+ 'http://mirrors.standaloneinstaller.com/ctan/' => 1,
+ 'https://mirrors.chevalier.io/CTAN/' => 1
},
'Germany' => {
'ftp://ftp.fu-berlin.de/tex/CTAN/' => 1,
@@ -80,11 +94,16 @@ $mirrors = {
'http://ftp.fau.de/ctan/' => 1,
'http://mirror.informatik.hs-fulda.de/tex-archive/' => 1,
'http://packages.oth-regensburg.de/ctan/' => 1,
- 'http://vesta.informatik.rwth-aachen.de/ftp/pub/mirror/ctan/' => 1
+ 'http://vesta.informatik.rwth-aachen.de/ftp/pub/mirror/ctan/' => 1,
+ 'https://ctan.kako-dev.de/' => 1,
+ 'https://ctan.net/' => 1
},
'Greece' => {
'http://ftp.cc.uoc.gr/mirrors/CTAN/' => 1
},
+ 'Hungary' => {
+ 'https://mirror.szerverem.hu/ctan/' => 1
+ },
'Italy' => {
'http://ctan.mirror.garr.it/mirrors/CTAN/' => 1
},
@@ -104,7 +123,8 @@ $mirrors = {
},
'Portugal' => {
'ftp://ftp.di.uminho.pt/pub/ctan/' => 1,
- 'http://mirrors.up.pt/pub/CTAN/' => 1
+ 'http://mirrors.up.pt/pub/CTAN/' => 1,
+ 'https://ftp.eq.uc.pt/software/TeX/' => 1
},
'Romania' => {
'http://mirrors.nxthost.com/ctan/' => 1
@@ -128,6 +148,9 @@ $mirrors = {
},
'Switzerland' => {
'http://www.pirbot.com/mirrors/ctan/' => 1
+ },
+ 'UK' => {
+ 'http://anorien.csc.warwick.ac.uk/mirrors/CTAN/' => 1
}
},
'North America' => {
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb b/systems/texlive/tlnet/tlpkg/texlive.tlpdb
index e8ad342c1d..92e9c89007 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/2019
-depend revision/52416
+depend revision/52423
name 00texlive.image
category TLCore
@@ -4049,7 +4049,7 @@ depend opt_w32_multi_user:1
name 00texlive.installer
category TLCore
-revision 52386
+revision 52423
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
@@ -4059,7 +4059,7 @@ longdesc allowed, but in this case, 00texlive.installer is never used
longdesc *except* to build the installer archives, so it's ok. For
longdesc information on the 00texlive prefix see
longdesc 00texlive.installation(.tlpsrc)
-runfiles size=116
+runfiles size=117
install-tl
release-texlive.txt
tlpkg/installer/COPYING.MinGW-runtime.txt
@@ -99170,39 +99170,38 @@ catalogue-version 2.10
name elegantpaper
category Package
-revision 50679
+revision 52420
shortdesc An Elegant LaTeX Template for Working Papers
relocated 1
longdesc ElegantPaper is designed for writing working papers, especially
longdesc for economics students. This template is based on the standard
longdesc LaTeX article class. The goal of this template is to make the
longdesc writing process easier and more comfortable.
-containersize 3348
-containerchecksum 0e816ca471b7ea09e375ebd6c30be63aa708e3f867c9ec4669b03efb7a11483736be56e3b8ea8fa8eaaaa4798fe2b807e9c52d7f307059e619b3eea3d9b2391b
-doccontainersize 450604
-doccontainerchecksum 0210333865225e3ef0d73dc66595cecf27b12b90e1f7946798490c471760f58079a8d9955e062e7160dade30c17ba77e61adbc91b2c3c463703fc07c703e3735
-docfiles size=132
+containersize 3592
+containerchecksum b7fe545c2c9d2e55e0cc9983bc2158d41cf550b228bf3357b8a4a051a32d6692aa7ff2b1fcba33e17cac2fb2852e2bf14467675aabd6b8ff6f1d40f89ff2ebc2
+doccontainersize 611832
+doccontainerchecksum bb99b00f8d826290757907db4179d74222cf4cd992c2bc7c3342a4ad97c2ca83d018ded548571b9acaf9b46d444909be60603710e56638781edf3c036817d470
+docfiles size=239
RELOC/doc/latex/elegantpaper/License
RELOC/doc/latex/elegantpaper/README.md details="Readme"
RELOC/doc/latex/elegantpaper/elegantpaper-cn.pdf details="Package documentation (Chinese)" language="zh"
RELOC/doc/latex/elegantpaper/elegantpaper-cn.tex
RELOC/doc/latex/elegantpaper/elegantpaper-en.pdf details="Package documentation (English)"
RELOC/doc/latex/elegantpaper/elegantpaper-en.tex
- RELOC/doc/latex/elegantpaper/figure/ElegantLaTeX.png
- RELOC/doc/latex/elegantpaper/figure/scatter.pdf
- RELOC/doc/latex/elegantpaper/figure/scatter.py
+ RELOC/doc/latex/elegantpaper/image/donate.jpg
+ RELOC/doc/latex/elegantpaper/image/star.png
RELOC/doc/latex/elegantpaper/wpref.bib
-runfiles size=2
+runfiles size=3
RELOC/tex/latex/elegantpaper/elegantpaper.cls
catalogue-contact-announce https://elegantlatex.org/
catalogue-contact-home https://elegantlatex.org/
catalogue-contact-repository https://github.com/ElegantLaTeX/ElegantPaper/
catalogue-contact-support https://github.com/ElegantLaTeX/ElegantPaper/issues
catalogue-ctan /macros/latex/contrib/elegantpaper
-catalogue-date 2019-03-31 19:57:20 +0200
+catalogue-date 2019-10-17 09:20:52 +0200
catalogue-license lppl1.3c
catalogue-topics class
-catalogue-version 0.07
+catalogue-version 0.08
name elements
category Package
@@ -197457,7 +197456,7 @@ catalogue-version 9.4
name newpx
category Package
-revision 52321
+revision 52421
shortdesc Alternative uses of the PX fonts, with improved metrics
relocated 1
longdesc This package, initially based on pxfonts, provides many fixes
@@ -197468,10 +197467,10 @@ longdesc options. For proper operation, the packages require that the
longdesc packages newtxmath, pxfonts, and TeXGyrePagella be installed
longdesc and their map files enabled.
execute addMap newpx.map
-containersize 1614732
-containerchecksum e87a67d3d4b60fc5614cc297cdbc250e0590159f9104e65e7430d3cdfac3a08850641a7ce87ec155eceb9f0d08d72919916a04c2b0d159117674331f7a68df85
-doccontainersize 444688
-doccontainerchecksum c91ded9ac2b17aae95867990b6946dcbbb19ce689ce1c818065d6a03a0c87864cd7bb0c3bd64abd1364311b794aaa7ab42fe027049ef1b29625adaba72a3cb33
+containersize 1614740
+containerchecksum bd5b9831b0c42c3d3558081085ad469637390d8410dc65ef622bb6cc01583b8b1d7da3b2a6c4c0a1409e1aa15334ac3f33aabd5666dd986c9168203204c143fc
+doccontainersize 444740
+doccontainerchecksum 4a9a94af1171047411df91dc6a105f4fad7431259fd3035f61fa34b5611999486ccd031b1964b367d75a36bb77a92e7a368681fd2e6df3d9160b22194e90e1ce
docfiles size=215
RELOC/doc/fonts/newpx/ChangesInV1.4.txt
RELOC/doc/fonts/newpx/MANIFEST-newpx.txt
@@ -197814,10 +197813,10 @@ runfiles size=1834
RELOC/tex/latex/newpx/unpxtt.fd
catalogue-also pxfonts
catalogue-ctan /fonts/newpx
-catalogue-date 2019-10-09 21:03:38 +0200
+catalogue-date 2019-10-17 06:52:05 +0200
catalogue-license lppl
catalogue-topics font font-body font-maths font-serif font-proportional font-type1 font-otf font-supp font-t1enc
-catalogue-version 1.402
+catalogue-version 1.403
name newsletr
category Package
@@ -281960,15 +281959,15 @@ docfiles size=572
name texlive-docindex
category TLCore
-revision 52403
+revision 52418
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 109876
-containerchecksum 3f58903da98126600b144beade85c07603cefffc5a7762d0686990ccd68ed0035a0eda0d8d747198327257e3343a91c6bfddd9f810a8fbcd37dd2a4394e41ffb
-doccontainersize 155152
-doccontainerchecksum c954f913f2624258cadccda47a6e8520ee0ee9d1beeacb82f091407a9088e3cf9c400acc98d5d3e698a661ee9741adf394b2b7d85e42c30d54bcd974a7898306
+containerchecksum 2af1bc021687ebd0318c30a1d726f29d1d1f360fa7e2a3c608ef5a67e61003731dc8bd331d918ac85dc233fbe5c370223dcce6ec8de7f65ac1c634b21010819f
+doccontainersize 155188
+doccontainerchecksum 5a1efa3699898b7f5d759b1207e2b2b34adc7f18069f2de23cad7160d05d906b094c956ac7a3e34c24bd90b7b0432db80b40b06fbc4c6e55defea6577421ca98
docfiles size=304
doc.html
runfiles size=270
@@ -282185,21 +282184,21 @@ docfiles size=503
name texlive-scripts
category TLCore
-revision 52386
+revision 52423
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 85048
-containerchecksum ac30995bb36e1afbb395c7985c5554f21164fc449a2badf47a8b81f93a891c4bcda97c54f01c350da3877baa0b13ac55877a18d352143bc211f971bf84231a3f
+containersize 85412
+containerchecksum 3c9ed800604708057b63f2d279a8910af768431608957d7befe15039424a15ae78aa8987d3b6ab2818209e0b7990a11baca8aad626df796027086c351fa2faee
doccontainersize 51244
-doccontainerchecksum b69c3cc5c0747362390ad0b88e6bad5e8caaf760941ff560162f144720375f62b448660039ebee901aafb83ff7747ee5f307675833014b98a49590cc44d96961
+doccontainerchecksum babf780f99669c57ce58ed74d70603549dd9d42f80b67cce387f28dbcf6ed1daf680f4eb09657f4a63013acdb2e0afed4cf950f285276915d0e2198b96a767d1
docfiles size=20
texmf-dist/doc/man/man1/install-tl.1
texmf-dist/doc/man/man1/install-tl.man1.pdf
-runfiles size=88
+runfiles size=89
install-tl
texmf-dist/scripts/texlive/lua/texlive/getopt.tlu
texmf-dist/scripts/texlive/lua/texlive/tlpdb.tlu
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
index 29695d80c1..6e069754a4 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
@@ -1 +1 @@
-a85552baa52f6944a4e035aa6c34472e texlive.tlpdb
+81fc6d682bbbf22ae8f20a59f792c30f texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
index 3358a8d386..92ed75732f 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
@@ -1 +1 @@
-47110e96e218bdebb2eedd5058051cd140f9cadfecda27715ec6aa3ee001caa7aec61b96edfd02569e754f775ca1ec8973313b92d9cf4bb2accf6ab1f272e187 texlive.tlpdb
+a19380e3f2dda49e34a161c4eba2660e85ac659f778e789ff6f49a8d8b5e60c67fc6c8ca14f95246521e1c981059cd9eab51844b524a5a9249846fd940cbe6d9 texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
index 2cf0dcc41e..012705cbbd 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-----
-iQEcBAEBCgAGBQJdp63UAAoJEEzhh34ZQ4xwsKoH/2eFDL9Jm0ySyhD6kfet32um
-87yBmBWhAtJI7AXaG9CRfGArA6vVXEc6KAT5scmYhKm0TdFwxNIpdj+49K68tFIM
-PPgu/jTCtYbkvy4Z8HEpdTi+iaTuh5PqqFoemr1upP2ombepZaKaAl0IMfpEwSmm
-MfdlpLzTASfAHti5aZo1PtRRZxromnv2yWItMv9HIXktbCMU3C0Qcp237zyikSDz
-8TlBR4VqQ7eNBB9TFAMS6+z6WCaswHxfz6cjsSYdZOiElt2oTgy1axnaPKGNS/Ms
-i5SiGy8spziwZTYw0db3uAxtk6mhsMg29h7lY03uhrqxCbsx8+Z7y7pmvFdCBgQ=
-=JSrr
+iQEcBAEBCgAGBQJdqP9aAAoJEEzhh34ZQ4xw87AIAJyLFQ6Rhkx+O2hty0t6ZOmJ
+ClRJcxgWJzXiTLhBIwa8DEXeSKCwVKFFdsSc92bLfJWFkjRkdKWZPzbCbjfVWlmm
+/F9F0STxlpoq/ZqEXmZDfWOwL9RnP0RpADmvujBJsGTcezWIT5FqQZv63VIBFnNs
+JNQY8DTvhZWFinhi2LDvKChKEpDhNZQ1VKX0+zq0/Y+UELN1JIAy2Dyol5/dB3AE
+SKrSu3q8OzR3c1i7WTzsafsh46KJXdSyylAWTECZfv71hUFulCOV6W80p1u/ua6D
+NvF3XHDgsaWiVW7/uwfcqjY4AjAVZrt4M/y15EgAzeu4BNkqqReKyulPMt3+JkI=
+=elF8
-----END PGP SIGNATURE-----
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
index 065c57d4f2..1d47ce2c54 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 c159d97f40..710828ab0c 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 55dc5a02eb..f664da510c 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 d02d53b323..6c4e721008 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=1571256917
+date=1571343654
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=3dac5f5995d0fb021979f704ddc54d38
-numpkg=3758
+lstdigest=0ee5ea2f547d83c9913495b4ebd5910a
+numpkg=3759
relstate=next
-version=7228
+version=7229
diff --git a/systems/win32/miktex/tm/packages/pr.ini b/systems/win32/miktex/tm/packages/pr.ini
index 8cb2395505..f832e38f25 100644
--- a/systems/win32/miktex/tm/packages/pr.ini
+++ b/systems/win32/miktex/tm/packages/pr.ini
@@ -2,9 +2,9 @@
[repository]
-date=1571256701
-lastupd=acro adforn adfsymbols alegreya almendra amsmath cabin chemformula circuitikz coelacanth cormorantgaramond cquthesis ebgaramond elements enotez esindex fira graphics kblocks koma-script
-lstdigest=0efb6146797e2de643c8f340c59f0da9
-numpkg=3758
+date=1571343101
+lastupd=accessibility babel breqn cinzel clearsans coelacanth crimsonpro dtk latexbug libertinus-otf lwarp miktex-epstopdf-bin-2.9 miktex-epstopdf-bin-x64-2.9 noto overlock playfair roboto skmath skrapport titlesec
+lstdigest=498975a2c367b2051a86f5c283c9a541
+numpkg=3759
relstate=stable
-version=7228
+version=7229
diff --git a/systems/win32/w32tex/ChangeLog b/systems/win32/w32tex/ChangeLog
index 466ee39223..1219cef327 100644
--- a/systems/win32/w32tex/ChangeLog
+++ b/systems/win32/w32tex/ChangeLog
@@ -1,5 +1,11 @@
W32TeX (x86 & x64) ChangeLog
+[2019/10/17]
+(01) latex.tar.xz
+ Update latexbug.
+(02) tex4htk-w32.tar.xz
+ Update html4.4ht.
+
[2019/10/16]
(01) aleph-w32.tar.xz
Update format files.