From 277978fd69546e800dd8c46a0aec0d859d475ebb Mon Sep 17 00:00:00 2001 From: Norbert Preining Date: Mon, 18 May 2020 03:02:35 +0000 Subject: CTAN sync 202005180302 --- systems/texlive/tlnet/tlpkg/TeXLive/TLCrypto.pm | 6 +- systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm | 18 +- systems/texlive/tlnet/tlpkg/TeXLive/TLWinGoo.pm | 6 +- .../texlive/tlnet/tlpkg/installer/ctan-mirrors.pl | 5 +- systems/texlive/tlnet/tlpkg/texlive.tlpdb | 201 ++++++++++++++------- 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 2200016 -> 2200692 bytes 9 files changed, 164 insertions(+), 90 deletions(-) (limited to 'systems/texlive/tlnet/tlpkg') diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLCrypto.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLCrypto.pm index 5ce0e3632e..516db3c051 100644 --- a/systems/texlive/tlnet/tlpkg/TeXLive/TLCrypto.pm +++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLCrypto.pm @@ -1,4 +1,4 @@ -# $Id: TLCrypto.pm 54064 2020-03-04 01:25:36Z preining $ +# $Id: TLCrypto.pm 55178 2020-05-17 16:46:24Z karl $ # TeXLive::TLCrypto.pm - handle checksums and signatures. # Copyright 2016-2020 Norbert Preining # This file is licensed under the GNU General Public License version 2 @@ -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: 54064 $'; +my $svnrev = '$Revision: 55178 $'; my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown"; sub module_revision { return $_modulerevision; } @@ -260,7 +260,7 @@ sub verify_checksum_and_check_return { 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"); + debug("$0: remote database checksum is not signed, continuing anyway\n"); return(0, $r); } elsif ($r == $VS_EXPKEYSIG) { debug("$0: good signature bug gpg key expired, continuing anyway!\n"); diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm index 1d5d2c02b1..cddf93f635 100644 --- a/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm +++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm @@ -1,4 +1,4 @@ -# $Id: TLUtils.pm 55126 2020-05-13 17:27:10Z karl $ +# $Id: TLUtils.pm 55178 2020-05-17 16:46:24Z karl $ # TeXLive::TLUtils.pm - the inevitable utilities for TeX Live. # Copyright 2007-2020 Norbert Preining, Reinhard Kotucha # This file is licensed under the GNU General Public License version 2 @@ -6,7 +6,7 @@ package TeXLive::TLUtils; -my $svnrev = '$Revision: 55126 $'; +my $svnrev = '$Revision: 55178 $'; my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown"; sub module_revision { return $_modulerevision; } @@ -2035,13 +2035,13 @@ sub add_link_dir_dir { sub remove_link_dir_dir { my ($from, $to) = @_; if ((-d "$to") && (-w "$to")) { - debug("removing links from $from to $to\n"); + debug("TLUtils::remove_link_dir_dir: removing links from $from to $to\n"); chomp (@files = `ls "$from"`); my $ret = 1; foreach my $f (@files) { next if (! -r "$to/$f"); if ($f eq "man") { - debug("not considering man in $to, it should not be from us!\n"); + debug("TLUtils::remove_link_dir_dir: not considering man in $to, it should not be from us!\n"); next; } if ((-l "$to/$f") && @@ -2049,7 +2049,7 @@ sub remove_link_dir_dir { $ret = 0 unless unlink("$to/$f"); } else { $ret = 0; - tlwarn ("not removing $to/$f, not a link or wrong destination!\n"); + tlwarn ("TLUtils::remove_link_dir_dir: not removing $to/$f, not a link or wrong destination!\n"); } } # try to remove the destination directory, it might be empty and @@ -2057,7 +2057,7 @@ sub remove_link_dir_dir { # `rmdir "$to" 2>/dev/null`; return $ret; } else { - tlwarn ("destination $to not writable, no removal of links done!\n"); + tlwarn ("TLUtils::remove_link_dir_dir: destination $to not writable, no removal of links done!\n"); return 0; } } @@ -2087,7 +2087,7 @@ sub add_remove_symlinks { # man my $top_man_dir = "$Master/texmf-dist/doc/man"; - debug("$mode symlinks for man pages to $sys_man from $top_man_dir\n"); + debug("TLUtils::add_remove_symlinks: $mode symlinks for man pages to $sys_man from $top_man_dir\n"); if (! -d $top_man_dir) { ; # better to be silent? #info("skipping add of man symlinks, no source directory $top_man_dir\n"); @@ -2117,7 +2117,7 @@ sub add_remove_symlinks { } #`rmdir "$sys_man" 2>/dev/null` if ($mode eq "remove"); } else { - tlwarn("man symlink destination ($sys_man) not writable, " + tlwarn("TLUtils::add_remove_symlinks: man symlink destination ($sys_man) not writable, " . "cannot $mode symlinks.\n"); $errors++; } @@ -2126,7 +2126,7 @@ sub add_remove_symlinks { # we collected errors in $errors, so return the negation of it if ($errors) { - info("$mode of symlinks had $errors error(s), see messages above.\n"); + info("TLUtils::add_remove_symlinks: $mode of symlinks had $errors error(s), see messages above.\n"); return $F_ERROR; } else { return $F_OK; diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLWinGoo.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLWinGoo.pm index 9afc47f11e..b6b7f29d71 100644 --- a/systems/texlive/tlnet/tlpkg/TeXLive/TLWinGoo.pm +++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLWinGoo.pm @@ -1,4 +1,4 @@ -# $Id: TLWinGoo.pm 54289 2020-03-14 10:46:20Z siepo $ +# $Id: TLWinGoo.pm 55175 2020-05-17 09:41:28Z siepo $ # TeXLive::TLWinGoo.pm - Windows goop. # Copyright 2008-2018 Siep Kroonenberg, Norbert Preining # This file is licensed under the GNU General Public License version 2 @@ -11,7 +11,7 @@ package TeXLive::TLWinGoo; -my $svnrev = '$Revision: 54289 $'; +my $svnrev = '$Revision: 55175 $'; my $_modulerevision; if ($svnrev =~ m/: ([0-9]+) /) { $_modulerevision = $1; @@ -1424,7 +1424,7 @@ sub maybe_make_ro { # /reset is necessary for removing non-standard existing permissions my $cmd = 'cmd /c "icacls . /reset && icacls . /inheritance:r'. ' /grant:r *S-1-5-32-544:(OI)(CI)F'. - ' /grant:r *S-1-5-11:(OI)(CI)RX /grant:r *S-1-5-32-545:(OI)(CI)RX /T"'; + ' /grant:r *S-1-5-11:(OI)(CI)RX /grant:r *S-1-5-32-545:(OI)(CI)RX"'; log "Making read-only\n".`$cmd`."\n"; # go back to original directory diff --git a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl index 968aec55d4..0992724660 100644 --- a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl +++ b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl @@ -1,5 +1,8 @@ $mirrors = { 'Africa' => { + 'Algeria' => { + 'http://ctan.epst-tlemcen.dz/tex-archive/' => 1, + }, 'Morocco' => { 'https://mirror.marwan.ma/ctan/' => 1, }, @@ -13,7 +16,6 @@ $mirrors = { 'China' => { 'http://mirror.lzu.edu.cn/CTAN/' => 1, 'http://mirrors.cqu.edu.cn/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, 'http://mirrors.ustc.edu.cn/CTAN/' => 1, @@ -36,6 +38,7 @@ $mirrors = { 'Japan' => { 'ftp://ftp.kddilabs.jp/CTAN/' => 1, 'http://ftp.jaist.ac.jp/pub/CTAN/' => 1, + 'http://ftp.yz.yamagata-u.ac.jp/pub/CTAN/' => 1, }, 'Korea' => { 'http://ftp.harukasan.org/CTAN/' => 1, diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb b/systems/texlive/tlnet/tlpkg/texlive.tlpdb index b82fc96ba6..bd011f5562 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/2020 -depend revision/55172 +depend revision/55194 name 00texlive.image category TLCore -revision 55168 +revision 55190 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 @@ -40,7 +40,7 @@ longdesc IgnorePatterns in the check_files routine in tlmgr.pl augment longdesc this list. Those are not included in the source/ tarball. For longdesc information on the 00texlive prefix see longdesc 00texlive.installation(.tlpsrc) -runfiles size=5012 +runfiles size=5014 .mkisofsrc autorun.inf texmf-dist/README @@ -93,6 +93,8 @@ runfiles size=5012 tlpkg/bin/tl-update-tlpdb tlpkg/bin/tl-update-txi tlpkg/bin/tlcritical-diff + tlpkg/bin/tlgpg + tlpkg/bin/tlgpg-verify tlpkg/bin/tlpfiles tlpkg/bin/tlpkg-by-size tlpkg/bin/tlpkg-ctan-check @@ -1847,6 +1849,7 @@ runfiles size=5012 tlpkg/tlpsrc/glossaries-irish.tlpsrc tlpkg/tlpsrc/glossaries-italian.tlpsrc tlpkg/tlpsrc/glossaries-magyar.tlpsrc + tlpkg/tlpsrc/glossaries-nynorsk.tlpsrc tlpkg/tlpsrc/glossaries-polish.tlpsrc tlpkg/tlpsrc/glossaries-portuges.tlpsrc tlpkg/tlpsrc/glossaries-serbian.tlpsrc @@ -3249,6 +3252,7 @@ runfiles size=5012 tlpkg/tlpsrc/rcs-multi.tlpsrc tlpkg/tlpsrc/rcs.tlpsrc tlpkg/tlpsrc/rcsinfo.tlpsrc + tlpkg/tlpsrc/readablecv.tlpsrc tlpkg/tlpsrc/readarray.tlpsrc tlpkg/tlpsrc/realboxes.tlpsrc tlpkg/tlpsrc/realhats.tlpsrc @@ -4200,7 +4204,7 @@ depend setting_available_architectures:aarch64-linux amd64-freebsd amd64-netbsd name 00texlive.installer category TLCore -revision 55170 +revision 55185 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 @@ -37887,16 +37891,16 @@ catalogue-version 2.2 name bidi category Package -revision 55155 +revision 55193 shortdesc Bidirectional typesetting in plain TeX and LaTeX, using XeTeX relocated 1 longdesc A convenient interface for typesetting bidirectional texts with longdesc plain TeX and LaTeX. The package includes adaptations for use longdesc with many other commonly-used packages. -containersize 116284 -containerchecksum 73ed4deac8f8844a86a82bca9002632e3979b63e5762d6d4e35a319f908e5cf3d4b0a098e5c522a9d1ce85a4c8998e8b5717feef06cb08f775ab3bf7c6517428 -doccontainersize 3734296 -doccontainerchecksum 1248c0c63b4de240c957cb3e9f9bb389095ce96ee3ddefc8d060f424377b65cd6800afd88409689c7153a2451282fd4890ce226c96be91b8a5da3f17ebb740e1 +containersize 116328 +containerchecksum dba36e375340a6d852eba98b83ad8e0821e684424a53069a4eb21acad43ba32cba11a68b971fa8bbbc6380a89c2432916e8a048de85cd5ab377d7811570a9be6 +doccontainersize 3737268 +doccontainerchecksum 16e8062ffec0b64faaa2c1f4916c8decb38510af7279607d11ce0537cdbdd57dd90e9901e47b7396758b9653321f8e14716a809740f5d4c0f610358899ce333d docfiles size=1026 RELOC/doc/xelatex/bidi/README details="Readme" RELOC/doc/xelatex/bidi/bidi-bibitem.pdf @@ -37922,8 +37926,8 @@ docfiles size=1026 RELOC/doc/xelatex/bidi/test2-colortbl.tex RELOC/doc/xelatex/bidi/test2-wrapfig.tex RELOC/doc/xelatex/bidi/test3-wrapfig.tex -srccontainersize 133824 -srccontainerchecksum 4fc997725e5bcae8204a3d79457ec18b6e15808cf1bc2608d0066ca515f6b02f4e20cadff27fbb2c3dabfcfbad8f73febb2f400decbc8cc5e19bd5f964382ec1 +srccontainersize 133892 +srccontainerchecksum bbdbf08f87deff3ba6ff97869bcfb36b996f2985f4b28b4f598ea76827242d54b3e319379a9b027c2a6790f86e4503edf7d3f7e131f6ee34d48cfb042a8eed80 srcfiles size=242 RELOC/source/xelatex/bidi/bidi-doc-intro.ltx RELOC/source/xelatex/bidi/bidi-doc-latex-basics.ltx @@ -38072,7 +38076,7 @@ catalogue-contact-repository https://github.com/persiantex/bidi catalogue-ctan /macros/xetex/latex/bidi catalogue-license lppl1.3c catalogue-topics typesetting xetex bidi class -catalogue-version 36.2 +catalogue-version 36.3 name bidi-atbegshi category Package @@ -64512,7 +64516,7 @@ containerchecksum 1823db2c2889e30e1bb219e93aa2433813df21efe7afb453da159b5586a597 name collection-latexextra category Collection -revision 55164 +revision 55190 shortdesc LaTeX additional packages relocated 1 longdesc A very large collection of add-on packages for LaTeX. @@ -65049,6 +65053,7 @@ depend glossaries-german depend glossaries-irish depend glossaries-italian depend glossaries-magyar +depend glossaries-nynorsk depend glossaries-polish depend glossaries-portuges depend glossaries-serbian @@ -65487,6 +65492,7 @@ depend randtext depend rccol depend rcs-multi depend rcsinfo +depend readablecv depend readarray depend realboxes depend recipe @@ -65825,8 +65831,8 @@ depend ziffer depend zref depend zwgetfdate depend zwpagelayout -containersize 6080 -containerchecksum 53c77a121d3b20b342238459659f6a4d3ad5ae4bfd983e386abca6f631e26af1df018462518fe23073c30f50e0525761a027f3a49695e720e604b512cdc3fca5 +containersize 6096 +containerchecksum cdd5923640c214eb3cd6cb0dd32983cd3a673ae80d379777684e4feac86a7979c9fe58223ae45edceea61159b325a86d5fd604100e9a621e562efb5c5a625a90 name collection-latexrecommended category Collection @@ -109051,23 +109057,23 @@ catalogue-version 1.2.3 name exercises category Package -revision 42428 +revision 55188 shortdesc Typeset exercises and solutions with automatic addition of points relocated 1 longdesc This package defines the environments exercise and solution. longdesc The layout of these environments can be customized. The -- longdesc optional -- points in the exercises can be added automatically. longdesc The package also permits to hide the solutions. -containersize 2224 -containerchecksum 064b8df6847af6e8464989de7070ce1d5282a050ed89016ba9954767c6f175882ee11dfc4c92791f68f972cb7dfefc801696a10a650b7113e93dfd9a9fc1adba -doccontainersize 353788 -doccontainerchecksum 7108d509ed012d1560bf19205e45a2fcd09311c50e84ea4dcd87cf17b8c70d4e5496653d97cb303d32783fe9f1d29a17a273a7ac6808ec384b7972dc33106c87 -docfiles size=103 +containersize 2216 +containerchecksum 90ca30f7417076a9933970d6c8559317861015480ae5da813e19e0114a6838084317fad6a0b1aa295b7a8a8c49038007a36ebcf4ee83f54fc0e454a317943923 +doccontainersize 356220 +doccontainerchecksum ba5b8125bf2a59646f401c5d4968f1e00b5d9a35293bcfd7c67c54d275b8e4b1586a5f07ddd097065259935a541551a8b990f5dc737e1be8e78343382b7be72a +docfiles size=104 RELOC/doc/latex/exercises/README.md details="Readme" RELOC/doc/latex/exercises/exercises.pdf details="Package documentation (partly in German)" -srccontainersize 7552 -srccontainerchecksum eb788aaea48e5f9fed1aa8a9ef47792bb24734c5309b74e3554ca22618c9f35ddcfc1b5496299783584310ec7ecc406d8679c7d90a936bbca5122ca665bc6098 -srcfiles size=9 +srccontainersize 7728 +srccontainerchecksum 32728c5bd1bc6465bb82ab95f9c2a4fa4a403431a8369373d75861ef0d6af8850c108c223b6e202f03b53f87d52bbf45f07a81e75175c0896951cda89cf20ee1 +srcfiles size=10 RELOC/source/latex/exercises/exercises.dtx RELOC/source/latex/exercises/exercises.ins runfiles size=3 @@ -109075,7 +109081,7 @@ runfiles size=3 catalogue-ctan /macros/latex/contrib/exercises catalogue-license lppl1.2 catalogue-topics exercise -catalogue-version 1.0 +catalogue-version 1.1 name exframe category Package @@ -127131,6 +127137,33 @@ catalogue-license lppl1.3 catalogue-topics glossary catalogue-version 1.0 +name glossaries-nynorsk +category Package +revision 55189 +shortdesc Nynorsk language module for the glossaries package +relocated 1 +longdesc Norwegian Nynorsk language module for the glossaries package. +containersize 1696 +containerchecksum 8f94d41ee925f91b8646a9e01caa008a56757a46da5a642cc0142d0bee5fbc192eaed4ef914c93a40840606f569c5f20dab5c3d6a5fae26f64e981d12f868832 +doccontainersize 124664 +doccontainerchecksum aae437c721582343ee9395881479cf3d0c0b7d26ad6642311a63f0ed1e0aaf03a48e456f3e21d530dfef012a9f68f346827fe1ac5e7a509e1370bb60abc39e41 +docfiles size=33 + RELOC/doc/latex/glossaries-nynorsk/README details="Readme" + RELOC/doc/latex/glossaries-nynorsk/glossaries-dictionary-Nynorsk.dict + RELOC/doc/latex/glossaries-nynorsk/glossaries-nynorsk.pdf details="Package documentation" +srccontainersize 2272 +srccontainerchecksum 29a038a405cecd5232b3e015ee9e431e206f61691404309a9f7b47333f5d892ba629c9545a99e1a20a360ca0b3a72acca85ecd1f333e8615b856baf680d206c2 +srcfiles size=3 + RELOC/source/latex/glossaries-nynorsk/glossaries-nynorsk.dtx + RELOC/source/latex/glossaries-nynorsk/glossaries-nynorsk.ins +runfiles size=1 + RELOC/tex/latex/glossaries-nynorsk/glossaries-nynorsk.ldf +catalogue-contact-home https://github.com/switchcraft/glossaries-nynorsk +catalogue-ctan /macros/latex/contrib/glossaries-nynorsk +catalogue-license lppl1.3 +catalogue-topics glossary +catalogue-version 1.0 + name glossaries-polish category Package revision 35665 @@ -180329,18 +180362,18 @@ catalogue-version 1.3 name luatexja category Package -revision 54758 +revision 55192 shortdesc Typeset Japanese with Lua(La)TeX relocated 1 longdesc The package offers support for typesetting Japanese documents longdesc with LuaTeX. Either of the Plain and LaTeX2e formats may be longdesc used with the package. depend luatexbase -containersize 181708 -containerchecksum 24855225e2fe63a1e99ad67240ad5009ec62ab3bedee09ffc7969abf8b65845f579c914669cf7dd8c5dd8cc39ddb2a20c6714861642291b37dcf2810effdad4d -doccontainersize 3249380 -doccontainerchecksum e0e77d1ccaf4f02e92c32985937e12773be1f00a76d318e81a1bb4c7591f8d15e111a0726ba373d6dd665a023d2ea0350a24ba0ff8d5322f31e6ac5ea0d6211e -docfiles size=967 +containersize 182592 +containerchecksum 14499e095b8cec8daf9108d6f01d303b9b58e70804a083d33902d05a88e2593c521d22d1d281214f4fb5f2de089bbed78514ef82dedbd3cc65e7acbe7bcd4391 +doccontainersize 3261292 +doccontainerchecksum 117aeafe823e3ea75c5e8ec82037e5195645e976a623acd4cee78aae77965c0aadcb0932195fef533f7df9d0c399a0466da2a177397f228d9b0c4ac55ce20930 +docfiles size=971 RELOC/doc/luatex/luatexja/COPYING RELOC/doc/luatex/luatexja/README details="Readme" RELOC/doc/luatex/luatexja/jfm-test.lua @@ -180356,8 +180389,8 @@ docfiles size=967 RELOC/doc/luatex/luatexja/luatexja-ruby.tex RELOC/doc/luatex/luatexja/luatexja.dtx RELOC/doc/luatex/luatexja/luatexja.ins -srccontainersize 84344 -srccontainerchecksum 9cf0427768ccc45187bd9fb5c376674b44d3208aca2b2d42b934901085ad3713def3b73156acd8a66d96c73b3e0e3f7aee3d2390e994ecd8bc6078096e9526f1 +srccontainersize 84340 +srccontainerchecksum 4e136263a891e845f8ea8dc414bbfbc07abed8d0f509c8fb7f5f540eba285da0203a87400259244bde7b7666b53d738d52fcce680410c710c06277d01c7b539e srcfiles size=123 RELOC/source/luatex/luatexja/ltj-kinsoku_make.tex RELOC/source/luatex/luatexja/ltjclasses.dtx @@ -180382,7 +180415,7 @@ srcfiles size=123 RELOC/source/luatex/luatexja/tool/table_ivd_aj1.lua RELOC/source/luatex/luatexja/tool/table_jisx0208.tex RELOC/source/luatex/luatexja/tool/unicodeBlocks.tex -runfiles size=407 +runfiles size=411 RELOC/tex/luatex/luatexja/addons/luatexja-adjust.sty RELOC/tex/luatex/luatexja/addons/luatexja-ajmacros.sty RELOC/tex/luatex/luatexja/addons/luatexja-fontspec-27c.sty @@ -180399,6 +180432,7 @@ runfiles size=407 RELOC/tex/luatex/luatexja/jfm-mono.lua RELOC/tex/luatex/luatexja/jfm-prop.lua RELOC/tex/luatex/luatexja/jfm-propv.lua + RELOC/tex/luatex/luatexja/jfm-propw.lua RELOC/tex/luatex/luatexja/jfm-quanjiao.lua RELOC/tex/luatex/luatexja/jfm-tmin.lua RELOC/tex/luatex/luatexja/jfm-ujis.lua @@ -180461,6 +180495,7 @@ runfiles size=407 RELOC/tex/luatex/luatexja/patches/lltjdefs.sty RELOC/tex/luatex/luatexja/patches/lltjfont.sty RELOC/tex/luatex/luatexja/patches/lltjp-array.sty + RELOC/tex/luatex/luatexja/patches/lltjp-collcell.sty RELOC/tex/luatex/luatexja/patches/lltjp-fontspec.sty RELOC/tex/luatex/luatexja/patches/lltjp-footmisc.sty RELOC/tex/luatex/luatexja/patches/lltjp-geometry.sty @@ -180478,7 +180513,7 @@ catalogue-contact-repository https://osdn.net/projects/luatex-ja/scm/git/luatexj catalogue-ctan /macros/luatex/generic/luatexja catalogue-license bsd catalogue-topics japanese luatex class -catalogue-version 20200412.0 +catalogue-version 20200517.0 name luatexko category Package @@ -252802,6 +252837,32 @@ catalogue-license lppl catalogue-topics version-control doc-mgmt catalogue-version 1.11 +name readablecv +category Package +revision 55190 +shortdesc A highly readable and good looking CV and letter class +relocated 1 +longdesc This class provides, what I have found, to be an extremely +longdesc attractive and highly readable CV which will lead to your CV +longdesc being read rather than disgarded. +containersize 3636 +containerchecksum 54d42ad6b7e25cbc6f80f0ea960b230a082e30a15cd4d67ac21b6a941e16aac859195e7445a1067a16fbd83ee2a74e942ee9a8f88ec6e5202424ed793f2e005e +doccontainersize 166356 +doccontainerchecksum 01a03842ff5aa895e257beedfef8cd9d01014a122244e70c74ccc307e72c73a2727a74b570cd8b61a78889b8a31fba7b3c61614a3dd9bff5aa7b4f5faa54fed3 +docfiles size=45 + RELOC/doc/latex/readablecv/README.md details="Readme" + RELOC/doc/latex/readablecv/ReadableCV.pdf details="Package documentation" + RELOC/doc/latex/readablecv/ReadableCV.tex + RELOC/doc/latex/readablecv/profilepic.jpg + RELOC/doc/latex/readablecv/sig.png +runfiles size=4 + RELOC/tex/latex/readablecv/ReadableCV.cls +catalogue-contact-home https://philipstone.co.uk/type.html +catalogue-ctan /macros/latex/contrib/readablecv +catalogue-license lppl1.3 +catalogue-topics class cv +catalogue-version 2.0 + name readarray category Package revision 42467 @@ -280201,7 +280262,7 @@ catalogue-version 1.0 name tex-nutshell category Package -revision 54689 +revision 55187 shortdesc A short document about TeX principles relocated 1 longdesc This document is meant for users who are looking for @@ -280210,17 +280271,17 @@ longdesc brevity. The pure TeX features are described, no features longdesc provided by macro extensions. Only the last section gives a longdesc summary of plain TeX macros. containersize 512 -containerchecksum f0dc36cbe0874cc8bcbb702242979658579462838583d9b8674c5ee10aaf02c2fa16fb31dcdc79fc587c8a21dc3b3e9560ad6a5ab0a78a9b564009a8aedd333b -doccontainersize 259428 -doccontainerchecksum 7dff5220b74d455e6d31b5d0ddb52baeef591d7743d119fd75720f17c9e41062bde18cc6389ce3b4b131aa1e0e3b52261a852fc6dc23690702b94bb143edee57 -docfiles size=85 +containerchecksum c9593bbaee98df6aa290e95196c5436fc34f24839e81014d4e9eff3115bd2834362edc20e19462436174c7603754375d69ac9ca47f81d6b7ad7c95d2dc3b6f0a +doccontainersize 262484 +doccontainerchecksum 9743f73de151f24d589a3173f99b4e546e9ed9270f56efa337e8d49f0bdeef13628ff05d5a4a62d5dc42cc89395d528d7749e8299a565e1c203900fa27e6722d +docfiles size=87 RELOC/doc/plain/tex-nutshell/README details="Readme" RELOC/doc/plain/tex-nutshell/tex-nutshell.pdf details="The document itself" RELOC/doc/plain/tex-nutshell/tex-nutshell.tex catalogue-ctan /info/tex-nutshell catalogue-license pd catalogue-topics documentation tut-plaintex -catalogue-version 0.2 +catalogue-version 0.5 name tex-overview category Package @@ -289348,15 +289409,15 @@ docfiles size=592 name texlive-docindex category TLCore -revision 55170 +revision 55185 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 for longdesc the process. containersize 388 -containerchecksum 61f2542954d8fb79def50c78f43d21922972fc57df7baa1318eba28109adcff19141fb949aeaf0c6e2ae8ccc3ba07d4232e83c1ca4bbd1b1a704585a5c6cc5fc +containerchecksum 0c75c241c036a0227658d30c5672658584e13593d0a7199ec1543b541d305f1008c34aaa3a3d5ec092ba6b6c2738d4730abb0b15fb3ee99377ef8de4a97362e9 doccontainersize 161932 -doccontainerchecksum fdfd35c803cdaaf0e988cd53a740464283cca49e430879799b25a429108e97e2aed1f9934e79dff1f7e836187d6c5aa6e53749192d8ced9b0a1a441bb3f4a258 +doccontainerchecksum 3fcc29024d02d6f0cd2052360896c19db709232e5d3217a79903ce4e591b455bfee1ce7dec4f3b6aa8b23a4fcadec1618c89452126cc06c2afa01e1e3303ea2c docfiles size=325 doc.html @@ -289578,7 +289639,7 @@ docfiles size=368 name texlive-scripts category TLCore -revision 55171 +revision 55185 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. @@ -289586,10 +289647,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 132404 -containerchecksum 7fd2876ed9e6ea64938845d8370db777e70f1af0ebc6ad63c144b319451735df0feb35dc79902504fc2d6f5e75a7961f64ce9105c61d580302137c8407b5c376 -doccontainersize 219412 -doccontainerchecksum ba0f20eb7a843852dd39640c0ac01451468fcc56bc16750aa1898b7ab30ab91583f04a7b1050575aefc1831609ffebef24fcd8b0fa6e82882ed7382bf6d8391c +containersize 132440 +containerchecksum 300567d769bdadb04d12db9e7df3c0ca5c39ae6470c8051fa2d0b9833227bfe023c244150aa8c6c580452af9c206b92f87995934ae49da2e72e5b2e8f146a846 +doccontainersize 219408 +doccontainerchecksum 47897c969519a39a94382f17c341f0352efa47b148ec8a7921de66853fb877bf60268b9c9e6fc3b78f3ff3b2796450d4b1690855436935154dcb7b5ad5ef03f0 docfiles size=141 texmf-dist/doc/man/man1/fmtutil-sys.1 texmf-dist/doc/man/man1/fmtutil-sys.man1.pdf @@ -313710,18 +313771,28 @@ catalogue-version 0.4 name vcell category Package -revision 55164 +revision 55191 +shortdesc Vertical alignment of content inside table cells relocated 1 -containersize 1044 -containerchecksum a4f9aa53f918835cb6fdf1cf417131d27d7ae059941b367044b572946aefba84495c04d4ea68fec783cb146dc27bfd9caeb03beb4fd72662f2b5a4d445f9db4b -doccontainersize 150236 -doccontainerchecksum 96aa11a6812a31f3cad268187ab853ad1b6357bab079ee3f847d9b78a4f9bdbff13cd66bac63826ec2097954d198328e93fc87befb4da61af1b34cd528f32fb6 +longdesc This package offers low-level macros to build rows with +longdesc vertically-aligned cells (top, middle or bottom) and calculate +longdesc the height of a row. These cells can have variable or fixed +longdesc height and can be paragraph-cells or inline-cells. Different +longdesc vertical alignments can be used in the same row. +containersize 1352 +containerchecksum 7ca3866a8341d756cc567f3b71122cc1a9a5060399f3258b9de809aba2c0d2944a140a6d0d76a4dd8593cb314a8bf469829f5d5d383f3718f5e8422f06f5f8b1 +doccontainersize 150228 +doccontainerchecksum 568ed02cc71370c3a77f468c43cf6cd72b79e9572f463c7aeca663ab725dff4c7db1a630ac7eab7f71063b115fbe3d8299190129c2d50cde859061bf62fdc385 docfiles size=40 - RELOC/doc/latex/vcell/README.md - RELOC/doc/latex/vcell/vcell.pdf + RELOC/doc/latex/vcell/README.md details="Readme" + RELOC/doc/latex/vcell/vcell.pdf details="Package documentation" RELOC/doc/latex/vcell/vcell.tex runfiles size=1 RELOC/tex/latex/vcell/vcell.sty +catalogue-ctan /macros/latex/contrib/vcell +catalogue-license lppl1.3c +catalogue-topics table +catalogue-version 1.0.1 name vdmlisting category Package @@ -322354,15 +322425,15 @@ catalogue-version 2.0 name xepersian category Package -revision 55168 +revision 55194 shortdesc Persian for LaTeX, using XeTeX relocated 1 longdesc This package provides a convenient interface for typesetting longdesc Persian and English texts in LaTeX, using the XeTeX engine. -containersize 58540 -containerchecksum 0ae27db064a181a56584cf33d612a59b1435ae6baf2cf9beac34d0d765dce3e7b7ea2d3f423bb4cbc1fddc79c4c3aec2e5a8df1bd3831e5d87993f0c84133a63 -doccontainersize 987568 -doccontainerchecksum b2610938d4094209b3a5c16aa3dd72dca0ff52fa3ff7e1d07ecaa99de9dd480b3791364ddd2f38827c2db410acca8e0fd7ee53b7f3f58962fcfda44ecb038a59 +containersize 58564 +containerchecksum c5880fe199b5a239ecce8e4370396f4a981a886e8412cfad36032c4d2b7fe9fdc7d6818e14b53ca22be36909f19be7f363b40cd58644231ce015a627bd65a48f +doccontainersize 987500 +doccontainerchecksum 395bdd506072a2e234bb45f120ad748322f78657fa5c7013097af28688dfc7e58d2a7c865fd2c80592132fa46a02e35f65aa4bbfa752c5fb6b4b829a79a302cf docfiles size=315 RELOC/doc/xelatex/xepersian/README details="Readme" RELOC/doc/xelatex/xepersian/dkun-0.3.py @@ -322382,8 +322453,8 @@ docfiles size=315 RELOC/doc/xelatex/xepersian/xepersian-doc.pdf details="Package user documentation" RELOC/doc/xelatex/xepersian/xepersian-logo.tex RELOC/doc/xelatex/xepersian/xepersian.pdf details="Package source documentation" -srccontainersize 74224 -srccontainerchecksum 0eef6a6228b23cb4edf4750131bd60cee0be978e542a30441fa89141adc924e4e803209d1b8816a1657c34ddb91fc14250f10a71a8a53b906d278ec591e3a061 +srccontainersize 74624 +srccontainerchecksum 866a5fb8007fa600c50b343903a306d17e26d5616eb7fc14487ae93005cb7bce1209d382104021cd2b345ea02f2a4b058518454bf797600ad59e8f9254bee8af srcfiles size=118 RELOC/source/xelatex/xepersian/xepersian-doc-basics.ltx RELOC/source/xelatex/xepersian/xepersian-doc-boolean.ltx @@ -322396,7 +322467,7 @@ srcfiles size=118 RELOC/source/xelatex/xepersian/xepersian-doc.ltx RELOC/source/xelatex/xepersian/xepersian.dtx RELOC/source/xelatex/xepersian/xepersian.ins -runfiles size=110 +runfiles size=111 RELOC/fonts/misc/xetex/fontmapping/xepersian/persian-tex-text.map RELOC/fonts/misc/xetex/fontmapping/xepersian/persian-tex-text.tec RELOC/tex/xelatex/xepersian/algorithm-xepersian.def @@ -322466,7 +322537,7 @@ catalogue-contact-repository https://github.com/persiantex/xepersian catalogue-ctan /macros/xetex/latex/xepersian catalogue-license lppl1.3c catalogue-topics persian xetex class -catalogue-version 23.0 +catalogue-version 23.1 name xepersian-hm category Package diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 index 358a50441b..086e131ae2 100644 --- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 +++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 @@ -1 +1 @@ -e7a80b2f637c721d3610200c2adce5aa texlive.tlpdb +fa19c5d105d47b0ca68640db1cf5c95c texlive.tlpdb diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 index a1c41d2375..d6ffce8aa1 100644 --- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 +++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 @@ -1 +1 @@ -4c12529852ab1e123cfa5a36257daac0e6c9291cda3dbe92e5091838231b3177c36d6ea720a2d0af1512ea48fdee2f3326b061a0beb7a0a6d50c68c20e5e9c45 texlive.tlpdb +57ec063e661574e56fa63a90f8c2cb0f3b98af8ec022a236f9b113983c2941d4ded0e553d69261111de5edd14b374dd95176c52f351b9d13abb0f19b741ccb39 texlive.tlpdb diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc index add42546f3..6a1aa7e5cf 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----- -iQEcBAEBCgAGBQJewG4mAAoJEEzhh34ZQ4xwPFQH/Rc1ra1qmZpRoH8HbQFPz/WV -w5YmAbKnHCSbHS2FOhcTZ6oqQOLukRh2hXl98cN9j3uNzdEvmcZIYPdWYu2E2/Vl -iJ8k9tIBRfL9wZ1HuUtubXHfNPPQFT6a5xyi4eyrtIa/Syt38fNeQw9NkupuwGra -eWyqLaJZGbze6KYgZ1ETjG4wCvH+8PQ4v7KqQIDIrQ8RjrZbbMisO+yl6BBLwJfM -aytdj0ZSBKGd9rNHWto7XUGrCG+i91PPllUKcpL39ZgmV36TLLe/qg2dl0p5EcUT -m0gnwaO+fvIhKqK+/P2YjTP8O5aIhdZhATi3so3VzLubvspXGn9Xh/IQ8aOqgYY= -=5w/X +iQEcBAEBCgAGBQJewcHRAAoJEEzhh34ZQ4xwA0gIALsFUldntIGFqxz9EwLNGqrW +mwtbgCxjusAprKASCxB1FJFfeqVZFuew8oLTVLzq5cYbEzLTp4xp7PgZGZRMbq/J +xcBbegn7h9SYlHLvtsijOw8niSbh+lmecA8ZlHJKUB5sthc6pxNzBGby0mQVFJFG ++SQgX5JMkoagl/QGCtDNN2pERZn3Bqxfo1TBN/iloDL7g8CvK8WzvxxVBhagMzh0 +jnJN2jTHNB8xCJOVY2vouqPLiHhEBbHyBSsy3663EuNGju//o82660bcTLp6quhd +ww2hRFoWmvPUHvUe1Kvj56OnijVjhGs+xuYvVy5+pkg6tQFG5m74tYDTr8yfV58= +=3axO -----END PGP SIGNATURE----- diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz index 021d8dbd30..5c61277030 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