From c36a274c633c08115b6006622112f5609031001e Mon Sep 17 00:00:00 2001 From: Norbert Preining Date: Wed, 19 Feb 2020 03:02:04 +0000 Subject: CTAN sync 202002190302 --- systems/texlive/tlnet/tlpkg/TeXLive/TLCrypto.pm | 65 ++++++- systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm | 59 +------ systems/texlive/tlnet/tlpkg/texlive.tlpdb | 191 +++++++++++++-------- systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 | 2 +- systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 | 2 +- .../texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc | 14 +- systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz | Bin 2170332 -> 2168868 bytes systems/win32/miktex/tm/packages/files.csv.lzma | Bin 524554 -> 527381 bytes .../win32/miktex/tm/packages/next/files.csv.lzma | Bin 525043 -> 527430 bytes systems/win32/miktex/tm/packages/next/pr.ini | 6 +- systems/win32/miktex/tm/packages/pr.ini | 8 +- systems/win32/w32tex/ChangeLog | 40 +++++ 12 files changed, 244 insertions(+), 143 deletions(-) (limited to 'systems') diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLCrypto.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLCrypto.pm index 3e4dfb1331..87cff357ed 100644 --- a/systems/texlive/tlnet/tlpkg/TeXLive/TLCrypto.pm +++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLCrypto.pm @@ -1,6 +1,6 @@ -# $Id: TLCrypto.pm 52158 2019-09-23 18:04:33Z karl $ +# $Id: TLCrypto.pm 53820 2020-02-17 03:23:13Z preining $ # TeXLive::TLCrypto.pm - handle checksums and signatures. -# Copyright 2016-2019 Norbert Preining +# Copyright 2016-2020 Norbert Preining # This file is licensed under the GNU General Public License version 2 # or any later version. @@ -12,7 +12,7 @@ use TeXLive::TLConfig; use TeXLive::TLUtils qw(debug ddebug win32 which platform conv_to_w32_path tlwarn tldie); -my $svnrev = '$Revision: 52158 $'; +my $svnrev = '$Revision: 53820 $'; my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown"; sub module_revision { return $_modulerevision; } @@ -34,6 +34,7 @@ C -- checksums and cryptographic signatures TeXLive::TLCrypto::tlchecksum($path); TeXLive::TLCrypto::verify_checksum($file, $url); + TeXLive::TLCrypto::verify_checksum_and_check_return($file, $url); =head2 Signatures @@ -52,6 +53,7 @@ BEGIN { &tlchecksum &tl_short_digest &verify_checksum + &verify_checksum_and_check_return &setup_gpg &verify_signature %VerificationStatusDescription @@ -223,6 +225,63 @@ Return short digest (MD5) of C<$str>. sub tl_short_digest { return (Digest::MD5::md5_hex(shift)); } +# emacs-page +=pod + +=item C<< verify_checksum_and_check_return($file, $tlpdburl [, $is_main, $localcopymode ]) >> + +Calls C<> and checks the various return values +for critical errors, and dies if necessary. + +If C<$is_main> is given and true, an unsigned tlpdb is considered +fatal. If C<$localcopymode> is given and true, do not die for +checksum and connection errors, thus allowing for re-downloading +of a copy. + +=cut + +sub verify_checksum_and_check_return { + my ($file, $path, $is_main, $localcopymode) = @_; + my ($r, $m) = verify_checksum($file, "$path.$ChecksumExtension"); + if ($r == $VS_CHECKSUM_ERROR) { + if (!$localcopymode) { + tldie("$0: checksum error when downloading $file from $path: $m\n"); + } + } elsif ($r == $VS_SIGNATURE_ERROR) { + tldie("$0: signature verification error of $file from $path: $m\n"); + } elsif ($r == $VS_CONNECTION_ERROR) { + if ($localcopymode) { + return(0, $r); + } else { + tldie("$0: cannot download: $m\n"); + } + } elsif ($r == $VS_UNSIGNED) { + if ($is_main) { + tldie("$0: main database at $path is not signed: $m\n"); + } + debug("$0: remote database checksum is not signed, continuing anyway: $m\n"); + return(0, $r); + } elsif ($r == $VS_EXPKEYSIG) { + debug("$0: good signature bug gpg key expired, continuing anyway!\n"); + return(0, $r); + } elsif ($r == $VS_REVKEYSIG) { + debug("$0: good signature but from revoked gpg key, continuing anyway!\n"); + return(0, $r); + } elsif ($r == $VS_GPG_UNAVAILABLE) { + debug("$0: TLPDB: no gpg available, continuing anyway!\n"); + return(0, $r); + } elsif ($r == $VS_PUBKEY_MISSING) { + debug("$0: TLPDB: pubkey missing, continuing anyway!\n"); + return(0, $r); + } elsif ($r == $VS_VERIFIED) { + return(1, $r); + } else { + tldie("$0: unexpected return value from verify_checksum: $r\n"); + } +} + + + # emacs-page =pod diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm index 4dd848a1d2..ce00df5bf7 100644 --- a/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm +++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm @@ -1,12 +1,12 @@ -# $Id: TLPDB.pm 53706 2020-02-07 01:48:10Z preining $ +# $Id: TLPDB.pm 53820 2020-02-17 03:23:13Z preining $ # TeXLive::TLPDB.pm - tlpdb plain text database files. -# Copyright 2007-2019 Norbert Preining +# Copyright 2007-2020 Norbert Preining # This file is licensed under the GNU General Public License version 2 # or any later version. package TeXLive::TLPDB; -my $svnrev = '$Revision: 53706 $'; +my $svnrev = '$Revision: 53820 $'; my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown"; sub module_revision { return $_modulerevision; } @@ -370,57 +370,16 @@ sub from_file { # # before we open and proceed, verify the downloaded file if ($params{'verify'} && $media ne 'local_uncompressed') { - my ($r, $m) = TeXLive::TLCrypto::verify_checksum($tlpdbfile, "$path.$ChecksumExtension"); - if ($r == $VS_CHECKSUM_ERROR) { - tldie("$0: checksum error when downloading $tlpdbfile from $path: $m\n"); - } elsif ($r == $VS_SIGNATURE_ERROR) { - tldie("$0: signature verification error of $tlpdbfile from $path: $m\n"); - } elsif ($r == $VS_CONNECTION_ERROR) { - tldie("$0: cannot download: $m\n"); - } elsif ($r == $VS_UNSIGNED) { - debug("$0: remote database checksum is not signed, continuing anyway: $m\n"); - $self->verification_status($r); - } elsif ($r == $VS_GPG_UNAVAILABLE) { - debug("$0: TLPDB: no gpg available, continuing anyway!\n"); - $self->verification_status($r); - } elsif ($r == $VS_PUBKEY_MISSING) { - debug("$0: TLPDB: pubkey missing, continuing anyway!\n"); - $self->verification_status($r); - } elsif ($r == $VS_VERIFIED) { - $is_verified = 1; - $self->verification_status($r); - } else { - tldie("$0: unexpected return value from verify_checksum: $r\n"); - } + my ($verified, $status) = TeXLive::TLCrypto::verify_checksum_and_check_return($tlpdbfile, $path); + $is_verified = $verified; + $self->verification_status($status); } open($retfh, "<$tlpdbfile") || die "$0: open($tlpdbfile) failed: $!"; } else { if ($params{'verify'} && $media ne 'local_uncompressed') { - my ($r, $m) = TeXLive::TLCrypto::verify_checksum($path, "$path.$ChecksumExtension"); - if ($r == $VS_CHECKSUM_ERROR) { - tldie("$0: checksum error when downloading $path from $path: $m\n"); - } elsif ($r == $VS_SIGNATURE_ERROR) { - tldie("$0: signature verification error of $path from $path: $m\n"); - } elsif ($r == $VS_CONNECTION_ERROR) { - tldie("$0: cannot download: $m\n"); - } elsif ($r == $VS_UNSIGNED) { - debug("$0: remote database checksum is not signed, continuing anyway!\n"); - $self->verification_status($r); - } elsif ($r == $VS_GPG_UNAVAILABLE) { - debug("$0: TLPDB: no gpg available, continuing anyway!\n"); - $self->verification_status($r); - } elsif ($r == $VS_PUBKEY_MISSING) { - debug("$0: TLPDB: pubkey missing, continuing anyway!\n"); - $self->verification_status($r); - } elsif ($r == $VS_EXPKEYSIG) { - debug("$0: TLPDB: signature verified, but key expired, continuing anyway!\n"); - $self->verification_status($r); - } elsif ($r == $VS_VERIFIED) { - $is_verified = 1; - $self->verification_status($r); - } else { - tldie("$0: unexpected return value from verify_checksum: $r\n"); - } + my ($verified, $status) = TeXLive::TLCrypto::verify_checksum_and_check_return($path, $path); + $is_verified = $verified; + $self->verification_status($status); } open(TMP, "<$path") || die "$0: open($path) failed: $!"; $retfh = \*TMP; diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb b/systems/texlive/tlnet/tlpkg/texlive.tlpdb index 98a5adcb33..91145b6222 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/53817 +depend revision/53828 name 00texlive.image category TLCore -revision 53815 +revision 53822 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 @@ -31065,16 +31065,16 @@ catalogue-version 0.1 name beebe category Package -revision 53228 +revision 53819 catalogue biblio shortdesc A collection of bibliographies relocated 1 longdesc A collection of BibTeX bibliographies on TeX-related topics longdesc (including, for example, spell-checking and SGML). Each longdesc includes a LaTeX wrapper file to typeset the bibliography. -containersize 824268 -containerchecksum ce59b5aac1d4625d216100e1c376011a0224c8b89d274177d294b4ccca97ebb4482ecbdd14b24a1d0a54e2c986f26b2a6f4824746612b568d41863510ec833ef -runfiles size=2027 +containersize 824264 +containerchecksum 802a349991ec0418de9a3de2247dd73c904ec5e3223f17cda0dd2805c8012276fabf412b861d656bfdd7aa2da46fec251b7eeae083ac3ed361cf1219f9b2e915 +runfiles size=2025 RELOC/bibtex/bib/beebe/epodd.bib RELOC/bibtex/bib/beebe/font.bib RELOC/bibtex/bib/beebe/printing-history.bib @@ -52597,7 +52597,7 @@ catalogue-version 1.3 name circuit-macros category Package -revision 52410 +revision 53821 shortdesc M4 macros for electric circuit diagrams relocated 1 longdesc A set of m4 macros for drawing high-quality electric circuits @@ -52615,13 +52615,14 @@ longdesc structured. (The m4 and pic processors are readily available longdesc for Unix and PC machines.) Alternative output macros can create longdesc TeX output to be read by pstricks, TikZ commands for use by the longdesc pgf bundle, or SVG. -containersize 1496 -containerchecksum a4b36693356178d6c3c15b9e1829d8d980ba5965ba4ffdd8dbe62ea44a5cb962cd326ddfa34e767b489d879e6ae39a9dcbfa607d3a769b370977d6e4dcf1e54a -doccontainersize 2350732 -doccontainerchecksum 277dc7140b6fe176d27cc62afb018ad266bc946259b38f02f3166e0bc8ba9a5e3fa0b56134d48000545f41e59f1f0343985552bd075cd2d1fe98750c890862ab -docfiles size=1118 +containersize 1480 +containerchecksum 2a4144072152000ae818322ff505c478ff266f40516c218c013dbb1e0e0bcee56b5bf3e4a67f112642348b6931b63946a17f407fa9bda07d5a4c35b326ffa136 +doccontainersize 1737744 +doccontainerchecksum eca330bc347b7f2722f3c609b753cbdcdb8a204c162db8161256fbe1d627fd28b4bc6989cb024316f531fad935f3f927163c2c338373efda58794971ec1d5f5f +docfiles size=1035 RELOC/doc/latex/circuit-macros/CHANGES RELOC/doc/latex/circuit-macros/Copying + RELOC/doc/latex/circuit-macros/Licence.txt RELOC/doc/latex/circuit-macros/Makefile RELOC/doc/latex/circuit-macros/README details="Readme" RELOC/doc/latex/circuit-macros/darrow.m4 @@ -52642,6 +52643,8 @@ docfiles size=1118 RELOC/doc/latex/circuit-macros/doc/ConfigB.m4 RELOC/doc/latex/circuit-macros/doc/ConfigC.m4 RELOC/doc/latex/circuit-macros/doc/Conn.m4 + RELOC/doc/latex/circuit-macros/doc/Contact.m4 + RELOC/doc/latex/circuit-macros/doc/Contacts.m4 RELOC/doc/latex/circuit-macros/doc/Corners.m4 RELOC/doc/latex/circuit-macros/doc/Dac.m4 RELOC/doc/latex/circuit-macros/doc/Darlington.m4 @@ -52696,16 +52699,14 @@ docfiles size=1118 RELOC/doc/latex/circuit-macros/doc/fbfilter.m4 RELOC/doc/latex/circuit-macros/doc/fet.m4 RELOC/doc/latex/circuit-macros/doc/lrarrows.m4 - RELOC/doc/latex/circuit-macros/doc/md.tex RELOC/doc/latex/circuit-macros/doc/mplex.m4 RELOC/doc/latex/circuit-macros/doc/oax.m4 RELOC/doc/latex/circuit-macros/doc/oaxbody.m4 RELOC/doc/latex/circuit-macros/doc/quick.m4 + RELOC/doc/latex/circuit-macros/doc/relaycoil.m4 RELOC/doc/latex/circuit-macros/doc/stringdims.m4 RELOC/doc/latex/circuit-macros/doc/test.tex RELOC/doc/latex/circuit-macros/doc/thyristor.m4 - RELOC/doc/latex/circuit-macros/doc/tran.m4 - RELOC/doc/latex/circuit-macros/doc/tran.tex RELOC/doc/latex/circuit-macros/doc/tranbody.m4 RELOC/doc/latex/circuit-macros/doc/ujt.m4 RELOC/doc/latex/circuit-macros/doc/woodchips.m4 @@ -52713,30 +52714,45 @@ docfiles size=1118 RELOC/doc/latex/circuit-macros/examples/ABlogix.m4 RELOC/doc/latex/circuit-macros/examples/Adder.m4 RELOC/doc/latex/circuit-macros/examples/Alogix.m4 + RELOC/doc/latex/circuit-macros/examples/AmpTable.m4 + RELOC/doc/latex/circuit-macros/examples/Antennas.m4 + RELOC/doc/latex/circuit-macros/examples/AntiqueClock.m4 + RELOC/doc/latex/circuit-macros/examples/Audio.m4 RELOC/doc/latex/circuit-macros/examples/Autologix.m4 RELOC/doc/latex/circuit-macros/examples/Ball.m4 + RELOC/doc/latex/circuit-macros/examples/Bip.m4 RELOC/doc/latex/circuit-macros/examples/Blogix.m4 RELOC/doc/latex/circuit-macros/examples/Btree.m4 RELOC/doc/latex/circuit-macros/examples/Buttons.m4 RELOC/doc/latex/circuit-macros/examples/Byte.m4 RELOC/doc/latex/circuit-macros/examples/CSlight.m4 RELOC/doc/latex/circuit-macros/examples/CanLogic.m4 + RELOC/doc/latex/circuit-macros/examples/CctTable.m4 RELOC/doc/latex/circuit-macros/examples/Ccurve.m4 RELOC/doc/latex/circuit-macros/examples/Chuck.m4 + RELOC/doc/latex/circuit-macros/examples/Conn.m4 + RELOC/doc/latex/circuit-macros/examples/Contact.m4 + RELOC/doc/latex/circuit-macros/examples/Contacts.m4 RELOC/doc/latex/circuit-macros/examples/Counting.m4 RELOC/doc/latex/circuit-macros/examples/Crossbar.m4 RELOC/doc/latex/circuit-macros/examples/Crow.m4 RELOC/doc/latex/circuit-macros/examples/Cruller.m4 RELOC/doc/latex/circuit-macros/examples/Csource.m4 RELOC/doc/latex/circuit-macros/examples/Decoder.m4 + RELOC/doc/latex/circuit-macros/examples/Demultiplexer.m4 + RELOC/doc/latex/circuit-macros/examples/Dini.m4 + RELOC/doc/latex/circuit-macros/examples/Diodes.m4 RELOC/doc/latex/circuit-macros/examples/Drive.m4 + RELOC/doc/latex/circuit-macros/examples/Emarrows.m4 RELOC/doc/latex/circuit-macros/examples/Escher.m4 RELOC/doc/latex/circuit-macros/examples/Euro.m4 RELOC/doc/latex/circuit-macros/examples/Floor.m4 RELOC/doc/latex/circuit-macros/examples/Flow.m4 RELOC/doc/latex/circuit-macros/examples/FlowchartDefs.m4 - RELOC/doc/latex/circuit-macros/examples/GnuMakefile + RELOC/doc/latex/circuit-macros/examples/Fuses.m4 RELOC/doc/latex/circuit-macros/examples/GrayCode.m4 + RELOC/doc/latex/circuit-macros/examples/Grounds.m4 + RELOC/doc/latex/circuit-macros/examples/Headers.m4 RELOC/doc/latex/circuit-macros/examples/Heathkit.m4 RELOC/doc/latex/circuit-macros/examples/I2L.m4 RELOC/doc/latex/circuit-macros/examples/IC10107.m4 @@ -52745,37 +52761,52 @@ docfiles size=1118 RELOC/doc/latex/circuit-macros/examples/Incl.pdf RELOC/doc/latex/circuit-macros/examples/Incleps.m4 RELOC/doc/latex/circuit-macros/examples/Inclpdf.m4 + RELOC/doc/latex/circuit-macros/examples/Jack.m4 RELOC/doc/latex/circuit-macros/examples/Koch.m4 + RELOC/doc/latex/circuit-macros/examples/Logic.m4 RELOC/doc/latex/circuit-macros/examples/Loglog.m4 RELOC/doc/latex/circuit-macros/examples/MC.m4 RELOC/doc/latex/circuit-macros/examples/Makefile RELOC/doc/latex/circuit-macros/examples/Mixer.m4 - RELOC/doc/latex/circuit-macros/examples/MosfetElements.m4 RELOC/doc/latex/circuit-macros/examples/MotorControl.m4 + RELOC/doc/latex/circuit-macros/examples/Multiplexer.m4 + RELOC/doc/latex/circuit-macros/examples/NLG.m4 + RELOC/doc/latex/circuit-macros/examples/NPDT.m4 + RELOC/doc/latex/circuit-macros/examples/Nport.m4 RELOC/doc/latex/circuit-macros/examples/OpAmpFilter.m4 + RELOC/doc/latex/circuit-macros/examples/Opamp.m4 RELOC/doc/latex/circuit-macros/examples/Optoiso.m4 RELOC/doc/latex/circuit-macros/examples/Orbits.m4 RELOC/doc/latex/circuit-macros/examples/PPA.m4 + RELOC/doc/latex/circuit-macros/examples/Pconn.m4 RELOC/doc/latex/circuit-macros/examples/Planes.m4 RELOC/doc/latex/circuit-macros/examples/PushPull.m4 RELOC/doc/latex/circuit-macros/examples/Quantum.m4 RELOC/doc/latex/circuit-macros/examples/README-examples RELOC/doc/latex/circuit-macros/examples/Rectifiers.m4 + RELOC/doc/latex/circuit-macros/examples/Relay.m4 RELOC/doc/latex/circuit-macros/examples/Resolver.m4 RELOC/doc/latex/circuit-macros/examples/Rotbox.m4 RELOC/doc/latex/circuit-macros/examples/SPM.m4 RELOC/doc/latex/circuit-macros/examples/SQUID.m4 RELOC/doc/latex/circuit-macros/examples/Schottky.m4 RELOC/doc/latex/circuit-macros/examples/Shaky.m4 + RELOC/doc/latex/circuit-macros/examples/ShiftR.m4 RELOC/doc/latex/circuit-macros/examples/Sierpinski.m4 RELOC/doc/latex/circuit-macros/examples/Sixpole.m4 + RELOC/doc/latex/circuit-macros/examples/Sources.m4 + RELOC/doc/latex/circuit-macros/examples/Switches.m4 RELOC/doc/latex/circuit-macros/examples/TTLnand.m4 + RELOC/doc/latex/circuit-macros/examples/Tgate.m4 RELOC/doc/latex/circuit-macros/examples/Three.m4 RELOC/doc/latex/circuit-macros/examples/Timer.m4 RELOC/doc/latex/circuit-macros/examples/Ttree.m4 RELOC/doc/latex/circuit-macros/examples/Tubediags.m4 + RELOC/doc/latex/circuit-macros/examples/Variable.m4 RELOC/doc/latex/circuit-macros/examples/Wheat.m4 + RELOC/doc/latex/circuit-macros/examples/Windings.m4 RELOC/doc/latex/circuit-macros/examples/XOR.m4 + RELOC/doc/latex/circuit-macros/examples/Xform.m4 RELOC/doc/latex/circuit-macros/examples/Zcos.m4 RELOC/doc/latex/circuit-macros/examples/birds.m4 RELOC/doc/latex/circuit-macros/examples/bistable.m4 @@ -52784,7 +52815,6 @@ docfiles size=1118 RELOC/doc/latex/circuit-macros/examples/clock.m4 RELOC/doc/latex/circuit-macros/examples/control.m4 RELOC/doc/latex/circuit-macros/examples/csc.m4 - RELOC/doc/latex/circuit-macros/examples/darrows.m4 RELOC/doc/latex/circuit-macros/examples/debug1.tex RELOC/doc/latex/circuit-macros/examples/debug2.m4 RELOC/doc/latex/circuit-macros/examples/diamond.m4 @@ -52795,7 +52825,6 @@ docfiles size=1118 RELOC/doc/latex/circuit-macros/examples/ex04.m4 RELOC/doc/latex/circuit-macros/examples/ex05.m4 RELOC/doc/latex/circuit-macros/examples/ex06.m4 - RELOC/doc/latex/circuit-macros/examples/ex07.m4 RELOC/doc/latex/circuit-macros/examples/ex08.m4 RELOC/doc/latex/circuit-macros/examples/ex09.m4 RELOC/doc/latex/circuit-macros/examples/ex10.m4 @@ -52809,6 +52838,7 @@ docfiles size=1118 RELOC/doc/latex/circuit-macros/examples/examples.pdf RELOC/doc/latex/circuit-macros/examples/examples.tex RELOC/doc/latex/circuit-macros/examples/exp.m4 + RELOC/doc/latex/circuit-macros/examples/fet.m4 RELOC/doc/latex/circuit-macros/examples/files.tex RELOC/doc/latex/circuit-macros/examples/graysurf.m4 RELOC/doc/latex/circuit-macros/examples/header.tex @@ -52820,24 +52850,22 @@ docfiles size=1118 RELOC/doc/latex/circuit-macros/examples/mf/cct.tfm RELOC/doc/latex/circuit-macros/examples/mf/font.m4 RELOC/doc/latex/circuit-macros/examples/mf/mftest - RELOC/doc/latex/circuit-macros/examples/mode.tex RELOC/doc/latex/circuit-macros/examples/mpost/Makefile RELOC/doc/latex/circuit-macros/examples/mpost/README-mpost RELOC/doc/latex/circuit-macros/examples/mpost/examplesmpost.tex RELOC/doc/latex/circuit-macros/examples/mpost/mptest RELOC/doc/latex/circuit-macros/examples/mpost/tstmpost.tex + RELOC/doc/latex/circuit-macros/examples/odistmakefile RELOC/doc/latex/circuit-macros/examples/person.m4 - RELOC/doc/latex/circuit-macros/examples/pgf/Makefile - RELOC/doc/latex/circuit-macros/examples/pgf/README-pgf - RELOC/doc/latex/circuit-macros/examples/pgf/examplespgf.tex - RELOC/doc/latex/circuit-macros/examples/pgf/tstpgf.tex RELOC/doc/latex/circuit-macros/examples/psfrag/Makefile RELOC/doc/latex/circuit-macros/examples/psfrag/README-psfrag.txt RELOC/doc/latex/circuit-macros/examples/psfrag/examplespsfrag.tex RELOC/doc/latex/circuit-macros/examples/psfrag/tstpsfrag.tex RELOC/doc/latex/circuit-macros/examples/pwrsupply.m4 + RELOC/doc/latex/circuit-macros/examples/quick.m4 RELOC/doc/latex/circuit-macros/examples/random.m4 RELOC/doc/latex/circuit-macros/examples/recycle.m4 + RELOC/doc/latex/circuit-macros/examples/relaycoil.m4 RELOC/doc/latex/circuit-macros/examples/rose.m4 RELOC/doc/latex/circuit-macros/examples/rotate.tex RELOC/doc/latex/circuit-macros/examples/rotatetext.m4 @@ -52851,6 +52879,7 @@ docfiles size=1118 RELOC/doc/latex/circuit-macros/examples/svg/AlogixSVG.m4 RELOC/doc/latex/circuit-macros/examples/svg/AmpTableSVG.m4 RELOC/doc/latex/circuit-macros/examples/svg/AntennasSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/AntiqueClockSVG.m4 RELOC/doc/latex/circuit-macros/examples/svg/AudioSVG.m4 RELOC/doc/latex/circuit-macros/examples/svg/Banking.m4 RELOC/doc/latex/circuit-macros/examples/svg/BipSVG.m4 @@ -52860,6 +52889,8 @@ docfiles size=1118 RELOC/doc/latex/circuit-macros/examples/svg/CanLogicSVG.m4 RELOC/doc/latex/circuit-macros/examples/svg/CctTableSVG.m4 RELOC/doc/latex/circuit-macros/examples/svg/ConnSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ContactSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/ContactsSVG.m4 RELOC/doc/latex/circuit-macros/examples/svg/CountingSVG.m4 RELOC/doc/latex/circuit-macros/examples/svg/CrossbarSVG.m4 RELOC/doc/latex/circuit-macros/examples/svg/CrowSVG.m4 @@ -52867,6 +52898,7 @@ docfiles size=1118 RELOC/doc/latex/circuit-macros/examples/svg/CsourceSVG.m4 RELOC/doc/latex/circuit-macros/examples/svg/DecoderSVG.m4 RELOC/doc/latex/circuit-macros/examples/svg/DemultiplexerSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/DiniSVG.m4 RELOC/doc/latex/circuit-macros/examples/svg/DiodesSVG.m4 RELOC/doc/latex/circuit-macros/examples/svg/DriveSVG.m4 RELOC/doc/latex/circuit-macros/examples/svg/EmarrowsSVG.m4 @@ -52951,6 +52983,7 @@ docfiles size=1118 RELOC/doc/latex/circuit-macros/examples/svg/quickSVG.m4 RELOC/doc/latex/circuit-macros/examples/svg/randomSVG.m4 RELOC/doc/latex/circuit-macros/examples/svg/recycleSVG.m4 + RELOC/doc/latex/circuit-macros/examples/svg/relaycoilSVG.m4 RELOC/doc/latex/circuit-macros/examples/svg/roseSVG.m4 RELOC/doc/latex/circuit-macros/examples/svg/sfgSVG.m4 RELOC/doc/latex/circuit-macros/examples/svg/shapesSVG.m4 @@ -52958,13 +52991,14 @@ docfiles size=1118 RELOC/doc/latex/circuit-macros/examples/svg/tstSVG.htmx RELOC/doc/latex/circuit-macros/examples/svg/ujtSVG.m4 RELOC/doc/latex/circuit-macros/examples/svg/wormSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/xx.html RELOC/doc/latex/circuit-macros/examples/test.m4 RELOC/doc/latex/circuit-macros/examples/testpdf.tex + RELOC/doc/latex/circuit-macros/examples/thyristor.m4 RELOC/doc/latex/circuit-macros/examples/tikz.tex RELOC/doc/latex/circuit-macros/examples/tst.tex RELOC/doc/latex/circuit-macros/examples/tst1.tex RELOC/doc/latex/circuit-macros/examples/tubedefs.m4 + RELOC/doc/latex/circuit-macros/examples/ujt.m4 RELOC/doc/latex/circuit-macros/examples/windows.m4 RELOC/doc/latex/circuit-macros/examples/worm.m4 RELOC/doc/latex/circuit-macros/examples/xfig/Makefile @@ -52987,11 +53021,11 @@ runfiles size=1 RELOC/tex/latex/circuit-macros/boxdims.sty catalogue-also circ circuitikz catalogue-contact-home https://ece.uwaterloo.ca/~aplevich/Circuit_macros/ -catalogue-contact-repository https://ece.uwaterloo.ca/~aplevich/Circuit_macros/ +catalogue-contact-repository https://gitlab.com/aplevich/circuit_macros catalogue-ctan /graphics/circuit_macros -catalogue-license lppl +catalogue-license lppl1.3c catalogue-topics diagram-circ electronic -catalogue-version 9.1 +catalogue-version 9.2 name circuitikz category Package @@ -122395,20 +122429,21 @@ catalogue-version 0.5 name ghsystem category Package -revision 53440 +revision 53822 shortdesc Globally harmonised system of chemical (etc) naming relocated 1 longdesc The package provides the means to typeset all the hazard and longdesc precautionary statements and pictograms in a straightforward longdesc way. The statements are taken from EU regulation 1272/2008. -containersize 1834340 -containerchecksum 8eb85f9d93ce8e0476380447024c14eb92dedac4af30bae4ff212117b00e7416f189e40ea37ae2724a0de17c8a9e589d02b6e1c32097d57577e4968c2cd0d1e0 -doccontainersize 717992 -doccontainerchecksum e492591cf9566a39545f37b3af412902515cb4120c622038873339e12fb79b9d3a960db8adab8bc24efa86fbd5cff4d2fb22c81f556eb05f43089fd4e2045a88 -docfiles size=197 +containersize 1833412 +containerchecksum 42f94adda3268ce20f664113211d3c32e7ee005db053f3daecf72d381dd4c4cc2e78610b821cd4b43c4543610bc66170513c4fd9357445977a8a2ffc6bf140f2 +doccontainersize 721592 +doccontainerchecksum d2f1f42177ea820d209e9574def8efc0dcf9fac0c73ce1c9eeaace7bc0b25fc470ff7265ca8a4f42f6482dba61d7d764b2171268c168aa7eb154bb6f9672f52a +docfiles size=200 RELOC/doc/latex/ghsystem/README details="Readme" - RELOC/doc/latex/ghsystem/ghsystem_en.pdf details="Package documentation" - RELOC/doc/latex/ghsystem/ghsystem_en.tex + RELOC/doc/latex/ghsystem/ghsystem-manual.cls + RELOC/doc/latex/ghsystem/ghsystem-manual.pdf details="Package documentation" + RELOC/doc/latex/ghsystem/ghsystem-manual.tex runfiles size=1491 RELOC/tex/latex/ghsystem/ghsystem.sty RELOC/tex/latex/ghsystem/language/ghsystem_english.def @@ -122576,7 +122611,7 @@ catalogue-contact-repository https://github.com/cgnieder/ghsystem/ catalogue-ctan /macros/latex/contrib/ghsystem catalogue-license lppl1.3 catalogue-topics chemistry expl3 -catalogue-version 4.8b +catalogue-version 4.8c name gillcm category Package @@ -175931,7 +175966,7 @@ catalogue-version 20200209.0 name luatexko category Package -revision 53001 +revision 53824 shortdesc Typeset Korean with Lua(La)TeX relocated 1 longdesc This is a Lua(La)TeX macro package that supports typesetting @@ -175942,16 +175977,16 @@ longdesc package rather than other Hangul macros operating on other longdesc engines. LuaTeX version 1.10+ and luaotfload version 2.96+ are longdesc required for this package to run. This package also requires longdesc the cjk-ko package for its full functionality. -containersize 21760 -containerchecksum c2bcb40046bbc084474a113ae95cfaf5972fe2dd757befd8faa8849acee03493d495f57f46e046120f72ddf200078872ddcabe16f960f31c9c94466b79b6dbe0 -doccontainersize 300508 -doccontainerchecksum e746e10f4998b72e1999f1096797bc476b24b1ca82ddb7c460cbf83d65a8c0a2735b87b576189835bd02660450317cf66bbf175b335a7dd4c80b4ae165f23b22 -docfiles size=83 +containersize 22548 +containerchecksum 50408947cdec08f41d081829f4cebd832aa817c233feb1fafa5e88bf38386232c2d04485e7feb8ea3056a0d0cc057975da2ed985bb485533f05c4cf7e56f6fa2 +doccontainersize 333976 +doccontainerchecksum 645725cb6fae45627c9524ff45bf2851553764d0c1ea5fa2c6024aec1f00963f9c5baa787442bfb1ff9af0b70cd63ab4aada40dc32b11274e19296e9eee208a2 +docfiles size=91 RELOC/doc/luatex/luatexko/ChangeLog RELOC/doc/luatex/luatexko/README details="Readme" RELOC/doc/luatex/luatexko/luatexko-doc.pdf details="Package documentation" RELOC/doc/luatex/luatexko/luatexko-doc.tex -runfiles size=29 +runfiles size=30 RELOC/tex/luatex/luatexko/luatexko-normalize.lua RELOC/tex/luatex/luatexko/luatexko-uhc2utf8.lua RELOC/tex/luatex/luatexko/luatexko.lua @@ -175961,7 +175996,7 @@ catalogue-contact-repository https://github.com/dohyunkim/luatexko catalogue-ctan /macros/luatex/generic/luatexko catalogue-license lppl1.3c catalogue-topics luatex korean -catalogue-version 2.5 +catalogue-version 2.6 name luatextra category Package @@ -175997,7 +176032,7 @@ catalogue-version 1.0.1 name luatodonotes category Package -revision 45454 +revision 53825 shortdesc Add editing annotations in a LuaLaTeX document relocated 1 longdesc The package allows the user to insert comments into a document @@ -176007,19 +176042,19 @@ longdesc different styles for the comments may be used; the styles are longdesc selected using package options. The package is based on the longdesc package todonotes, and depends heavily on Lua, so it can only longdesc be used with LuaLaTeX. -containersize 26228 -containerchecksum df5879d73d416054a5146919a59c2bcc7564f6895cd32b3a93e287c62f406f7d53dca0f6dc3da1e1380027e8403aebea75076dc50517dc697b8f9fb2279cab47 -doccontainersize 206800 -doccontainerchecksum bf2f0e49cd323e7439c1ce98c76deb0384c9b9a540764eccf3322da50ae939e855e5a002b41fd00e280aaf8d135959ec87b05830e9634e8d1bc701df97568852 -docfiles size=53 +containersize 26600 +containerchecksum 4cc24f72014d50179fa1cd3630a483677a98a5dedd28e94f2c7003c3c61eae66bf9b6787bcde81b654f4187d873440828655be372b4d6bbf59c802da23beaeea +doccontainersize 209076 +doccontainerchecksum 2b7298a56975f0ac71bf6c0327d95531622de23a33c4a1999cdd35ae960766342071722e388fd3d9fc10fcbd23c0752e5e5399516c8465f7e66f5ea8b952e447 +docfiles size=54 RELOC/doc/lualatex/luatodonotes/README.md details="Readme" RELOC/doc/lualatex/luatodonotes/luatodonotes.pdf details="Package documentation" -srccontainersize 20308 -srccontainerchecksum 6c7c1a9669405da4e07dc218ac84c23018923314dc3fc77a89a2755ab458fca7a3a35b6fd17dfbd4e7bd5deaab63bcb09af8e81d83680246eff43bf7a2b177c9 +srccontainersize 20788 +srccontainerchecksum 0ed8cbb2160246c499ed98a7865216e8f5739a7c87a1b9a6ef8b63944a4b3f2c6a011ebb4276486d2ff8fca96428b0c25e87936fade5967cf41f7cee79307880 srcfiles size=22 RELOC/source/lualatex/luatodonotes/luatodonotes.dtx RELOC/source/lualatex/luatodonotes/luatodonotes.ins -runfiles size=34 +runfiles size=35 RELOC/tex/lualatex/luatodonotes/inspect.lua RELOC/tex/lualatex/luatodonotes/luatodonotes.lua RELOC/tex/lualatex/luatodonotes/luatodonotes.sty @@ -176031,7 +176066,7 @@ catalogue-contact-repository https://github.com/fabianlipp/luatodonotes catalogue-ctan /macros/luatex/latex/luatodonotes catalogue-license lppl1.2 catalogue-topics notes editorial luatex use-lua -catalogue-version 0.4 +catalogue-version 0.5 name luavlna category Package @@ -242439,7 +242474,7 @@ catalogue-topics format japanese name ptex-fontmaps category Package -revision 51023 +revision 53823 shortdesc Font maps and configuration tools for Japanese/Chinese/Korean fonts with (u)ptex longdesc This package provides font maps and setup tools for Japanese, longdesc Korean, Traditional Chinese, and Simplified Chinese. It is the @@ -242451,18 +242486,20 @@ depend arphic-ttf depend baekmuk depend ipaex depend ptex-fontmaps.ARCH -containersize 37432 -containerchecksum 8951d9e1bc4b2f2e4ac7bc5cb3b56ddd3924684c65edb35ff680e72ede7aa3f15b92a1cad39d8e6652cf76abaa51e72115aface47068031c6b24fc82c5e6531c -doccontainersize 4524 -doccontainerchecksum c5e0f4b4ac9c657b83c27ced5bf3d4eccf993db6518fbb750e8a0b91752b40193a947a3ac2c53a82270be2f8ea736711b5a60e59f29c424bb3ca612038be8972 -docfiles size=7 +containersize 38240 +containerchecksum 948d156244b16385b0b4622662bcb12651be4bd5522b335bc0b24f1e0ddf48241a5fd4e7aca976e471d418a659b777735f14948b863894ea1fed0d2b5e44e4c8 +doccontainersize 184396 +doccontainerchecksum 2e347f1a2be0c32d90daee6c351b6c71e757a3fbe694f97d50836a6a57187f72004d8cd8051a9bf1a22d77ea618566dadc7027fe24bdd0dd2dff3d8afd290231 +docfiles size=55 texmf-dist/doc/fonts/ptex-fontmaps/README details="Readme" texmf-dist/doc/fonts/ptex-fontmaps/examples/otf-sample-04.tex texmf-dist/doc/fonts/ptex-fontmaps/examples/otf-sample.tex texmf-dist/doc/fonts/ptex-fontmaps/examples/ptex-sample.tex texmf-dist/doc/fonts/ptex-fontmaps/examples/series-compare.tex + texmf-dist/doc/fonts/ptex-fontmaps/kanji-config-updmap.pdf + texmf-dist/doc/fonts/ptex-fontmaps/kanji-config-updmap.tex srccontainersize 305384 -srccontainerchecksum 10b3aa3fabaae3f7307861401b7b47e14b62a5f075fbf79dcec44e99ceaccd2e208b09aa9733e850d01938332c31ad399540b5d98a38ffe29261aaf794dd66ee +srccontainerchecksum 70ea9c04d3a1c4d4e066036e6b1ff328e7c6903e2b57962ccee08c85820d0b2c20a36b684280779301c903c1706f95da5122cbde5c706329e304bc88cf3a0575 srcfiles size=250 texmf-dist/source/ptex-fontmaps/jis04cmap_exp/JISX0213-2004-H texmf-dist/source/ptex-fontmaps/jis04cmap_exp/JISX0213-2004-V @@ -242475,7 +242512,7 @@ srcfiles size=250 texmf-dist/source/ptex-fontmaps/jis04cmap_exp/jisx0213-2004-8bit-std.txt texmf-dist/source/ptex-fontmaps/jis04cmap_exp/mk_jis_to_aj16_cid.lua texmf-dist/source/ptex-fontmaps/script/updmap-otf.sh -runfiles size=235 +runfiles size=241 texmf-dist/fonts/cmap/ptex-fontmaps/2004-H texmf-dist/fonts/cmap/ptex-fontmaps/2004-V texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/adobe/otf-ko-adobe.map @@ -242514,6 +242551,12 @@ runfiles size=235 texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/fandol/uptex-sc-fandol.map texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/founder/otf-sc-founder.map texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/founder/uptex-sc-founder.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/haranoaji/otf-haranoaji.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/haranoaji/otf-up-haranoaji.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/haranoaji/ptex-haranoaji-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/haranoaji/ptex-haranoaji.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/haranoaji/uptex-haranoaji-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/haranoaji/uptex-haranoaji.map texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino-pron/otf-hiragino-pron.map texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino-pron/otf-up-hiragino-pron.map texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino-pron/ptex-hiragino-pron-04.map @@ -242685,7 +242728,7 @@ catalogue-contact-repository https://github.com/texjporg/jfontmaps catalogue-ctan /fonts/ptex-fontmaps catalogue-license pdgpl3 catalogue-topics font-use japanese chinese korean -catalogue-version 20190506.0 +catalogue-version 20200217.0 name ptex-fontmaps.aarch64-linux category Package @@ -284258,15 +284301,15 @@ docfiles size=572 name texlive-docindex category TLCore -revision 53788 +revision 53819 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 421c8e29bce9cdf322a1ae34d9348bf7bff9130612e7c27a689bf2f9a42623bf4250a8130f878a1b37d3e747e8a9f9e9c7173fe64c66ddafba89c863b164a126 -doccontainersize 158748 -doccontainerchecksum a3948a7d3c1c53af51d2f600031ee6bd269e9846c86ef278a9e24c4176845e56c010f52be06d3d23747cfc38506f35abfdc0d12bd043cc253186120c5b45343d +containerchecksum 13311fb6b32bac577f789cf9a2293a943306d1af3efb03f8e27fcd1cd6853d4550fb8dafdace30f0b6610f0f2b4e93e75961ca97d8a1472b477b9895642c0820 +doccontainersize 158784 +doccontainerchecksum 4e3b7d82a3dc7c4875d8980bf6b6c8758b9b80825b58d9780f164c736d2e403e6d2265d79b0cfea10959b43cb6730633239c8cdbb301f1a5225ecffaabb1e276 docfiles size=311 doc.html @@ -316935,7 +316978,7 @@ catalogue-topics font-supp xetex name xetexko category Package -revision 53002 +revision 53826 shortdesc Typeset Korean with Xe(La)TeX relocated 1 longdesc The package supports typesetting Korean documents (including @@ -316943,10 +316986,10 @@ longdesc old Hangul texts), using XeTeX. It enhances the existing longdesc support, in XeTeX, providing features that provide quality longdesc typesetting. This package requires the cjk-ko package for its longdesc full functionality. -containersize 57320 -containerchecksum 3ae003d575d77e92b0de276865f654f9482101b6810342370e3b09020636b08a9fd02b2045fc290937f35b4d721b23924d602f74b7ea63834216f2102636fd92 -doccontainersize 236080 -doccontainerchecksum cb9ed010e314eff46a5f2edb7afd64c1629d85c6dc202a3cf9376fdc42bc85e9c22d7d38b66f07476e9de0b7ee7f4a605d8cb26e8bdf442db78161c9c592b673 +containersize 57260 +containerchecksum 96d6e74e10d39f2ab84c98a53b42800154183f4e80242f88209a0afec6734306c8a454cda44b5f171ee96229e1bcc06d2f35d57f2586ee53b403e6828d0213ea +doccontainersize 235856 +doccontainerchecksum 433f09555146f3de3c1d7bbdfc51ee2cb05803f9cf3d1a69d34d049d30e183ffd302273aea52b868e3dba08e64459b2d6bddc6d15284812b119d6a3b07f40dac docfiles size=67 RELOC/doc/xetex/xetexko/ChangeLog RELOC/doc/xetex/xetexko/README details="Readme" @@ -316966,7 +317009,7 @@ catalogue-contact-repository https://github.com/dohyunkim/xetexko catalogue-ctan /macros/xetex/generic/xetexko catalogue-license lppl1.3c catalogue-topics korean xetex -catalogue-version 2.22 +catalogue-version 2.23 name xetexref category Package diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 index 0b461247f3..df6119a37a 100644 --- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 +++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 @@ -1 +1 @@ -95f042f8d86c1ed1e14885130ceebd51 texlive.tlpdb +2c54d67b7e8e53e4e6b308b587b3522f texlive.tlpdb diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 index 21317b1e4d..b45e4fa3fe 100644 --- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 +++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 @@ -1 +1 @@ -8732611666762e2755221d6eaf540c8f84246225c473462c8810309ad0e354e3b5c6ca193ce85803824d31cb4f080ba71bca50c25a0e4b29a247df4e346f8805 texlive.tlpdb +8b92026a6cb71784076d39e36683cb59e7e86809ddb823fede5bb2748e8bb153e17121f66ab4c1bdb306ced9dffeed606f3a65ada14bf40fc9f15dfcb923989b texlive.tlpdb diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc index de38d044ce..10804cac60 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----- -iQEcBAEBCgAGBQJeSeShAAoJEEzhh34ZQ4xw/fkH/2C3xtFZGJ3rEqL3YNU8d86s -Gjd41JpXh6pgtBfDqDOUMsyZRDSzevIZ5sqi7dg/bpcnS+jEwRUWLuqkgoScT9yC -P67jj5zvHkc3+9LlzQJnG8ipe/GKLiK45vtTfuUQ9wWgU2clEPafJ7M8ssE4EQLm -JZzKzDlRZu1oLdWem7q8AoN40JH/N44f5f69nkw/ks/ZPGsW/6e8o8z/8cjxq+e5 -esgE8NXirOsOTalwMtpnn6CHuQdQo/1roMHQoPBwExACJ3nNUNNDANU8V3Wc4/vN -b0X0xrSlc8IrSWbZhzo/q1sNCML3+DclRYAGbXNNSd1RkQqMMbb/GRE/FWF09y4= -=Fh0D +iQEcBAEBCgAGBQJeSzXgAAoJEEzhh34ZQ4xwgf4IAJwH7nX1CGgdsfIGPSg8n1gM +4tn2R2BZuxYfjMw8WqrdlMlnPr+D/zIL0ew7nXbA66sXm9sqc8XMnjHRHvM48co/ +fq5MvAMax/I9EAL5ZJhX8zAvCmQQ9U1dfxcbWUDOWsq7mNcIBwFFAFaVHuvvn+LG +uYQ6OfE6mD/M3xu/Y/R5KAxP5cUDZeN6Oqmyp28y2dXHPnLmg4zwZMva8q35rzme +XO5IsPjyqKgexjd16g7HXTSK75dmbz0LBn/rJoQxXa39TY9T734ypq8LWUgL1wRC +biqWoSryNSLi8hRld/AO44ziVjBAAMjwObep2scbxlZgB7lF7TdedWv8cPWFHyc= +=dN9d -----END PGP SIGNATURE----- diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz index b513d6a34f..3eb997cd30 100644 Binary files a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz and b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz differ diff --git a/systems/win32/miktex/tm/packages/files.csv.lzma b/systems/win32/miktex/tm/packages/files.csv.lzma index 6a54d4a787..07eb80a25f 100644 Binary files a/systems/win32/miktex/tm/packages/files.csv.lzma and b/systems/win32/miktex/tm/packages/files.csv.lzma differ diff --git a/systems/win32/miktex/tm/packages/next/files.csv.lzma b/systems/win32/miktex/tm/packages/next/files.csv.lzma index 9b59b21f0f..a5691dffb9 100644 Binary files a/systems/win32/miktex/tm/packages/next/files.csv.lzma and b/systems/win32/miktex/tm/packages/next/files.csv.lzma differ diff --git a/systems/win32/miktex/tm/packages/next/pr.ini b/systems/win32/miktex/tm/packages/next/pr.ini index 4522200f7d..5c92c59b21 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=1581974288 +date=1582060530 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=3e8b18c18764658c91f683d8adeee6ef +lstdigest=d16b3258917cab737b2fa206ecad10ae numpkg=3862 relstate=next -version=7352 +version=7353 diff --git a/systems/win32/miktex/tm/packages/pr.ini b/systems/win32/miktex/tm/packages/pr.ini index 5e4a4e10b6..8bf3a516fd 100644 --- a/systems/win32/miktex/tm/packages/pr.ini +++ b/systems/win32/miktex/tm/packages/pr.ini @@ -2,9 +2,9 @@ [repository] -date=1581973870 -lastupd=archaeologie breqn bxjscls haranoaji haranoaji-extra luatexko newtxtt schulmathematik xetexko euclideangeometry hitszthesis miktex-bibtex-bin-2.9 miktex-bibtex-bin-x64-2.9 miktex-dvicopy-bin-2.9 miktex-dvicopy-bin-x64-2.9 miktex-luatex-bin-2.9 miktex-luatex-bin-x64-2.9 newpx sdaps miktex-runtime-bin-2.9 -lstdigest=66e2e2de8af392a94697e0728ca935f3 +date=1582060316 +lastupd=ghsystem l3build luatodonotes archaeologie breqn bxjscls haranoaji haranoaji-extra luatexko newtxtt schulmathematik xetexko euclideangeometry hitszthesis miktex-bibtex-bin-2.9 miktex-bibtex-bin-x64-2.9 miktex-dvicopy-bin-2.9 miktex-dvicopy-bin-x64-2.9 miktex-luatex-bin-2.9 miktex-luatex-bin-x64-2.9 +lstdigest=443d089ab4f0c06fe45903586e1de997 numpkg=3862 relstate=stable -version=7352 +version=7353 diff --git a/systems/win32/w32tex/ChangeLog b/systems/win32/w32tex/ChangeLog index ccfbd3ebaf..575be19430 100644 --- a/systems/win32/w32tex/ChangeLog +++ b/systems/win32/w32tex/ChangeLog @@ -1,5 +1,45 @@ W32TeX (x86 & x64) ChangeLog +[2020/02/17] +(01) biblatex-biber.tar.xz + Update archaeologie. +(02) cjkzr.tar.xz + Update bxjscls. +(03) latex-dev.tar.xz + Update lualatex-dev.fmt. +(04) ltxpkgs.tar.xz + Update breqn. +(05) luajittex-dev-w32.tar.xz + Update luajittex.dll, and luajithbtex.dll. +(06) luajittex-exp-w32.tar.xz + Update luajittex.dll, and luajithbtex.dll. +(07) luajittex-w32.tar.xz + Update luajittex.dll, and luajithbtex.dll. +(08) luatex-dev-w32.tar.xz + Update luatex.dll, luahbtex.dll. +(09) luatex-exp-w32.tar.xz + Update luatex.dll, luahbtex.dll. +(10) luatex-w32.tar.xz + Update luatex.dll, luahbtex.dll. +(11) newtxpx-boondoxfonts.tar.xz + Update newtxtt fonts. +(12) web2c-w32.tar.xz + Update mflua[-nowin].exe, and mfluajit[-nowin].exe. +(13) win64/luajittex-dev-w64.tar.xz + Update luajittex.dll, and luajithbtex.dll. +(14) win64/luajittex-exp-w64.tar.xz + Update luajittex.dll, and luajithbtex.dll. +(15) win64/luajittex-w64.tar.xz + Update luajittex.dll, and luajithbtex.dll. +(16) win64/luatex-dev-w64.tar.xz + Update luatex.dll, luahbtex.dll. +(17) win64/luatex-exp-w64.tar.xz + Update luatex.dll, luahbtex.dll. +(18) win64/luatex-w64.tar.xz + Update luatex.dll, luahbtex.dll. +(19) win64/web2c-w64.tar.xz + Update mflua[-nowin].exe, and mfluajit[-nowin].exe. + [2020/02/16] (01) ltxpkgdocs.tar.xz Update documents for packages. -- cgit v1.2.3