From 23c5f33b784af6cc6c4ee2f5482ef5f21c774006 Mon Sep 17 00:00:00 2001 From: Norbert Preining Date: Tue, 19 Sep 2023 03:01:15 +0000 Subject: CTAN sync 202309190301 --- systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm | 21 +++- .../texlive/tlnet/tlpkg/installer/ctan-mirrors.pl | 3 +- systems/texlive/tlnet/tlpkg/texlive.tlpdb | 126 +++++++++++++-------- systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 | 2 +- systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 | 2 +- .../texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc | 16 +-- systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz | Bin 2476620 -> 2475412 bytes 7 files changed, 105 insertions(+), 65 deletions(-) (limited to 'systems/texlive/tlnet/tlpkg') diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm index d19c812cfb..a0826d6036 100644 --- a/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm +++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm @@ -1,4 +1,4 @@ -# $Id: TLPDB.pm 68283 2023-09-15 13:11:11Z preining $ +# $Id: TLPDB.pm 68316 2023-09-18 21:15:11Z karl $ # TeXLive::TLPDB.pm - tlpdb plain text database files. # Copyright 2007-2023 Norbert Preining # This file is licensed under the GNU General Public License version 2 @@ -7,7 +7,7 @@ use strict; use warnings; package TeXLive::TLPDB; -my $svnrev = '$Revision: 68283 $'; +my $svnrev = '$Revision: 68316 $'; my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown"; sub module_revision { return $_modulerevision; } @@ -2014,7 +2014,9 @@ sub remove_package { my $tlp = $localtlpdb->get_package($pkg); my $usertree = $localtlpdb->setting("usertree"); if (!defined($tlp)) { - tlwarn ("TLPDB: package not present, so nothing to remove: $pkg\n"); + # we should not be called. + tlwarn ("TLPDB::remove_package: package not present, ", + "so nothing to remove: $pkg\n"); } else { my $currentarch = $self->platform(); if ($pkg eq "texlive.infra" || $pkg eq "texlive.infra.$currentarch") { @@ -2025,8 +2027,10 @@ sub remove_package { my $Master = $localtlpdb->root; chdir ($Master) || die "chdir($Master) failed: $!"; my @files = $tlp->all_files; + # # also remove the .tlpobj file push @files, "tlpkg/tlpobj/$pkg.tlpobj"; + # # and the ones from src/doc splitting if (-r "tlpkg/tlpobj/$pkg.source.tlpobj") { push @files, "tlpkg/tlpobj/$pkg.source.tlpobj"; @@ -2117,20 +2121,24 @@ sub remove_package { # we have already check for the existence of the dirs returned for my $d (keys %by_dirs) { if (! &TeXLive::TLUtils::dir_writable($d)) { - tlwarn("TLPDB: directories are not writable, cannot remove files: $d\n"); + tlwarn("TLPDB::remove_package: directories are not writable, cannot remove files: $d\n"); return 0; } } # now do the removal for my $entry (@goodfiles) { - unlink $entry or tlwarn("Could not unlink $entry: $!\n"); + unlink($entry) + || $entry =~ /\.tlpobj$/ # we remove .tlpobj explicitly above + || tlwarn("TLPDB::remove_package: Could not unlink $entry: $!\n"); } for my $d (@removals) { - rmdir $d or tlwarn("Could not remove directory $d: $!\n") + rmdir($d) + || tlwarn("TLPDB::remove_package: Could not rmdir $d: $!\n") } $localtlpdb->remove_tlpobj($pkg); TeXLive::TLUtils::announce_execute_actions("disable", $tlp); + # should we save at each removal??? # advantage: the tlpdb actually reflects what is installed # disadvantage: removing a collection calls the save routine several times @@ -2149,6 +2157,7 @@ sub remove_package { # files are already removed. # Again, desktop integration maps to desktop and menu links if (!$opts{'nopostinstall'}) { + debug(" TLPDB::remove_package: running remove postinstall"); &TeXLive::TLUtils::do_postaction("remove", $tlp, $localtlpdb->option("file_assocs"), $localtlpdb->option("desktop_integration"), diff --git a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl index 60c18c31d5..cbd8b7b7a1 100644 --- a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl +++ b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl @@ -149,6 +149,7 @@ $mirrors = { 'Russia' => { 'https://ctan.altspu.ru/' => 1, 'https://mirror.macomnet.net/pub/CTAN/' => 1, + 'https://mirror.truenetwork.ru/CTAN/' => 1, 'https://mirrors.mi-ras.ru/CTAN/' => 1, }, 'Spain' => { @@ -183,11 +184,9 @@ $mirrors = { 'https://mirrors.ucr.ac.cr/CTAN/' => 1, }, 'USA' => { - 'http://bay.uchicago.edu/CTAN/' => 1, 'http://mirrors.ibiblio.org/pub/mirrors/CTAN/' => 1, 'https://ctan.math.illinois.edu/' => 1, 'https://ctan.math.utah.edu/ctan/tex-archive/' => 1, - 'https://ctan.math.washington.edu/tex-archive/' => 1, 'https://ctan.mirrors.hoobly.com/' => 1, 'https://mirror.las.iastate.edu/tex-archive/' => 1, 'https://mirror.math.princeton.edu/pub/CTAN/' => 1, diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb b/systems/texlive/tlnet/tlpkg/texlive.tlpdb index 59491604ac..359f92a27f 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/2023 -depend revision/68306 +depend revision/68318 name 00texlive.image category TLCore -revision 68286 +revision 68312 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 @@ -2386,6 +2386,7 @@ runfiles size=13074 tlpkg/tlpsrc/isopt.tlpsrc tlpkg/tlpsrc/isorot.tlpsrc tlpkg/tlpsrc/isotope.tlpsrc + tlpkg/tlpsrc/isphysicalmath.tlpsrc tlpkg/tlpsrc/issuulinks.tlpsrc tlpkg/tlpsrc/istgame.tlpsrc tlpkg/tlpsrc/itnumpar.tlpsrc @@ -4801,7 +4802,7 @@ depend setting_available_architectures:aarch64-linux amd64-freebsd amd64-netbsd name 00texlive.installer category TLCore -revision 68303 +revision 68308 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 @@ -72524,7 +72525,7 @@ containerchecksum 7a0cef206122cbaf92e76e3eb737866d69206e04479b0835508b68d8c7273a name collection-mathscience category Collection -revision 68179 +revision 68312 shortdesc Mathematics, natural sciences, computer science packages relocated 1 depend 12many @@ -72647,6 +72648,7 @@ depend includernw depend interval depend ionumbers depend isomath +depend isphysicalmath depend jkmath depend jupynotex depend karnaugh @@ -72783,8 +72785,8 @@ depend youngtab depend yquant depend ytableau depend zx-calculus -containersize 1692 -containerchecksum 1ef9574339b1dac3d1a58c5a68240ead83d247b35e88117f1e01eb54701b4da496ced682771f598312d178117d0a848e51b24c8238c5182184f0cbee8682a1d3 +containersize 1700 +containerchecksum e0f64ba02897e06bafb60fa5600c02288257e066ca23e833e028cb452f3136022fa23c3b55bbfc399cbea15b8a770be60773c47bf5d2255184d8f65c73b72ef3 name collection-metapost category Collection @@ -87372,18 +87374,18 @@ catalogue-version 1.0 name ctanbib category Package -revision 66068 +revision 68315 shortdesc Export CTAN entries to bib format longdesc This package provides a Lua script which can be used for longdesc retrieving bibliographic information in BibLaTeX format for longdesc packages hosted on CTAN. The ctanbib script depends only on longdesc LuaXML. depend ctanbib.ARCH -containersize 2916 -containerchecksum 9ebcdb2b194ce91075addb5e42ec419203012f494ecf9ea663f1007f085946ddeb5a618439924406119a07b3801d09dfd3d5ca04db2886c6a530e798a78fd487 -doccontainersize 55084 -doccontainerchecksum 0c02549c5e0390727c50a53697abb042be5af30d2d455d9cd098462f33f2f2fe996d1c05e3fc04c87a5d178d49a3dc371c17c1840033f2e023f7e66d570fa086 -docfiles size=18 +containersize 3044 +containerchecksum 028b8ca2b75e53936f8a843de295476d61a867880d7ca674397d1e7d938c42c02fd417836c7b1557d6e0dd6232c64a7273d1f390b7e24ab0193799e38efa378b +doccontainersize 57084 +doccontainerchecksum bf6d9239e29478c93d6c1e60183ce8ba42496ddb339c3d377aa87a1bbb4a85a3c0ae86d96f9090aa65c8ccfae962e00c7ad8fc12147490df0ae346e95c2a7c28 +docfiles size=19 texmf-dist/doc/man/man1/ctanbib.1 texmf-dist/doc/man/man1/ctanbib.man1.pdf texmf-dist/doc/support/ctanbib/README.md details="Readme" @@ -87396,7 +87398,7 @@ catalogue-contact-repository https://github.com/michal-h21/ctanbib catalogue-ctan /support/ctanbib catalogue-license lppl1.3 catalogue-topics bibtex-gen ctan luatex use-lua -catalogue-version 0.2b +catalogue-version 0.2c name ctanbib.aarch64-linux category Package @@ -147452,15 +147454,15 @@ runfiles size=8 name hyphen-base category TLCore -revision 66413 +revision 68317 shortdesc core hyphenation support files relocated 1 longdesc Includes Knuth's original hyphen.tex, zerohyph.tex to disable longdesc hyphenation, language.us which starts the autogenerated files longdesc language.dat and language.def (and default versions of those), longdesc etc. -containersize 22488 -containerchecksum 919ce5b609e6c3252c420ec723132c38866a1add9cabc79e07b212fea50e0fb343236619b5ff735101a333fceaeb9b69c2a27f45c9b94e51918181952c5b3c61 +containersize 22600 +containerchecksum 3c8664e2e611064e58376312786f045f057e835af7699efc0db52838dd8d723db9a5cae59594beda8118f827cc3e340aee76f82669d791abc1bda2831faa0b2a runfiles size=24 RELOC/tex/generic/config/language.dat RELOC/tex/generic/config/language.dat.lua @@ -156869,6 +156871,35 @@ catalogue-license lppl catalogue-topics subsup-pos physics catalogue-version 0.3 +name isphysicalmath +category Package +revision 68312 +shortdesc Simple way to write nice formulas +relocated 1 +longdesc This package provides an easy way to write mathematical and +longdesc physical formulas and arguments in scientific notation in an +longdesc elegant way. +containersize 1472 +containerchecksum d7786dee25bf5a03cf54fb1c7c5d918f7b2284571d931bc7281030bd41c59baa5ffada31235e50e0c2ea76ee5bb00b23463e388bc1d957da12cd685f617a03e7 +doccontainersize 80692 +doccontainerchecksum a186fc73154b32246a3841ae8f66b888ccdcd9d800eac39974e8383afa5717799c3a53e8c819c7db983251d8859843a2d4215aba1a902d65ae4a9a45a01844a0 +docfiles size=27 + RELOC/doc/latex/isphysicalmath/README.md details="Readme" + RELOC/doc/latex/isphysicalmath/isphysicalmath-doc.pdf details="Package documentation" +srccontainersize 5120 +srccontainerchecksum 928fcaef5725fe2ef989bf97f43cf2c7314f6a37ccca36fc30deae2c374317970b1d27e4941ab6184b5d2649721b4376c65e0109a4a50ee0feb8dccc63e59896 +srcfiles size=5 + RELOC/source/latex/isphysicalmath/isphysicalmath.dtx + RELOC/source/latex/isphysicalmath/isphysicalmath.ins +runfiles size=1 + RELOC/tex/latex/isphysicalmath/isphysicalmath.sty +catalogue-also siunitx +catalogue-contact-home https://github.com/MartDiVenus/LaTeX/tree/isphysicalmath +catalogue-ctan /macros/latex/contrib/isphysicalmath +catalogue-license lppl1.3c +catalogue-topics units +catalogue-version 1.0.0 + name issuulinks category Package revision 25742 @@ -251028,7 +251059,7 @@ catalogue-topics float name photobook category Package -revision 68254 +revision 68313 shortdesc A document class for typesetting photo books relocated 1 longdesc The photobook LaTeX document class extends the book class @@ -251062,10 +251093,10 @@ depend xargs depend xcolor depend xint depend xkeyval -containersize 33228 -containerchecksum c6f58d0b62838594cb26eecd7fba488a6020bd73609d9fc87d72a6f5f42f0621f319694b37260b006fac162c34055d69b2a09ec69980b109a68ca0a0efc46b57 -doccontainersize 156180 -doccontainerchecksum 22054c40246dd8bd6755dc5ccf4d5b4d74a51e3dff8309f572c65c7074e179ec82baed54d7f6f570703745b27b618dc90831370887d9d9e79afe229acd3b6443 +containersize 33232 +containerchecksum 1ceac5c208ff577c3072b96bd3c98e03a75126c25c5bdb8a88c3a253623b2f089d4bff17bcc7cc14d522461df2f95a44ba784ff8108a6b2d284127d20b75d4d1 +doccontainersize 156748 +doccontainerchecksum fc29b76cded75fdc20eceb668cc0bda2346bc5e11c5df2d860e90999e48b73a3e44c985048174cc54f42aca2dec3d195b765ffae923a1eb78b1d7da180e6a966 docfiles size=54 RELOC/doc/latex/photobook/DEPENDS.txt RELOC/doc/latex/photobook/LICENSE @@ -251083,7 +251114,7 @@ catalogue-contact-repository https://github.com/flynx/photobook catalogue-ctan /macros/latex/contrib/photobook catalogue-license bsd3 catalogue-topics class -catalogue-version 0.1.28 +catalogue-version 0.1.29 name physconst category Package @@ -269861,16 +269892,16 @@ catalogue-version 0.2 name quran-ur category Package -revision 57597 +revision 68314 shortdesc Urdu translations to the quran package relocated 1 longdesc The package is prepared for typesetting some Urdu translations longdesc of the Holy Quran. It adds eight Urdu translations to the quran longdesc package. -containersize 1874644 -containerchecksum 217d3bdf7ae9391dd300ab0ef390dab34d83675be41c6049897914c24abacbde29d57a68e6321058d91cc63a1b5143bba3b15c7bccc8d55f50cc3efa0e3d4016 -doccontainersize 153360 -doccontainerchecksum 9be2743ee3d4e0cec70731f5ad5bc71c574ad122aff7b30ec50635a5c4d1c87801b324f048e141e2208bc59af5995b9ff166c7eaa06306817629600348f55cbe +containersize 1874332 +containerchecksum af8d0d7c10d3b9dea55cb4339982196d5dc33204fb9ff368591e50f48b8fd5ea741207466f158a4ce7da1125cadb5240bda38cd4bc5093966fb42f7de77beed0 +doccontainersize 154308 +doccontainerchecksum 17d660971e942478baabe2e98eec7da096c37b13f9da24a8e8e4139d0dffccb280b0a464a0fe76f47ff39f899e8ae0d9a582a01be927ff8529e14c097b81090d docfiles size=43 RELOC/doc/latex/quran-ur/README details="Readme" RELOC/doc/latex/quran-ur/quran-ur-doc.pdf details="Package documentation" @@ -269894,7 +269925,7 @@ catalogue-contact-repository https://github.com/javadr/quran-ur catalogue-ctan /macros/unicodetex/latex/quran-ur catalogue-license lppl1.3c catalogue-topics urdu macro-supp dummy-gen -catalogue-version 0.21 +catalogue-version 0.22 name qyxf-book category Package @@ -315584,7 +315615,7 @@ docfiles size=376 name texlive-scripts category TLCore -revision 68303 +revision 68308 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. @@ -315592,10 +315623,10 @@ depend texlive-scripts.ARCH depend texlive.infra execute addMap mathpple.map postaction shortcut type=menu name="TeX Live command-line" cmd=TEXDIR/tlpkg/installer/tl-cmd.bat -containersize 114128 -containerchecksum d51582d69ae284d0a3b598b426b813ad051b88351a6c540022e97db45372606a005ffe9dd00726475c8617f8a1d0da7592555a67d032f13655db847b89d06ee2 +containersize 114120 +containerchecksum c9f320e066461f43495e2733f4615c376b5156eb27ac1b1e331ff203b330f0f8ad5e9923414f2b6a775554ccdce3a06dfa54e06c803ee0ad5e242baf5e465575 doccontainersize 429612 -doccontainerchecksum e8c13f6e097708449d389ddd16264985df5cdc90e2b7c519668e517b88453125062dc7615a259695712c6afcf831308cb79f97ae7e88686d80d51f5b98a99df2 +doccontainerchecksum eeba22743470393ec5e9022f53ad35c4f754bb2ba847d53ba858ec53a9410b2df974a8b42399f46479926f493cec68e81fa051c752f38b1fc6db8568c3c0eb3c docfiles size=550 doc.html texmf-dist/doc/man/man1/fmtutil-sys.1 @@ -322883,22 +322914,23 @@ catalogue-version 1.0 name tikzpingus category Package -revision 64199 +revision 68310 shortdesc Penguins with TikZ relocated 1 longdesc tikzpingus is a package similar to tikzducks but with penguins longdesc and a vast set of gadgets and extras (capable of changing the longdesc wing-positions, body-types, and more). -containersize 32436 -containerchecksum 76955d19c6c492d07878fba272bf39572c322b5b261acf1f9bdb54cbd90130f9c09e80651270a20f7b7a2d08e20e89e11a5a5a19ef9af55cd233d3917a29b434 -doccontainersize 2656552 -doccontainerchecksum aad57b68e88499b8303cd3709c5b44322da793c085d584713fc6ead1278b0d07e2b89d7b8d53bd79eef5efe2aff2a98b6aed4b29ddd3c6704c2f6e3a4b8929d7 -docfiles size=885 +containersize 40876 +containerchecksum 78041352e86e68eb99f875a1c8bf7d4a50c527a4b405e4c93e9da6ecd716bbb0c5fad053fff80229723b4550345077371a52132258cb9d251c319f743767cb7f +doccontainersize 3578412 +doccontainerchecksum 1748e17af7b3190e19a0c446e78f5b40b6a135633850d610179f33927650c8cd92babca86e4fd10408586d1fd81814cbb54985ab0fadfbfd05219b033e4323c6 +docfiles size=1278 RELOC/doc/latex/tikzpingus/README.md details="Readme" RELOC/doc/latex/tikzpingus/tikzpingus-doc.pdf details="Package documentation" RELOC/doc/latex/tikzpingus/tikzpingus-doc.tex -runfiles size=61 +runfiles size=77 RELOC/makeindex/tikzpingus/indexstyle.ist + RELOC/tex/latex/tikzpingus/tikzpingus-bee.lib.tex RELOC/tex/latex/tikzpingus/tikzpingus-christmas.lib.tex RELOC/tex/latex/tikzpingus/tikzpingus-cloak.lib.tex RELOC/tex/latex/tikzpingus/tikzpingus-devil.lib.tex @@ -322927,7 +322959,7 @@ catalogue-contact-support https://github.com/EagleoutIce/tikzpingus/issues catalogue-ctan /graphics/pgf/contrib/tikzpingus catalogue-license gpl3 catalogue-topics amusements graphics pgf-tikz -catalogue-version 1.0 +catalogue-version 1.1 name tikzposter category Package @@ -340489,7 +340521,7 @@ catalogue-version 0.01 name unicode-data category Package -revision 64423 +revision 68311 shortdesc Unicode data and loaders for TeX relocated 1 longdesc This bundle provides generic access to Unicode Consortium data @@ -340506,13 +340538,13 @@ longdesc data are distributed in accordance with the license stipulated longdesc by the Unicode Consortium. The bundle as a whole is longdesc co-ordinated by the LaTeX3 Project as a general resource for longdesc TeX users. -containersize 308592 -containerchecksum 64309fd507c7705b2ad0b78ef3b5c17c2891ffce3d9de34d4fe8380a61f80542dead54984293caec516f815de69b2d89e0bee930d979a87af6a187693e2c87b5 -doccontainersize 3844 -doccontainerchecksum 1219c454df7b3645b97a5fe6621c9666b3784297f26e0ff63696ddf7835f326b4a189a6a890b2416f12f29fd4b40de295c042a8d9b326cb7e22152b7b8f6ab79 +containersize 304228 +containerchecksum 9e74ad2fd167a913e004aa77c705f0f8b3ab3d8e717384ee150db076660bda4e2651bea97292ef9e747d4e2519d9ffaa113947dd5241f830c3e4d653ee061d71 +doccontainersize 3864 +doccontainerchecksum a8e147ba4d30bf80e1c1bdfba67bb3a0ff9f765c5d41734aca1708adb58c5c357a17401383faab827477fc837ac1dbbdcb55ee0b3146acc737c094d6984709d4 docfiles size=3 RELOC/doc/generic/unicode-data/README.md details="Readme" -runfiles size=789 +runfiles size=794 RELOC/tex/generic/unicode-data/BidiBrackets.txt RELOC/tex/generic/unicode-data/BidiMirroring-5-1-0.txt RELOC/tex/generic/unicode-data/BidiMirroring.txt @@ -340535,7 +340567,7 @@ catalogue-contact-repository https://github.com/latex3/unicode-data catalogue-ctan /macros/generic/unicode-data catalogue-license lppl1.3c catalogue-topics latex3 unicode -catalogue-version 1.16 +catalogue-version 1.17 name unicode-math category Package diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 index 16fcbc4af1..4255c0dfbd 100644 --- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 +++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 @@ -1 +1 @@ -fd94a9c14a910c6c37d38a0cf4b33b9e texlive.tlpdb +fc2db7f42159766fa76a1d3de8883b7b texlive.tlpdb diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 index 434a136bad..6cdf9295cc 100644 --- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 +++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 @@ -1 +1 @@ -54f343bebb255c8444a03513d066f5a640c0e6b19969c597856526288eea71425cd5631e45583ecbb4261a7dc5052fdc4736d3ec6e2d98c25a7d19fc656a5b2c texlive.tlpdb +14f104e482d443b530381637c6909785bed024a1796bcc975046716869e12483c969bee28b00e97ace7fbfb51d38715741152b7e9e9ed5787b7bd4d0b4491c88 texlive.tlpdb diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc index beebee8dcd..28f130e4b0 100644 --- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc +++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc @@ -1,11 +1,11 @@ -----BEGIN PGP SIGNATURE----- -iQEzBAEBCgAdFiEE2PL4YFeoV+QqiBBqTOGHfhlDjHAFAmUHj7sACgkQTOGHfhlD -jHCrZggAsvLzZFw+k0FObOhCdj/7hqkYWQ0XkV0Js55I5c1fWV2Z3D5ZDfa24r21 -7EVS8j+5UOxkWdoIufeF+kREBZ7Ct5/n44PAF7Fj+F6kAJAHE0B8/SECRajMIVJd -bvqOjJFxnHNJfvIT5Th5Agq6/LvkoQUy0UvuD8fNlT+ZMABO6lkC60Dy8Kz6cHl1 -ZWjIRbEm65xK8q1+yis9m7cDLl4B9TkixR8+2bxLAeStNpFyZ6zhcoFStvrABm/t -jxDnT7Y8GKNj9iOYHGyRXq4XbQeOBH5ZBvLu7+lvXpK2GMx4e31eX7ljw26L+enG -jyxRRgef6EimL9AvOxHqWtMCgcO9Mw== -=ko36 +iQEzBAEBCgAdFiEE2PL4YFeoV+QqiBBqTOGHfhlDjHAFAmUI4U4ACgkQTOGHfhlD +jHAuxwf+N0Km2+KY+E3aLMW1VRXdwkn12v7RwzbNkoImGp+D2fl9hVWXVlxmhTEu +7jaipA0aTPY/yjN75lsrLqzeVjmCx9zL2AeWEajHeClXjsFhQFX7joIA1oJTN0+x +5TNvMd7zkN5gpy7dHCtvnnvTMTUKRON7RJXt2LX4Ci3P3eJ7llTaMKvVR0leBvLo +/ZWRhpE+fOrqfLqsDzxlBLIdxVsBrbo0n2n7iuHmfvqBiWIM2oLFH9hxAY83AfUJ +JUlUmqT1gZvsFJnKAtAjqOE2Ok2g+lmvfbbcD+ugY7rhLwrSSajEP2yyd1jg9ZU4 +okfn/fzglfmjS3toYV5XBtheQHpfGw== +=F5rp -----END PGP SIGNATURE----- diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz index b257902ee0..7fb82a9989 100644 Binary files a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz and b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz differ -- cgit v1.2.3