From 038f3d26e9b2f40210a14133c33f1d2dfb5261bf Mon Sep 17 00:00:00 2001 From: Norbert Preining Date: Thu, 31 Oct 2019 03:00:53 +0000 Subject: CTAN sync 201910310300 --- systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm | 44 +++- .../texlive/tlnet/tlpkg/installer/ctan-mirrors.pl | 3 + systems/texlive/tlnet/tlpkg/texlive.tlpdb | 253 ++++++++++++--------- 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 2128544 -> 2130132 bytes systems/texlive/tlnet/tlpkg/translations/sr.po | 24 +- 8 files changed, 208 insertions(+), 134 deletions(-) (limited to 'systems/texlive/tlnet') diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm index a607e689c0..1bc1e0e16b 100644 --- a/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm +++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm @@ -1,4 +1,4 @@ -# $Id: TLUtils.pm 52482 2019-10-21 22:51:21Z karl $ +# $Id: TLUtils.pm 52568 2019-10-29 21:16:46Z karl $ # TeXLive::TLUtils.pm - the inevitable utilities for TeX Live. # Copyright 2007-2019 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: 52482 $'; +my $svnrev = '$Revision: 52568 $'; my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown"; sub module_revision { return $_modulerevision; } @@ -1102,18 +1102,25 @@ sub rmtree { =item C +=item C + Copy file C<$file> to directory C<$target_dir>, or to the C<$destfile> -in the second case. No external programs are involved. Since we need -C, the Perl module C is required. The time stamps -are preserved and symlinks are created on Unix systems. On Windows, -C<(-l $file)> will never return 'C' and so symlinks will be -(uselessly) copied as regular files. +if the first argument is C<"-f">. No external programs are involved. +Since we need C, the Perl module C is required. The +time stamps are preserved and symlinks are created on Unix systems. On +Windows, C<(-l $file)> will never return 'C' and so symlinks will +be (uselessly) copied as regular files. + +If the argument is C<"-L"> and C<$file> is a symlink, the link is +dereferenced before the copying is done. (If both C<"-f"> and C<"-L"> +are desired, they must be given in that order, although the current code +has no need to do this.) C invokes C if target directories do not exist. Files have mode C<0777> if they are executable and C<0666> otherwise, with the set bits in I cleared in each case. -C<$file> can begin with a file:/ prefix. +C<$file> can begin with a C prefix. If C<$file> is not readable, we return without copying anything. (This can happen when the database and files are not in perfect sync.) On the @@ -1125,10 +1132,15 @@ that is a fatal error. sub copy { my $infile = shift; my $filemode = 0; + my $dereference = 0; if ($infile eq "-f") { # second argument is a file $filemode = 1; $infile = shift; } + if ($infile eq "-L") { + $dereference = 1; + $infile = shift; + } my $destdir=shift; # while we're trying to figure out the versioned containers. @@ -1159,6 +1171,18 @@ sub copy { die "mkdirhier($destdir) failed: $err\n" if ! $ret; } + # if we should dereference, change $infile to refer to the link target. + if (-l $infile && $dereference) { + my $linktarget = readlink($infile); + # The symlink target should always be relative, and we need to + # prepend the directory containing the link in that case. + # (Although it should never happen, if the symlink target happens + # to already be absolute, do not prepend.) + if ($linktarget !~ m,^/,) { + $infile = Cwd::abs_path(dirname($infile)) . "/$linktarget"; + } + } + if (-l $infile) { my $linktarget = readlink($infile); my $dest = "$destdir/$filename"; @@ -2265,8 +2289,8 @@ sub unpack { } } else { # we are installing from local compressed files - # copy it to temp - TeXLive::TLUtils::copy($what, $tempdir); + # copy it to temp with dereferencing of link target + TeXLive::TLUtils::copy("-L", $what, $tempdir); check_file_and_remove($containerfile, $checksum, $size); if (! -r $containerfile) { diff --git a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl index 832e652987..1d3b4b6846 100644 --- a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl +++ b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl @@ -147,6 +147,9 @@ $mirrors = { }, 'Switzerland' => { 'http://www.pirbot.com/mirrors/ctan/' => 1 + }, + 'UK' => { + 'http://anorien.csc.warwick.ac.uk/mirrors/CTAN/' => 1 } }, 'North America' => { diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb b/systems/texlive/tlnet/tlpkg/texlive.tlpdb index 56980abe94..e0bf4021a8 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/52560 +depend revision/52576 name 00texlive.image category TLCore -revision 52544 +revision 52577 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 @@ -514,6 +514,7 @@ runfiles size=4952 tlpkg/tlpsrc/aurl.tlpsrc tlpkg/tlpsrc/authoraftertitle.tlpsrc tlpkg/tlpsrc/authorarchive.tlpsrc + tlpkg/tlpsrc/authordate.tlpsrc tlpkg/tlpsrc/authorindex.tlpsrc tlpkg/tlpsrc/auto-pst-pdf-lua.tlpsrc tlpkg/tlpsrc/auto-pst-pdf.tlpsrc @@ -918,6 +919,7 @@ runfiles size=4952 tlpkg/tlpsrc/chextras.tlpsrc tlpkg/tlpsrc/chicago-annote.tlpsrc tlpkg/tlpsrc/chicago.tlpsrc + tlpkg/tlpsrc/chicagoa.tlpsrc tlpkg/tlpsrc/chickenize.tlpsrc tlpkg/tlpsrc/childdoc.tlpsrc tlpkg/tlpsrc/chivo.tlpsrc @@ -4052,7 +4054,7 @@ depend opt_w32_multi_user:1 name 00texlive.installer category TLCore -revision 52548 +revision 52562 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 @@ -23382,6 +23384,41 @@ catalogue-license lppl1.3cbsd2 catalogue-topics archival journalpub catalogue-version 1.1.1 +name authordate +category Package +revision 52564 +shortdesc Author/date style citation styles +relocated 1 +longdesc Authordate produces styles loosely based on the recommendations +longdesc of British Standard 1629(1976), Butcher's Copy-editing and the +longdesc Chicago Manual of Style. The bundle provides four BibTeX styles +longdesc (authordate1, ..., authordate4), and a LaTeX package, for +longdesc citation in author/date style. The BibTeX styles differ in how +longdesc they format names and titles; one of them is necessary for the +longdesc LaTeX package to work. +containersize 8276 +containerchecksum c67f75eb92a937755ef0a1ef0896ae3cc1c256008d864572503d3e9d3be1321d25be59e76d4d3ae443398612233a328b1d6e2da9c103f41b30eb088208701308 +doccontainersize 2508 +doccontainerchecksum 156fec304fa95388fdbb386153482016a4d78d4862943bcd6124466b12df920498d5b42446465fc0f70da6353f58c329a27a822efb5cca8f0c4d7fdcb3239a02 +docfiles size=7 + RELOC/doc/bibtex/authordate/README details="Readme file" + RELOC/doc/bibtex/authordate/authordate1.ltx + RELOC/doc/bibtex/authordate/authordate2.ltx + RELOC/doc/bibtex/authordate/authordate3.ltx + RELOC/doc/bibtex/authordate/authordate4.ltx + RELOC/doc/bibtex/authordate/testadb.ltx +runfiles size=33 + RELOC/bibtex/bst/authordate/authordate1.bst + RELOC/bibtex/bst/authordate/authordate2.bst + RELOC/bibtex/bst/authordate/authordate3.bst + RELOC/bibtex/bst/authordate/authordate4.bst + RELOC/tex/latex/authordate/authordate1-4.sty +catalogue-also natbib +catalogue-ctan /biblio/bibtex/contrib/authordate +catalogue-date 2019-10-22 18:11:50 +0200 +catalogue-license knuth +catalogue-topics bibtex-sty + name authorindex category Package revision 51757 @@ -30521,16 +30558,16 @@ catalogue-version 0.1 name beebe category Package -revision 52485 +revision 52577 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 872780 -containerchecksum bd74ae8511f1ec37fbcc2e622cf6cba1ff45c6afe9f5e164954a2e0b9a2ef59329200bc14197de460c0858224cc2597158113ac41ec86341de05a39c8588b555 -runfiles size=2412 +containersize 862904 +containerchecksum 8d77491fbc119e8e97be623d9bdfc13563060cab2463a7304e905deef03ccc79dd09baf143b41e65ed3dfe228bad243f13cddb984d6bf914e7aa48964bcf275b +runfiles size=2331 RELOC/bibtex/bib/beebe/epodd.bib RELOC/bibtex/bib/beebe/font.bib RELOC/bibtex/bib/beebe/printing-history.bib @@ -30544,20 +30581,8 @@ runfiles size=2412 RELOC/bibtex/bib/beebe/tugboat.bib RELOC/bibtex/bib/beebe/type.bib RELOC/bibtex/bib/beebe/typeset.bib - RELOC/bibtex/bst/beebe/abstract.bst RELOC/bibtex/bst/beebe/annotate.bst - RELOC/bibtex/bst/beebe/annotation.bst RELOC/bibtex/bst/beebe/apa.bst - RELOC/bibtex/bst/beebe/apalike2.bst - RELOC/bibtex/bst/beebe/astron.bst - RELOC/bibtex/bst/beebe/authordate1.bst - RELOC/bibtex/bst/beebe/authordate2.bst - RELOC/bibtex/bst/beebe/authordate3.bst - RELOC/bibtex/bst/beebe/authordate4.bst - RELOC/bibtex/bst/beebe/bbs.bst - RELOC/bibtex/bst/beebe/bibtoref.bst - RELOC/bibtex/bst/beebe/cbe.bst - RELOC/bibtex/bst/beebe/chicagoa.bst RELOC/bibtex/bst/beebe/humanbio.bst RELOC/bibtex/bst/beebe/humannat.bst RELOC/bibtex/bst/beebe/is-abbrv.bst @@ -50050,6 +50075,22 @@ catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl catalogue-topics bibtex-sty bibtex-annote +name chicagoa +category Package +revision 52567 +shortdesc "Chicago" bibliography style with annotations +relocated 1 +longdesc This is a modification of the author's chicago style, to +longdesc support an 'annotation' field in bibliographies. +containersize 8840 +containerchecksum 47cd96b4933b6c0bc4af01e5085af2450b60168813715c946ea18e3e7e5f6bda409862638038917bb678579bfba127fadf51b9a5916e4fb6c78bd10481a273a4 +runfiles size=10 + RELOC/bibtex/bst/chicagoa/chicagoa.bst +catalogue-ctan /biblio/bibtex/contrib/misc/chicagoa.bst +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics bibtex-sty bibtex-annote + name chickenize category Package revision 45083 @@ -60796,7 +60837,7 @@ containerchecksum cfe97f315159b9f5732cdc417b16c18d37443d13389abee846d690c13bf5ea name collection-bibtexextra category Collection -revision 52470 +revision 52567 shortdesc BibTeX additional styles relocated 1 longdesc Additional BibTeX styles and bibliography data(bases), notably @@ -60809,6 +60850,7 @@ depend amsrefs depend apacite depend apalike2 depend archaeologie +depend authordate depend beebe depend besjournals depend bestpapers @@ -60878,6 +60920,7 @@ depend breakcites depend cell depend chbibref depend chicago +depend chicagoa depend chicago-annote depend chembst depend chscite @@ -60938,8 +60981,8 @@ depend vak depend windycity depend xcite depend zootaxa-bst -containersize 1148 -containerchecksum 44b281bb1d4f2f96008f4efff2bebe7560bba48c4dad9e87001b78bde1ad5ed78282bffaadd19b2d02bdd00f0b97c58968d00b17b7cf339b71d30ea50e69888e +containersize 1156 +containerchecksum e6de0b90b7aeb01472ad6837d0702a03d9bab271d4e43b3349e3313d88e4474ccd53b199d45e75601c842b87a215f737968a496053f9656a771518131b27d181 name collection-binextra category Collection @@ -115125,20 +115168,24 @@ catalogue-topics font-doc name fontools category Package -revision 52543 +revision 52571 shortdesc Tools to simplify using fonts (especially TT/OTF ones) -longdesc This package provides a few tools to ease using fonts -longdesc (especially TrueType/OpenType ones) with LaTeX and fontinst: -longdesc afm2afm - reencode .afm files; designed to replace fontinst's -longdesc \reencodefont for big .afm files; autoinst - simplify the use -longdesc of the LCDF TypeTools by creating a command file for otftotfm, -longdesc plus .fd and .sty files; and ot2kpx - extract all kerning pairs -longdesc from an OpenType font. +longdesc This package provides tools to simplify using OpenType fonts +longdesc with LaTeX. By far the most important program in this bundle is +longdesc autoinst: autoinst - a wrapper script around Eddie Kohler's +longdesc LCDF TypeTools. Autoinst aims to automate the installation of +longdesc OpenType fonts in LaTeX by calling the LCDF TypeTools (with the +longdesc correct options) for all fonts you wish to install, and +longdesc generating the necessary .fd and .sty files. In addition, this +longdesc bundle contains a few other, less important utilities: afm2afm +longdesc - re-encode .afm files, ot2kpx - extract kerning pairs from +longdesc OpenType fonts, splitttc - split an OpenType Collection file +longdesc (ttc or otc) into individual fonts. depend fontools.ARCH -containersize 43492 -containerchecksum f85ad2bf7eb1095ff60637dae3b6ca3a9e9ff48ce2c82e56373b452a85078dd989afa2b8fb0d504351059c6ef1b0175814dd960e31e5e9385855d0ddfcd64311 -doccontainersize 126144 -doccontainerchecksum 55760c22d8d7ecdf1cd474bc9fd6388903c6f22bebbfa789f2e71f56664357d0a867137256de2bc273c6f44bbc5d83e4b42a51852f9ccd98a2015d6d15a56574 +containersize 43600 +containerchecksum 175144d69b783823c597afa31d294a71aef26a3d0e640e5e2d5832c72e376486654caf6bb995d5508e633df96e2a86d7227292d363dd892ed710d60a10056f35 +doccontainersize 126208 +doccontainerchecksum 1866ec34bb8057bdd6dfd0de00cb30a4f0f63e1702042746bca3f1d79cd33438d57251c3f1edd51e16ea92b18c04c4ac8c60fae6754caff717cfc218ba500219 docfiles size=55 texmf-dist/doc/man/man1/afm2afm.1 texmf-dist/doc/man/man1/afm2afm.man1.pdf @@ -115164,7 +115211,7 @@ runfiles size=50 texmf-dist/scripts/fontools/autoinst texmf-dist/scripts/fontools/ot2kpx catalogue-ctan /fonts/utilities/fontools -catalogue-date 2019-10-27 10:59:16 +0100 +catalogue-date 2019-10-29 20:44:22 +0100 catalogue-license gpl2 catalogue-topics font-devel @@ -120764,7 +120811,7 @@ catalogue-topics font font-type1 font-otf font-greek name gfsneohellenicmath category Package -revision 46869 +revision 52570 shortdesc A Greek math font in the Neo-Hellenic style relocated 1 longdesc The GFSNeohellenic font, a historic font first designed by @@ -120778,10 +120825,10 @@ longdesc beamer documents since this is a Sans Math font. The longdesc GFSNeohellenic fontfamily supports many languages (including longdesc Greek), and it is distributed (both text and math) under the longdesc OFL license. -containersize 308032 -containerchecksum 11816aed70ed5d89b65148b3872f77a788271c603ee4f9eda71d250347bf7f2aa251b7c8e9dadaab75dde273a465a199adbcade3a957dcc79947d5d52297e7b7 -doccontainersize 114836 -doccontainerchecksum 2022e02ec438b19ce6e8fbf8f300ee050c2c7687408a4c4772751ef3059c882cd6944985a59ed9a5c1c8de1aec0ef2444c6f06c468cb4a8c8a3ea269b12b7ed1 +containersize 308036 +containerchecksum 1dbce2d775c204b758b34c66adfa7af5315ba5d40f577a2e5f8bc37aedd4fd5814dccf31e6830804f8b8ededcfe88eed9f0ea020fb411e439777bc19d88698b8 +doccontainersize 114840 +doccontainerchecksum 5f511a3433bbfe68bd2240791126de6254f5dc552a24bd344aa33e2c8c93a08ed924b5d900d8bba1cd2fb03a2349ccd0c7233ae9b54db5f888b68bf97bad7f05 docfiles size=30 RELOC/doc/fonts/gfsneohellenicmath/MathematicsCheatSheet.pdf details="Package documentation" RELOC/doc/fonts/gfsneohellenicmath/README details="Readme" @@ -120789,10 +120836,10 @@ runfiles size=166 RELOC/fonts/opentype/public/gfsneohellenicmath/GFSNeohellenicMath.otf RELOC/tex/latex/gfsneohellenicmath/gfsneohellenicot.sty catalogue-ctan /fonts/gfsneohellenicmath -catalogue-date 2018-04-29 07:15:59 +0200 +catalogue-date 2019-10-29 19:11:18 +0100 catalogue-license ofl catalogue-topics font font-type1 font-otf font-greek maths font-maths -catalogue-version 1.0 +catalogue-version 1.0.1 name gfsporson category Package @@ -144764,7 +144811,7 @@ catalogue-topics diagram name knowledge category Package -revision 52273 +revision 52572 shortdesc Displaying, hyperlinking, and indexing notions in a document relocated 1 longdesc The package offers a systematic way to handle @@ -144772,18 +144819,18 @@ longdesc notions/concepts/terms throughout a document. It helps building longdesc an index. In combination with hyperref it makes it easy to have longdesc every reference of a concept linked to its introduction. It longdesc also offers simple notations. -containersize 20596 -containerchecksum b0b447090a1fe99b3c30d47aa7e3b9dcc6dc7114e37d1eec6cd6fd66d1b976a70bf8e00fbe1decf25b8d0d74c77555282ebf0e4b921a5c28e615191403c57286 -doccontainersize 732784 -doccontainerchecksum cd77f5c9880d32e48daeec69fd4b23f0fb1bb3d945a3025f2f62da9c9a4becd3146e9f04033e9b40a4103daafc7a356c6c0796a644d1f4e20a8b26ad84e345cf +containersize 20620 +containerchecksum 65c9b9854f600353a9b86a64e2d61024563ef52203be9286364594ffd5420d1992d275ddc0ab267bb734fdec9261042f87c297cdb3f5647b8b9f5ed5394e0d6e +doccontainersize 733044 +doccontainerchecksum a95b2f0aecbe1c26d0f2fabab4312b80fe2d660a13fb0ceed9a55b4aebe1ef18029fea9cdfb40c96c590256f3f34ef965062254bd90d6773d3e97fb77dc3b911 docfiles size=212 RELOC/doc/latex/knowledge/README.md details="Readme" RELOC/doc/latex/knowledge/knowledge-example.tex RELOC/doc/latex/knowledge/knowledge.pdf details="Package documentation" RELOC/doc/latex/knowledge/knowledge.tex RELOC/doc/latex/knowledge/makefile -srccontainersize 39120 -srccontainerchecksum 74d7c0a1adb9ec30ef73f755e0b14dc986c69bd85341f0c1dc92f03469709f65f2d84094aa5e8160256e2241793a68c97dc14eca7d6b7ae1f1e2f7d8df178521 +srccontainersize 39128 +srccontainerchecksum 687adad1d6576696c257a8665452d4af393d002b52d86180560fd5a2b0e20b8986393cd96b6585632e73dbb6203315df8093ea4852655862c143360f4a600c4d srcfiles size=52 RELOC/source/latex/knowledge/knowledge-code.dtx RELOC/source/latex/knowledge/knowledge-configuration.dtx @@ -144794,10 +144841,10 @@ runfiles size=31 catalogue-contact-home https://www.irif.fr/~colcombe/knowledge_en.html catalogue-contact-repository https://www.irif.fr/~colcombe/Knowledge/ catalogue-ctan /macros/latex/contrib/knowledge -catalogue-date 2019-10-03 16:17:47 +0200 +catalogue-date 2019-10-29 07:58:10 +0100 catalogue-license lppl1.2 catalogue-topics index label-ref expl3 -catalogue-version 1.17 +catalogue-version 1.18 name knuth category Package @@ -174041,7 +174088,7 @@ catalogue-version 0.4 name luavlna category Package -revision 52504 +revision 52569 shortdesc Prevent line breaks after single letter words, units, or adademic titles relocated 1 longdesc In some languages, like Czech or Polish, there should be no @@ -174057,16 +174104,15 @@ longdesc units. The package supports both plain LuaTeX and LuaLaTeX. longdesc BTW: "vlna" is the Czech word for "wave" or "curl" and also longdesc denotes the tilde which, in TeX, is used for "unbreakable longdesc spaces". -containersize 5956 -containerchecksum bffd46e21f327fb2b6e02a10ca208e2db938af3883ce62966895e92fe977c38cf1194b04eef5d6c838efe60f30c053f37c1730463cc9ddb80e171bb9beaa3e5b -doccontainersize 92584 -doccontainerchecksum acc7c509e2213f69e6dffab8c2ab9bd8df50c7807edbac7517c41256cf1914a673d38368d3fec1dc251dd76ce589ac188f4e1a5411e213a697c251b918fc3940 -docfiles size=27 +containersize 6944 +containerchecksum 71cabbea7b0c018ec3bfcf7e80754b33e00f41ef0b282c60a7e5c6aae83ba47f60e73ac65457fc62c03f2ed73508f83c8f317c06735b1046ddb838726c8d1a74 +doccontainersize 91624 +doccontainerchecksum 6f189f697e729fab3ed7a6f251227a26377c1a692a6c76775c8556feded08a319f96f9c68acb2f964e89544da3d89605219d1978386707e6e652d63bfb8027fc +docfiles size=26 RELOC/doc/luatex/luavlna/README.md details="Readme" RELOC/doc/luatex/luavlna/luavlna-doc.pdf details="Package documentation" RELOC/doc/luatex/luavlna/luavlna-doc.tex - RELOC/doc/luatex/luavlna/luavlna.tex -runfiles size=11 +runfiles size=12 RELOC/tex/luatex/luavlna/luavlna-csplain-langs.lua RELOC/tex/luatex/luavlna/luavlna-langno.lua RELOC/tex/luatex/luavlna/luavlna-predegrees.lua @@ -174076,14 +174122,15 @@ runfiles size=11 RELOC/tex/luatex/luavlna/luavlna.4ht RELOC/tex/luatex/luavlna/luavlna.lua RELOC/tex/luatex/luavlna/luavlna.sty + RELOC/tex/luatex/luavlna/luavlna.tex catalogue-also encxvlna xevlna catalogue-contact-bugs https://github.com/michal-h21/luavlna/issues catalogue-contact-repository https://github.com/michal-h21/luavlna catalogue-ctan /macros/luatex/generic/luavlna -catalogue-date 2019-10-22 22:58:47 +0200 +catalogue-date 2019-10-29 17:54:35 +0100 catalogue-license lppl1.3 catalogue-topics typesetting czech slovak polish luatex -catalogue-version 0.1d +catalogue-version 0.1e name luaxml category Package @@ -199180,7 +199227,7 @@ catalogue-topics font font-type1 font-decor name nicematrix category Package -revision 52370 +revision 52573 shortdesc Several features to improve the typesetting of mathematical matrices with TikZ relocated 1 longdesc This package provides new environments similar to the @@ -199195,27 +199242,27 @@ longdesc provides a control over the width of the columns and the longdesc possibility to add an exterior line and an exterior column. longdesc nicematrix requires and loads amsmath, array, expl3, l3keys2e, longdesc xparse, tikz, as well as the TikZ library fit. -containersize 12024 -containerchecksum 03b9289b7d8edb6a042fb4f9facd7b933d882ad1b88a8f70da8772e1d40628a59b331638a1cc149f2fc946dc252b7878b5950cd92b9944e34adebf6e2d1f3b87 -doccontainersize 957728 -doccontainerchecksum 71089524b9cf67d7ba7156e3f7d1bef56ce699e2b39f8879731d692f2f9352f772d04714d7f7f2826d1db6a0f1ca0860bc490644f0df82e8e52ba0d5d85d9992 -docfiles size=260 +containersize 12360 +containerchecksum 79024243911a5142a238b931973a78bc9eca58d29fef1d012c7bf8d2e2db6c506669107cb6f1c661650b4198a4218c8173c2311846e92d3b059783245603456e +doccontainersize 969696 +doccontainerchecksum 367eb9300568c6c0023ed6be599070e0cb85d66eb4a647f8187b24cf77f151d860888f2f3ccd43a229c02a09a73e556e269bcff3f918c035f57c301eb3a9c465 +docfiles size=263 RELOC/doc/latex/nicematrix/README.md details="Readme" RELOC/doc/latex/nicematrix/nicematrix-french.pdf details="Package documentation in French" language="fr" RELOC/doc/latex/nicematrix/nicematrix-french.tex RELOC/doc/latex/nicematrix/nicematrix.pdf details="Package documentation" -srccontainersize 42360 -srccontainerchecksum 7f71495b48f8563ab8adeaf021dd998847001f5c05c9d643619fb370126bf31a1ed269b53c7be670549c94d13d32ceb9a5aebe65bafaa6815d696cbe2f7afc6b -srcfiles size=60 +srccontainersize 43632 +srccontainerchecksum d53f2f02843da3f3deb32491593d5949e9419f74be92f4405ed4ace0c0abd9b6845567bc90297c30cbc2d2a142c1e6e52ab06e84f0fbab12ca00b594d31413d3 +srcfiles size=62 RELOC/source/latex/nicematrix/nicematrix.dtx RELOC/source/latex/nicematrix/nicematrix.ins -runfiles size=21 +runfiles size=22 RELOC/tex/latex/nicematrix/nicematrix.sty catalogue-ctan /macros/latex/contrib/nicematrix -catalogue-date 2019-10-13 12:36:56 +0200 +catalogue-date 2019-10-29 19:24:02 +0100 catalogue-license lppl1.3 catalogue-topics maths matrix pgf-tikz expl3 -catalogue-version 3.5 +catalogue-version 3.6 name nicetext category Package @@ -231474,7 +231521,7 @@ catalogue-version 1.0 name poemscol category Package -revision 52210 +revision 52574 shortdesc Typesetting Critical Editions of Poetry relocated 1 longdesc The package offers LaTeX macros for typesetting critical @@ -231485,17 +231532,17 @@ longdesc marking for cases in which page breaks occur during stanza longdesc breaks, running headers of the form 'Notes to pp. xx-yy' for longdesc the notes sections, index of titles and first lines, and longdesc automatic generation of a table of contents. -containersize 18672 -containerchecksum 59906e64751670ce1a00ac953db24a890b0c3388fc306c5520d62a728497203c1516106210b56b26f22ebf6e78e33a3f01bb7d897ad356f2364ac85c17819a82 -doccontainersize 748128 -doccontainerchecksum 8631041e8c3188dce9a0982b7e69e6efdf7949fbd600c5869ee84467b06b80754c86e1b54476843002a12be4a52c9f88c82441cebfb86d4eceb12605391d3477 +containersize 18756 +containerchecksum ff2350ed68690432ca368330f50c5a76ff586c2a09e7e487ea114d75b9b488652ce561e40d69ee02a5271b4ef93ac3dcf888cd64b79a33b8f7b5d95ad7972e81 +doccontainersize 749088 +doccontainerchecksum 89a929f03afae3c1a48aa4289bda29b06664d4583c6474fcc3df041b809c240114f1f5a14d2f1d1493c1c36d31cb9344a4ef6ba9ca6e00008f3c9f1dc5ffa0c8 docfiles size=191 RELOC/doc/latex/poemscol/README details="Readme" RELOC/doc/latex/poemscol/poemscol.pdf details="Documented source" RELOC/doc/latex/poemscol/poemscolcheatsheet.pdf details="Cheat Sheet" RELOC/doc/latex/poemscol/poemscolcheatsheet.tex -srccontainersize 88472 -srccontainerchecksum 6717c08c6d728f7aed959cb2ab1ded7d050241f61d878889dd838c85c4090aba602dd8b85e5c8b8f01fbf23aac7ab1562d9d33e31eccfbd508277507f5ab24ba +srccontainersize 88764 +srccontainerchecksum 5261ade28661f2ee8cffead2bbcbb6254a49477adf206303baa7912852e3a8562e3fd2fbc34dda8e4b6b3b86af6f8a81bce9158acb21342cbc238be650fe4353 srcfiles size=115 RELOC/source/latex/poemscol/poemscol.dtx RELOC/source/latex/poemscol/poemscol.ins @@ -231503,10 +231550,10 @@ runfiles size=38 RELOC/tex/latex/poemscol/poemscol.sty catalogue-also edmac ledmac ednotes verse catalogue-ctan /macros/latex/contrib/poemscol -catalogue-date 2019-09-28 23:17:09 +0200 +catalogue-date 2019-10-29 10:15:19 +0100 catalogue-license lppl1.3c catalogue-topics crit-ed -catalogue-version 3.14 +catalogue-version 3.141 name poetry category Package @@ -255356,23 +255403,23 @@ catalogue-version 0.1 name scontents category Package -revision 52539 +revision 52575 shortdesc Stores LaTeX contents in memory or files relocated 1 longdesc This package stores valid LaTeX code in memory (sequences) longdesc using the l3seq module of expl3. The stored content (including longdesc verbatim) can be used as many times as desired in the document, longdesc additionally can be written to external files if desired. -containersize 8040 -containerchecksum 1d17f3d3a0633f60b903ab2e2f757036a772feeadf2b47a79bf2c61c6cb039edc2553e2697597387d1bcf363a809838e93000c2395d61d85d4da2afe5b6ca920 -doccontainersize 321444 -doccontainerchecksum 5496b87735dd156fbf12a7d4de268023ab570ed1966e7eeb6581c859ebf3e3f3e4660d01f5fd14388b5612badd6068ec5755adc7fa9529f6e9384a6ca38891c2 +containersize 8036 +containerchecksum b1a1860da21c8210e37863566416bbc6cdb4bf523d8cde550fa10f4d920de5a05c304e47269f07fd2cdc3837fdad4bb8dd2e24f8036c9b5466769c8954746d7b +doccontainersize 319216 +doccontainerchecksum e0c77f1e3eefdbe7baae07cfba4882a9a3c2acb0fbf386a4ca7e2b41dc22c7cfbe660991d9c62e75e6cf9b0b35dac7056749e4a34f880a0677331ae5aefe8c94 docfiles size=84 RELOC/doc/latex/scontents/README.md details="Readme" RELOC/doc/latex/scontents/scontents.pdf details="Package documentation" -srccontainersize 25964 -srccontainerchecksum 532174855cc00f1e4860b4ed8b8b6979b63f5a2cf360b0fcca4d15d86384269fdcf0b737dd482e5590ae58e67caad820c0511d1cdf95f4ec4d7b91c52b8d0b18 -srcfiles size=29 +srccontainersize 26840 +srccontainerchecksum 93aae7f2a20f05a03d0747b15f1cac6d914960cd22c18ea15dd952fdab7723f43df78b88495bf39657027ab3b5f99502ef34c16e92d7329cdcc12803587bb061 +srcfiles size=30 RELOC/source/latex/scontents/scontents.dtx RELOC/source/latex/scontents/scontents.ins runfiles size=14 @@ -255383,10 +255430,10 @@ runfiles size=14 catalogue-contact-bugs https://github.com/pablgonz/scontents/issues catalogue-contact-repository https://github.com/pablgonz/scontents catalogue-ctan /macros/latex/contrib/scontents -catalogue-date 2019-10-26 20:47:18 +0200 +catalogue-date 2019-10-28 22:32:28 +0100 catalogue-license lppl1.3c catalogue-topics file-mgmt expl3 -catalogue-version 1.6 +catalogue-version 1.7 name scratch category Package @@ -282120,15 +282167,15 @@ docfiles size=572 name texlive-docindex category TLCore -revision 52548 +revision 52562 shortdesc top-level TeX Live doc.html, etc. longdesc These files are regenerated as needed, which is often, so we longdesc make them a separate package. See the tl-update-auto script longdesc for the process. containersize 109876 -containerchecksum e6d20af507f5ce7e064008b8af19ec1ce05bb3efaedbcf3533769a143ecf7a03693b83a040f83db7deed640b5ce9a0f9bbd6fbcbc607a5d8788b2dfe9304ae0d -doccontainersize 155292 -doccontainerchecksum 27f04432df86677a65b984b1ca9dda4ed130e52acbb91f48ee5ffa50a991dfb7629fcff1ebf1c23517bfe50ba4c6baaf83648ff506aafe105a6a890bed1dd0a5 +containerchecksum ae1bfdc50d68ea4a04e621659d9a36f6fcb794c70ab39ea8f4803dbb403cb83b48ebf554796b7b4e64e3d0cf690828fd6a5fda7a488512535447c522af66955a +doccontainersize 155264 +doccontainerchecksum 96675db5c94f28114b9d3b6fb5e7b8276e7d7b5460c67181270b1bec43b03618424ebcdbc05200382452e2930b18313463b5c3a49ad3bbd54c4d48617cd32ada docfiles size=304 doc.html runfiles size=270 @@ -282277,14 +282324,14 @@ docfiles size=430 name texlive-msg-translations category TLCore -revision 52488 +revision 52563 shortdesc translations of the TeX Live installer and TeX Live Manager longdesc This package contains the translated messages of the TeX Live longdesc installer and TeX Live Manager. For information on creating or longdesc updating translations, see longdesc http://tug.org/texlive/doc.html#install-tl-xlate. -containersize 142280 -containerchecksum 0ba47a2d80b71492bf62df4eee9514f75aa572097dfdb4ef415bc9c952b31b599ef58de3d2ac48b93c6ffa3993f3d8d5e430015b5fa28a0bdcd85df172e65498 +containersize 142312 +containerchecksum e06a17893599358f22e543e391c81b9d55cd25ffcee8abfbb3e681321ac8092c8c06b89d6dde2d90b015b00a69f85871032342a3be4cbca2bde5115de93ce6bb runfiles size=393 tlpkg/translations/README tlpkg/translations/cs.po @@ -282345,17 +282392,17 @@ docfiles size=503 name texlive-scripts category TLCore -revision 52548 +revision 52562 shortdesc TeX Live infrastructure programs longdesc Includes install-tl, tl-portable, rungs, etc.; not needed for longdesc tlmgr to run but still ours. Not included in tlcritical. depend texlive.infra depend texlive-scripts.ARCH postaction shortcut type=menu name="TeX Live command-line" cmd=TEXDIR/tlpkg/installer/tl-cmd.bat -containersize 85432 -containerchecksum 74845864a852732501cda977d5e288e8de7e06b39e64a8a8142b6fb58cb4b3a6e53faddac26f50625230093e8db41bc083afe38269e2d8da8e129f350ee7693f +containersize 85460 +containerchecksum 0a9344603c900a9c9448f61da6e21759b1d01399fee05802d0827c2a44706ea388efdc110d1e41d18c1279ef291ed4f7247d9189182707902f7129e28be4d7cf doccontainersize 51244 -doccontainerchecksum 740f8f755da3be7c675dd96258174cc3734c088170da4b8173511fb1fc88cd6815804d3bd02b8cc81278244e41669be75aced8f5939dc7baca1beb6994b9c9e8 +doccontainerchecksum 83b2eea1d3bcb30a1e26421dfd6884bb8dcc30d1723f75daeec69f7c45a3ebcfb228095b48ba634aefcca3cd5dfa4ac2ef8a49c6f2ce4486a5c2bc7d19fdf50b docfiles size=20 texmf-dist/doc/man/man1/install-tl.1 texmf-dist/doc/man/man1/install-tl.man1.pdf diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 index 5f781f4618..87d63f724b 100644 --- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 +++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 @@ -1 +1 @@ -bc428145f238b1f6637bff3721ea024e texlive.tlpdb +6bd9097c06aa30e6c04b0e1c5ff5b463 texlive.tlpdb diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 index f7c287e343..be09b815a5 100644 --- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 +++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 @@ -1 +1 @@ -781df3e7c2bcb5a46f15b218cc5451e9b6a0ddb3894f82c9446162aeb596194aa0ba26a221c691dbebc027987cb94d5488df47e00132e326633b979503dfde38 texlive.tlpdb +f67118dbef8f475b0998fc4c7da9099668e3012ce0b4d30e0bcb418acfccc417b4f47b9d2fba68d9a1774a592b0e32d5456b29418c0f9949d6cf77dc6de1379c texlive.tlpdb diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc index 356f757714..b12e600356 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----- -iQEcBAEBCgAGBQJdt43QAAoJEEzhh34ZQ4xwAVYH/jmwQM2SyxZ17cx27MeZ9LB2 -NAszy5GzU6zzBrUGk+9B9yR/4G8xgjYwBSb1pvuuOuDPXoE2QSwWqDW0jWIDs16+ -cJTpNHARdRZU7pNgMtYNqr9A3vYw0JCMsPX4G3POyBwQYU5aPP1bZFi7lKjT5ijT -LGNbsMdsWUHjZEdHT03Xy0DtyMqQXWTNEp0bQA5vom02xh4ObFYEwOagnV3d2bkv -Scfvtt2mm5wmGL0JBL3TPUu6ofKoAtsLOfes7MgSd07iE0bWJNzjUiEeBkYaVYJl -5TR4AEPVykdbvrYC7qgG84hecbFI9A+l/2Va5peoJl1dhjxIKaMgDf1JvyV9CF8= -=Tje5 +iQEcBAEBCgAGBQJduN+lAAoJEEzhh34ZQ4xw2mQH/2s5ghNvTKAhOYOWKdTovmtY +bgwN3pT9vjyIfATIEVAPsWtPJyy21RoB2RK7V9l/zZ4NYvNysY9UGouwrc/nY2UL +PXmgYVDHU+3cmKlw8swARg4AzxnAwRTwhUUhwnR/Hd8c6yUXtqB1JH4+/3KA0l0O +TJ4wvAHvCcE0RFUgXbRIA84FuRlobXeAVAOoqy4WE3mtoukTZ860T8GztfX3u6MC +xLdb1QquV2ALoxNk1JxmKKHEYpXF6ppovpZtJjK0cOgG300l9MkkIeIok+FvRQtw +tOUaswXgmP4FVSqoXYbRHx72QFEcWlqLUdqOvq0rSURNrv+rJ9mEd2uVDACu74Y= +=g0GN -----END PGP SIGNATURE----- diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz index 9812464384..664096befc 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/texlive/tlnet/tlpkg/translations/sr.po b/systems/texlive/tlnet/tlpkg/translations/sr.po index 0ccd979133..28debe8453 100644 --- a/systems/texlive/tlnet/tlpkg/translations/sr.po +++ b/systems/texlive/tlnet/tlpkg/translations/sr.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: TeX Live translation\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" "POT-Creation-Date: 2019-10-19 01:56+0200\n" -"PO-Revision-Date: 2019-10-22 16:01+0300\n" +"PO-Revision-Date: 2019-10-23 02:13+0300\n" "Last-Translator: Nikola Lečić \n" "Language-Team: TL Translation Team \n" "Language: sr\n" @@ -374,13 +374,13 @@ msgstr "Инсталирај" #: tlpkg/installer/install-tl-gui.tcl:1099 #: tlpkg/installer/install-tl-gui.tcl:1638 msgid "None" -msgstr "Ништа" +msgstr "ниједан" #: tlpkg/installer/install-menu-perltk.pl:49 #: texmf-dist/scripts/texlive/tlmgrgui.pl:144 #: tlpkg/installer/install-tl-gui.tcl:1638 msgid "Only new" -msgstr "Само нови" +msgstr "само нови" #: tlpkg/installer/install-menu-perltk.pl:50 #: texmf-dist/scripts/texlive/tlmgrgui.pl:145 @@ -389,7 +389,7 @@ msgstr "Само нови" #: texmf-dist/scripts/tlshell/tlshell.tcl:2214 #: texmf-dist/scripts/tlshell/tlshell.tcl:2231 msgid "All" -msgstr "Све" +msgstr "све" #: tlpkg/installer/install-menu-perltk.pl:52 msgid "A4" @@ -608,7 +608,7 @@ msgstr "Направи симболичке линкове у системски #: tlpkg/installer/install-menu-perltk.pl:585 #: tlpkg/installer/install-tl-gui.tcl:1699 msgid "After install, set CTAN as source for package updates" -msgstr "После инсталације укажите CTAN као извор за надоградње пакета. " +msgstr "После инсталације подеси CTAN као извор за надоградње пакета" #: tlpkg/installer/install-menu-perltk.pl:607 #: tlpkg/installer/install-menu-perltk.pl:609 @@ -1546,7 +1546,7 @@ msgid "" "TL release component highly recommended!\n" "Are you sure?" msgstr "" -"Овај део издања TL је важан!\n" +"Овај део путање TL је важан!\n" "Да ли сте сигурни?" #: tlpkg/installer/install-tl-gui.tcl:565 @@ -1567,7 +1567,7 @@ msgstr "Корен инсталације" #: tlpkg/installer/install-tl-gui.tcl:639 #: tlpkg/installer/install-tl-gui.tcl:1280 tlpkg/tltcl/tltcl.tcl:578 msgid "Browse..." -msgstr "Изаберите..." +msgstr "Изабрати директоријум..." #: tlpkg/installer/install-tl-gui.tcl:652 msgid "Localized directory names will be replaced by their real names" @@ -1597,7 +1597,7 @@ msgstr "Колекције" #: tlpkg/installer/install-tl-gui.tcl:1095 msgid "Select" -msgstr "Изаберите" +msgstr "Изабери" #: tlpkg/installer/install-tl-gui.tcl:1111 msgid "Languages" @@ -1650,7 +1650,7 @@ msgstr "Додаци корисника" #: tlpkg/installer/install-tl-gui.tcl:1466 msgid "More ..." -msgstr "Више ..." +msgstr "Више опција..." #: tlpkg/installer/install-tl-gui.tcl:1475 msgid "" @@ -1659,8 +1659,8 @@ msgid "" "and TEXMFHOME" msgstr "" "Преносива инсталација:\n" -"могуће ће ресетовање TEXMFLOCAL\n" -"и TEXMFHOME" +"(могуће је ресетовање\n" +"TEXMFLOCAL и TEXMFHOME)" #: tlpkg/installer/install-tl-gui.tcl:1489 #: texmf-dist/scripts/tlshell/tlshell.tcl:1351 @@ -1694,7 +1694,7 @@ msgstr "Подешавања" #: tlpkg/installer/install-tl-gui.tcl:1541 msgid "Disk space required (in MB):" -msgstr "Неопходно место на диску (у MB):" +msgstr "Неопходно место на диску (MB):" #: tlpkg/installer/install-tl-gui.tcl:1619 msgid "Adjust searchpath" -- cgit v1.2.3