From 6a81e69e8cf1f56e4715ede8d84cdce284117970 Mon Sep 17 00:00:00 2001 From: Norbert Preining Date: Mon, 1 Jun 2020 03:02:00 +0000 Subject: CTAN sync 202006010301 --- .../texlive/tlnet/tlpkg/installer/ctan-mirrors.pl | 2 - .../tlnet/tlpkg/installer/install-tl-gui.tcl | 62 ++---- systems/texlive/tlnet/tlpkg/texlive.tlpdb | 221 ++++++++++++++------- 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 2205024 -> 2206904 bytes systems/texlive/tlnet/tlpkg/tltcl/tltcl.tcl | 1 - 8 files changed, 173 insertions(+), 131 deletions(-) (limited to 'systems/texlive/tlnet/tlpkg') diff --git a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl index cb5c14dea6..800364723f 100644 --- a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl +++ b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl @@ -7,7 +7,6 @@ $mirrors = { 'https://mirror.marwan.ma/ctan/' => 1, }, 'South Africa' => { - 'http://ftp.leg.uct.ac.za/pub/packages/ctan/' => 1, 'http://ftp.sun.ac.za/ftp/CTAN/' => 1, 'http://mirror.ufs.ac.za/ctan/' => 1, }, @@ -35,7 +34,6 @@ $mirrors = { 'http://ctan.yazd.ac.ir/' => 1, }, 'Japan' => { - 'ftp://ftp.kddilabs.jp/CTAN/' => 1, 'ftp://ftp.u-aizu.ac.jp/pub/tex/CTAN/' => 1, 'http://ftp.jaist.ac.jp/pub/CTAN/' => 1, 'http://ftp.yz.yamagata-u.ac.jp/pub/CTAN/' => 1, diff --git a/systems/texlive/tlnet/tlpkg/installer/install-tl-gui.tcl b/systems/texlive/tlnet/tlpkg/installer/install-tl-gui.tcl index 3f5a567c2b..49d63fa6ff 100755 --- a/systems/texlive/tlnet/tlpkg/installer/install-tl-gui.tcl +++ b/systems/texlive/tlnet/tlpkg/installer/install-tl-gui.tcl @@ -37,14 +37,15 @@ catch {rename send {}} # This file should be in $::instroot/tlpkg/installer. # On non-windows platforms, install-tl functions as a wrapper -# for this file if it encounters a parameter '-gui tcl'. +# for this file if it encounters a parameter '-gui' (but not -gui text). # This allows automatic inclusion of a '--' parameter to separate # tcl parameters from script parameters. set ::instroot [file normalize [info script]] set ::instroot [file dirname [file dirname [file dirname $::instroot]]] -# declarations, initializations and procs shared with tlshell.tcl +# declarations, initializations and procs shared with tlshell.tcl. +# tltcl may want to know whether or not it was invoked by tlshell: set ::invoker [file tail [info script]] if [string match -nocase ".tcl" [string range $::invoker end-3 end]] { set ::invoker [string range $::invoker 0 end-4] @@ -69,7 +70,7 @@ if {$::tcl_platform(platform) eq "windows"} { set ::advanced 0 set ::alltrees 0 -# interactively select repository +# interactively select repository; default false set ::select_repo 0 proc kill_perl {} { @@ -381,7 +382,7 @@ proc pre_splash {} { # wallpaper for remaining widgets pack [ttk::frame .bg -padding 3] -fill both -expand 1 - # buttons: abort button, mirrors dropdown menu + # frame for buttons (abort button, mirrors dropdown menu) pack [ttk::frame .splfb] -in .bg -side bottom -fill x } @@ -1331,10 +1332,6 @@ option add *Menu.tearOff 0 # of this array. # We still use blocking i/o: frontend and backend wait for each other. -# idea: follow submenu organization of text installer -# for 3-way options, create an extra level of children -# instead of wizard install, supppress some options - ## default_bg color, only used for menus under ::plain_unix if [catch {ttk::style lookup TFrame -background} ::default_bg] { set ::default_bg white @@ -1963,15 +1960,14 @@ proc run_installer {} { set ::out_log {} show_log 1; # 1: with abort button .close state disabled - if $::did_gui { - chan puts $::inst "startinst" - write_vars - } + chan puts $::inst "startinst" + write_vars # the backend was already running and needs no further encouragement # switch to non-blocking i/o chan configure $::inst -buffering line -blocking 0 chan event $::inst readable read_line_cb + raise . if {$::tcl_platform(platform) eq "windows"} {wm deiconify .} }; # run_installer @@ -1998,33 +1994,24 @@ proc main_prog {} { # handle some command-line arguments. # the argument list should already be normalized: '--' => '-', "=" => ' ' - set i 0 - set do_splash 1 set ::prelocation "..." set ::mir_selected 1 ; # i.e. default or set by parameter - set i [llength $::argv] + set l [llength $::argv] + set i $l while {$i > 0} { + set iplus $i incr i -1 set p [lindex $::argv $i] - if {$p eq "-profile"} { - # check for profile argument: no splash screen if present - set do_splash 0 - } elseif {$p in [list "-location" "-url" "-repository" "-repos" "-repo"]} { + if {$p in [list "-location" "-url" "-repository" "-repos" "-repo"]} { # check for repository argument: bail out if obviously invalid - set j [expr {$i+1}] - if {$j<[llength $::argv]} { - set p [lindex $::argv $j] - unset j + if {$iplus<$l} { + set p [lindex $::argv $iplus] if {$p ne "ctan" && ! [possible_repository $p]} { - tk_messageBox -message [__ "%s not a local or remote repository" $p] \ - -title [__ "Error"] -type ok -icon error - exit + err_exit [__ "%s not a local or remote repository" $p] } set ::prelocation $p } else { - tk_messageBox -message [__ "%s requires an argument" $p] \ - -title [__ "Error"] -type ok -icon error - exit + err_exit [__ "%s requires an argument" $p] } } elseif {$p eq "-select-repository"} { # in this case, we start with selecting a repository @@ -2037,23 +2024,15 @@ proc main_prog {} { } unset i - if {$do_splash || ! [info exists ::mir_selected]} pre_splash - if {! [info exists ::mir_selected]} { + pre_splash select_mirror } - if $do_splash make_splash - unset do_splash - - if {! [info exist ::mir_selected]} { - vwait ::mir_selected - } - # start install-tl-[tcl] via a pipe. set cmd [list "|${::perlbin}" "${::instroot}/install-tl" \ "-from_ext_gui" {*}$::argv 2>@1] - show_time "opening pipe" + #show_time "opening pipe" if [catch {open $cmd r+} ::inst] { err_exit "Error starting Perl backend" } @@ -2069,8 +2048,7 @@ proc main_prog {} { # possible input from perl until the menu starts: # - question about prior canceled installation # - location (actual repository) - # - menu data, help, version, print-platform - set ::did_gui 0 + # - menu data set answer "" unset -nocomplain ::loaded while 1 { ; # initial perl output @@ -2102,7 +2080,6 @@ If this takes too long, press Abort or choose another repository." \ # waiting till the repository has been loaded vwait ::loaded unset ::loaded - #puts stderr "done loading" # resume reading from back end in blocking mode while 1 { set ll [read_line] @@ -2130,7 +2107,6 @@ If this takes too long, press Abort or choose another repository." \ set answer [run_menu] } } - set ::did_gui 1 break } elseif {$l eq "startinst"} { # use an existing profile: diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb b/systems/texlive/tlnet/tlpkg/texlive.tlpdb index 56498a6af5..a92665087d 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/55350 +depend revision/55365 name 00texlive.image category TLCore -revision 55349 +revision 55363 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 @@ -663,6 +663,7 @@ runfiles size=5017 tlpkg/tlpsrc/beamertheme-metropolis.tlpsrc tlpkg/tlpsrc/beamertheme-npbt.tlpsrc tlpkg/tlpsrc/beamertheme-phnompenh.tlpsrc + tlpkg/tlpsrc/beamertheme-pure-minimalistic.tlpsrc tlpkg/tlpsrc/beamertheme-saintpetersburg.tlpsrc tlpkg/tlpsrc/beamertheme-upenn-bc.tlpsrc tlpkg/tlpsrc/beamerthemejltree.tlpsrc @@ -3399,6 +3400,7 @@ runfiles size=5017 tlpkg/tlpsrc/selectp.tlpsrc tlpkg/tlpsrc/selinput.tlpsrc tlpkg/tlpsrc/selnolig.tlpsrc + tlpkg/tlpsrc/semantex.tlpsrc tlpkg/tlpsrc/semantic-markup.tlpsrc tlpkg/tlpsrc/semantic.tlpsrc tlpkg/tlpsrc/semaphor.tlpsrc @@ -4215,7 +4217,7 @@ depend setting_available_architectures:aarch64-linux amd64-freebsd amd64-netbsd name 00texlive.installer category TLCore -revision 55333 +revision 55357 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 @@ -4225,7 +4227,7 @@ longdesc allowed, but in this case, 00texlive.installer is never used longdesc *except* to build the installer archives, so it's ok. For longdesc information on the 00texlive prefix see longdesc 00texlive.installation(.tlpsrc) -runfiles size=809 +runfiles size=808 install-tl release-texlive.txt tlpkg/installer/COPYING.MinGW-runtime.txt @@ -32024,6 +32026,45 @@ catalogue-license gpl catalogue-topics presentation catalogue-version 1.0 +name beamertheme-pure-minimalistic +category Package +revision 55360 +shortdesc A minimalist presentation theme for LaTeX Beamer +relocated 1 +longdesc The main features of this minimalistic Beamer theme are: Easily +longdesc use own logos Customizable Looks good in a 4:3 and 16:9 aspect +longdesc ratio, without the need to change anything. Provides an +longdesc environment for vertical-spaced items Provides light- and +longdesc dark-mode Is designed to be purely minimalistic without any +longdesc distractions +containersize 3872 +containerchecksum 6e915b404db09b2400b0953eb543a3ab9315b2ef782e621176e9db7de576ecd666c34f16d54e27d5500fab889d178793cd6768b63a6fc337401245fb897df4ca +doccontainersize 362652 +doccontainerchecksum 4a0e1f612ffb1188d2a0a42a23056ae84111ced5286349b7cd69fd28ae6ebddd03ddc33e53ae2121dec39ac3ec1cf5118bcb2b50c3d77da1ff3b5aa170e4039c +docfiles size=105 + RELOC/doc/latex/beamertheme-pure-minimalistic/LICENSE + RELOC/doc/latex/beamertheme-pure-minimalistic/README.md details="Readme" + RELOC/doc/latex/beamertheme-pure-minimalistic/beamertheme-pure-minimalistic-demo.pdf details="Package documentation" + RELOC/doc/latex/beamertheme-pure-minimalistic/beamertheme-pure-minimalistic-demo.tex + RELOC/doc/latex/beamertheme-pure-minimalistic/demo_bib.bib + RELOC/doc/latex/beamertheme-pure-minimalistic/logos/header_logo.png + RELOC/doc/latex/beamertheme-pure-minimalistic/logos/header_logo_darkmode.png + RELOC/doc/latex/beamertheme-pure-minimalistic/logos/institute_logo.png + RELOC/doc/latex/beamertheme-pure-minimalistic/logos/institute_logo_darkmode.png +runfiles size=6 + RELOC/tex/latex/beamertheme-pure-minimalistic/beamercolorthemepureminimalistic.sty + RELOC/tex/latex/beamertheme-pure-minimalistic/beamerfontthemepureminimalistic.sty + RELOC/tex/latex/beamertheme-pure-minimalistic/beamerinnerthemepureminimalistic.sty + RELOC/tex/latex/beamertheme-pure-minimalistic/beamerouterthemepureminimalistic.sty + RELOC/tex/latex/beamertheme-pure-minimalistic/beamerthemepureminimalistic.sty +catalogue-also beamertheme-focus +catalogue-contact-bugs https://github.com/kai-tub/latex-beamer-pure-minimalistic/issues +catalogue-contact-home https://github.com/kai-tub/latex-beamer-pure-minimalistic/ +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-pure-minimalistic +catalogue-license gpl3 +catalogue-topics presentation +catalogue-version 1.2.4 + name beamertheme-saintpetersburg category Package revision 45877 @@ -64640,7 +64681,7 @@ containerchecksum 1823db2c2889e30e1bb219e93aa2433813df21efe7afb453da159b5586a597 name collection-latexextra category Collection -revision 55291 +revision 55363 shortdesc LaTeX additional packages relocated 1 longdesc A very large collection of add-on packages for LaTeX. @@ -64725,6 +64766,7 @@ depend beamertheme-light depend beamertheme-metropolis depend beamertheme-npbt depend beamertheme-phnompenh +depend beamertheme-pure-minimalistic depend beamertheme-saintpetersburg depend beamertheme-upenn-bc depend beamerthemejltree @@ -65678,6 +65720,7 @@ depend sectsty depend seealso depend selectp depend selinput +depend semantex depend semantic depend semantic-markup depend semioneside @@ -65957,8 +66000,8 @@ depend ziffer depend zref depend zwgetfdate depend zwpagelayout -containersize 6104 -containerchecksum 738f8b4ff6178d86d5513f9e3d5d5b5f854a4ef1f194655ab2531e0c28f16d342b334baea48b826f5ea91759aacaa2cc1f22e9f08cd576a01244ea0728e89bb2 +containersize 6112 +containerchecksum 9a11eaaaf444020179b29a6a34470883bd69b110a9313417b40f0dc6534cebfeabddba611225e635efe1da24ec5552ac4871307c0da83da3aa7daaee237458a9 name collection-latexrecommended category Collection @@ -85153,29 +85196,28 @@ catalogue-topics foreign-import name denisbdoc category Package -revision 54584 +revision 55362 shortdesc A personal dirty package for documenting packages relocated 1 longdesc A personal dirty package for documenting packages. -containersize 14828 -containerchecksum c9e619f7b2d95303d6ee105c708c41254679af62dedb373e1355218362f31c99907e13d1f41361dd4ad348b0ca7eb2c95baac77b64a789444cad0215299d51f6 -doccontainersize 1172 -doccontainerchecksum 1e0c77335be61bcfd4075c855feda3b0f677e93b2d55935b7bbd7d8e0c03adb3f933903ae8e48a8cb078d94de034f246f468f6cc6d2b983bd628720aaada2482 +containersize 14896 +containerchecksum 581412234c7644b805247e41622b7c049dbee57e801e2c04adca596ecafe4dc352181c2aadcb05925b6383fe32baa364526f5ecd412fde51dc3ee03928a1f11d +doccontainersize 1188 +doccontainerchecksum b72b970acf1ca31e663c41d53e1304f27b2b03b98c1f724cf0bab5c4cdd123bab912069c03c9717524fbe8987c74139e5724155e606b2ecaf2fd440bcdf3fe2d docfiles size=3 RELOC/doc/latex/denisbdoc/README.md details="Readme" RELOC/doc/latex/denisbdoc/denisbdoc-chng.xdy RELOC/doc/latex/denisbdoc/denisbdoc.xdy -srccontainersize 21164 -srccontainerchecksum 98f8b771fd206a288696886ca5c0ecf072f3a4f7f90fc8281804118d9853d4d552177a168222e11fc8a97af36afcdddc6953af2e1e92e554caa0e3b11030c370 -srcfiles size=21 +srccontainersize 21204 +srccontainerchecksum 580b039d154beb2eac7121c206c0b302463c20d92e918668e573bdb59acc3a701b6bf3450390ce102611c47cc63fd5e2651d5e1500536a6738cf964bed9c60f2 +srcfiles size=20 RELOC/source/latex/denisbdoc/denisbdoc.dtx - RELOC/source/latex/denisbdoc/denisbdoc.ins runfiles size=15 RELOC/tex/latex/denisbdoc/denisbdoc.sty catalogue-ctan /macros/latex/contrib/denisbdoc catalogue-license lppl1.3c catalogue-topics doc-supp -catalogue-version 0.8 +catalogue-version 0.9 name derivative category Package @@ -222178,7 +222220,7 @@ catalogue-version 1.00 name oldstandard category Package -revision 54512 +revision 55359 shortdesc OldStandard fonts with LaTeX support relocated 1 longdesc Old Standard is designed to reproduce the actual printing style @@ -222195,14 +222237,11 @@ longdesc as XeTeX and LuaTeX, as well as traditional engines such as TeX longdesc and pdfTeX. execute addMap OldStandard.map containersize 1698288 -containerchecksum 5e81346120a23c9dbbe5f8c23a7d57f608bf250ad52f597418de8030da4a23fe360a5ed92eeba907b52f7a45fad677fb89a43e5eefac5a6ce73d9644bc97e837 -doccontainersize 1455908 -doccontainerchecksum 47e55e3e470f562d59c6242e077d285207cc7acaf0cde4feac45336f95b36c2a531b1087f894e07599fc1b2b2216c361beb6e29aae5410e96f5f2177cf2ac60a -docfiles size=415 - RELOC/doc/fonts/oldstandard/FONTLOG.txt - RELOC/doc/fonts/oldstandard/NewComputerModern.fontspec - RELOC/doc/fonts/oldstandard/NewComputerModernMono.fontspec - RELOC/doc/fonts/oldstandard/NewComputerModernSans.fontspec +containerchecksum 5643f4697ad2e3aa8acc85c9ef7de993681c584340d3b09431cf05210c36457dd4bec07b8ae4e9c5890891412060f725e037b825d344c7e0ec5ba17ad44e6253 +doccontainersize 1454188 +doccontainerchecksum b70897b4d5bdff4514fe43dd06d016e6ed56b8ad29ec68ef3b76091ed37344ec954abd55041214226560c1fff13a52aa1a0d251612a10310b92587972aa15dd7 +docfiles size=411 + RELOC/doc/fonts/oldstandard/FONTLOG-2.2.txt RELOC/doc/fonts/oldstandard/OFL-FAQ.txt RELOC/doc/fonts/oldstandard/OFL.txt RELOC/doc/fonts/oldstandard/README details="Readme" @@ -264453,6 +264492,32 @@ catalogue-license lppl1.3 catalogue-topics typesetting luatex catalogue-version 0.302 +name semantex +category Package +revision 55363 +shortdesc SemanTeX -- object-oriented mathematics +relocated 1 +longdesc The SemanTeX package for LaTeX delivers a more semantic, +longdesc systematized way of writing mathematics compared to the +longdesc ordinary math syntax. The system is object-oriented and uses +longdesc keyval syntax, and everything is highly customizable. At the +longdesc same time, care has been taken to make it the syntax as +longdesc intuitive, natural, practical, and lightweight as possible. +containersize 12568 +containerchecksum 4ba94f4cb1ddb60307a7699b8e81455476ec3e911459ebea6b251dfeb63c6a41e50439d1e981401ff4cb26bfbcd673ce5da08ba71bd335aece445224a72aa8bc +doccontainersize 235612 +doccontainerchecksum e3bf78619a6bc48be71364e22c4c9945083acf5242d2ee1850e17126670daa258ab82706363c3b5e5a3f4e0b976d8760bdbee278f13efe7a05a524b772c5a770 +docfiles size=72 + RELOC/doc/latex/semantex/README.md details="Readme" + RELOC/doc/latex/semantex/semantex.pdf details="Package documentation" + RELOC/doc/latex/semantex/semantex.tex +runfiles size=23 + RELOC/tex/latex/semantex/semantex.sty +catalogue-ctan /macros/latex/contrib/semantex +catalogue-license lppl1.3c +catalogue-topics maths +catalogue-version 0.1alpha + name semantic category Package revision 15878 @@ -281650,7 +281715,7 @@ binfiles arch=x86_64-solaris size=1 name tex4ht category Package -revision 55350 +revision 55358 shortdesc Convert (La)TeX to HTML/XML longdesc A converter from TeX and LaTeX to SGML-based formats such as longdesc (X)HTML, MathML, OpenDocument, and DocBook, providing a @@ -281665,10 +281730,10 @@ longdesc restricted-syntax systems such as hyperlatex and gellmu. Note longdesc that CTAN no longer holds the definitive sources of the longdesc package: see the 'Readme' file. depend tex4ht.ARCH -containersize 870664 -containerchecksum e03105d41167d9bd3df16068936bf8ac096e80fc6aa07cd3ded740ed5ba315039e2cde8998ed35c8cdf4742cac309943a9c2c99db12241f77b1c46beb44698ae +containersize 870436 +containerchecksum 77d13e317a1f447c8e66f72d10da62366dbd0c4e419b810280f9959674d8ce20a1219b43f2127cb08ce4b817752af7fe1a65c090694ad46b36f223a6f1a4b72e doccontainersize 135432 -doccontainerchecksum 071f75fba72bbb936114cf326bb579d5259fdb1ad369cf6b3f3f339a05825cd7cfa8113f56e675ac72b4c9ed1e7665d557937714d59cf25561acfa20491bebe1 +doccontainerchecksum bfa98cd637daf0eaf15617f4716c08f13ee3be0930c9562bd087fcd21f64777fb6e37a0cbf121b86ba5d11f15da9f90daffe1e2485a1c83d969db029de0f0217 docfiles size=257 texmf-dist/doc/generic/tex4ht/Makefile texmf-dist/doc/generic/tex4ht/TeX4ht-doc.tex @@ -281739,7 +281804,7 @@ docfiles size=257 texmf-dist/doc/generic/tex4ht/mn56.html texmf-dist/doc/generic/tex4ht/mn5x.png texmf-dist/doc/generic/tex4ht/mn6x.png -runfiles size=9417 +runfiles size=9418 texmf-dist/scripts/tex4ht/ht.sh texmf-dist/scripts/tex4ht/htcontext.sh texmf-dist/scripts/tex4ht/htcopy.pl @@ -289879,15 +289944,15 @@ docfiles size=592 name texlive-docindex category TLCore -revision 55333 +revision 55352 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 388d6bf0e353ee220668c22ccaa971b66610bb2eea3563f1b1387c87e2a2b526d46228f90d2dc0aa1534bd39340e98a8f00ac8a1433b7ea318251a076b8680ca -doccontainersize 167012 -doccontainerchecksum c4e53d4c5393d39804aa02e32aee5af294901043f0287102905767842efce8a4c1a922cb8c43e058d0b60361f690c111e022061ecb04bba06ea395b656ee259c +containerchecksum 67c323b84f7ee225ba6e3f02a0f403a085fc074268a7b91eb30ac0220160459cb04c3bac00b435417b5bb4527c0a041b78047526c5a7c030d664aab7830f371b +doccontainersize 166932 +doccontainerchecksum bd45b2c671d511e9bf622c81ead4c116eff4c653027171090ec76084616608cd4769b13dbaf4421cdd31558f33ab8805e040a37ea6775479c29804a6c5b4b7b1 docfiles size=331 doc.html @@ -290109,7 +290174,7 @@ docfiles size=368 name texlive-scripts category TLCore -revision 55333 +revision 55357 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. @@ -290117,10 +290182,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 132548 -containerchecksum 53950a6f3e8eed83b8d234bbf51ef82919502cabbd750b8aa48f1cd843cd9d8134a73b4c60a8192c23d3b0b7d7d720f415095f2496d39720229067deeb2b4f6b +containersize 131784 +containerchecksum 4e0927c6f9e6d2d2242703f2915f141d1d23a0999fc968ea3ad1056c48dcc2d977ea4e789b71d444c2b0219eaa3749e45504a31fc2bd3dc1aebd2d2250835bc7 doccontainersize 219412 -doccontainerchecksum 97f1bd1f2c5ede1810e125662391f643c2a0d92bf4bd38b20980f7ac4872467347136f5dfc29f736180720d3c9c6b1bf8df54a65725935a8479de8672b467dfc +doccontainerchecksum 54c1b09849016993019509d15064037f94cf779c6989530fe6c30650dc3abd3827bd65acd707079480decb830010447656cde2c6afdbd0182c3e439a16d146ee docfiles size=141 texmf-dist/doc/man/man1/fmtutil-sys.1 texmf-dist/doc/man/man1/fmtutil-sys.man1.pdf @@ -290150,7 +290215,7 @@ docfiles size=141 texmf-dist/doc/man/man5/fmtutil.cnf.man5.pdf texmf-dist/doc/man/man5/updmap.cfg.5 texmf-dist/doc/man/man5/updmap.cfg.man5.pdf -runfiles size=178 +runfiles size=177 install-tl texmf-dist/dvips/tetex/config.builtin35 texmf-dist/dvips/tetex/config.dfaxhigh @@ -290863,10 +290928,10 @@ binfiles arch=i386-solaris size=13 name texlive-scripts.win32 category TLCore -revision 54807 +revision 55357 shortdesc win32 files of texlive-scripts -containersize 36232 -containerchecksum 5a8d5d9018af6512cfa4fb2b8bc786f22f67eb4590cf4119bab674a013dd6bbaaac0349945c039a65f8e7b1ad6b9b730d5947bac7924dd785d89860ca47fb5b5 +containersize 36284 +containerchecksum 69d261195c21a3568069e9839785d23ab1735af314cbac7c9df5c34e2cbeaeef3dabe06ec651c8a627bd1f341f8e0e8708a9f35d013df977d86a5c2a1cda70f9 binfiles arch=win32 size=40 bin/win32/fmtutil-sys.exe bin/win32/fmtutil-user.exe @@ -301539,14 +301604,14 @@ binfiles arch=win32 size=5 name tlshell category TLCore -revision 54921 +revision 55357 shortdesc GUI frontend (tcl/tk-based) for tlmgr depend tlshell.ARCH postaction shortcut type=menu name="TeX Live Manager" cmd=TEXDIR/bin/win32/tlshell.exe containersize 26776 -containerchecksum a21859b4a1ce75b5700c2347e6244d2436523ef67a1dd114cfd13cd89bc4a759b8fe0e8105edc8f225ea88ba9327823e7d0c207cfa38a41dd189a2098754e7c2 +containerchecksum fe353c149d35f07557e3a430f4615a20a132f3771476692cf6bad7ffd88921c4f6d96ba629ae87e50f2b2f2b6f1dc57c062258172e6b94af8355c48a48daf198 doccontainersize 440 -doccontainerchecksum b62393da0acc93332d030993104e96b8750b2e747ca442604c80399d9092c315eea7395e28a898ea2abecf8553f4544d557f390505d1e2730b843a0c6a8288d1 +doccontainerchecksum 92ea9ddf6b66fd52606e1417b0de4a72e0c58445dc6046072cbba9716128656fde95052006c3c9dd2d709624ee2078e7c0d1e18cbde8def46dee25b361435dd9 docfiles size=1 texmf-dist/doc/support/tlshell/README runfiles size=27 @@ -303251,7 +303316,7 @@ catalogue-version 0.3.0 name toptesi category Package -revision 55220 +revision 55364 shortdesc Bundle for typesetting multilanguage theses relocated 1 longdesc This bundle contains everything needed for typesetting a @@ -303266,11 +303331,11 @@ longdesc more and more frequent thanks to the double degree programs of longdesc the European Community Socrates programs. Toptesi is designed longdesc to save the PDF version of a thesis in PDF/A-1b compliant mode longdesc and with all the necessary metadata. -containersize 20384 -containerchecksum 5ba960b5123c1e8e32b85b41000d571c9c908d52c1c445af0af2208e9daf5867d47a399bbbe4996b5b43f611cd9aa6839de3882c1b28cc0e28db29c25b767a3e -doccontainersize 6315844 -doccontainerchecksum cedb945ddcbe7df97a173c004a8f03dd0527eb89ad8c9e3e1153aba985c3599cf5c88ced0877af41d5cb437647e13d3c7d1567c2824ed99281dd634734feea71 -docfiles size=2356 +containersize 20420 +containerchecksum 64bd1535a9baac83cc8933ab9113a1c37b1916d298cfd8b3c6d148b0e101e9840bc97411749ae24e588eb423db9d03548a5200377eeca3db92e929fdd197f24d +doccontainersize 6380872 +doccontainerchecksum 91ac8ca514d193d32a3faf9a0c9cc8bdabdb882bf5e0ff6bbe6df509b4044f229181a0eefed4218efae7524d3983dbbbcfae664730e843ab88be14fa61335c41 +docfiles size=2360 RELOC/doc/latex/toptesi/FrontespiziAssemblati.pdf RELOC/doc/latex/toptesi/FrontespiziAssemblati1.pdf RELOC/doc/latex/toptesi/FrontespiziAssemblati2.pdf @@ -303319,8 +303384,8 @@ docfiles size=2356 RELOC/doc/latex/toptesi/veraPDFconformance.jpg RELOC/doc/latex/toptesi/veraPDFnoconformance.jpg RELOC/doc/latex/toptesi/veraPDFnoconformance.pdf -srccontainersize 96464 -srccontainerchecksum cfa9b3cb95d66badccaebb95d2e19ac99a583f844fd75b4038111fb71bd8604666ce0a21af8fe3045593ad1090bf61e451428103505914f8873e93403f5af8f8 +srccontainersize 96948 +srccontainerchecksum b08fec4993a3b37de906588a1ee85d58440828d908f5c34b569a68e1620cf2e648dc760679ba21e87bd9b2f8c1fcb7f5266b7da01993a8a0c040c5b4c99f4fe6 srcfiles size=100 RELOC/source/latex/toptesi/toptesi.dtx runfiles size=40 @@ -303337,7 +303402,7 @@ runfiles size=40 catalogue-ctan /macros/latex/contrib/toptesi catalogue-license lppl1.3c catalogue-topics dissertation class multilingual -catalogue-version 6.4.02 +catalogue-version 6.4.04 name totcount category Package @@ -323101,18 +323166,18 @@ catalogue-version 23.1 name xepersian-hm category Package -revision 55222 +revision 55365 shortdesc Fixes kashida feature in xepersian package relocated 1 longdesc The kashida feature in xepersian has problems with some fonts longdesc such as the HM Series fonts and the XB Series fonts. This longdesc package fixes these problems. The package requires xepersian longdesc and l3keys2e. -containersize 5076 -containerchecksum a9e492828672d4cdcdb45fcbce56ce7c262e7c0d39fcdd7f387d86151bd287ac9da27afbfd685313120891237680d09b334885d1c31b7044930a1b545e86145d -doccontainersize 479288 -doccontainerchecksum 49c0679cf142510d930818946a6eecf4d4e3ddc38ef233c1670a89b3b658280ce52aa445c831e48f03b15568de47ca52aa75d0ecfe881cfbb38e961df34508db -docfiles size=211 +containersize 5536 +containerchecksum 2cc8afd43d6c64a53501fdaccad79d71bb104662dad8faf50c8a58d5ea339c2588655b78767dc919d6d68ef685c38ec3fe71f043bfaa6f59e815ed458b088d4a +doccontainersize 696188 +doccontainerchecksum e23823986cdab5456659b99d0002a0aca7620d8bcb09e5a1bc627d9249f90e0dd6d90d8e8b0cbbd75f678025553a1f0d7052bf5171c7c5bc3ce8499c699cefdd +docfiles size=283 RELOC/doc/xelatex/xepersian-hm/INSTALL.txt RELOC/doc/xelatex/xepersian-hm/README.txt details="Readme" RELOC/doc/xelatex/xepersian-hm/doc-ligature-xep.pdf @@ -323122,25 +323187,28 @@ docfiles size=211 RELOC/doc/xelatex/xepersian-hm/doc-samples-xep.pdf RELOC/doc/xelatex/xepersian-hm/kashida-glyph-example.pdf details="Example of use (1)" language="fa" RELOC/doc/xelatex/xepersian-hm/kashida-glyph-example.tex - RELOC/doc/xelatex/xepersian-hm/kashida-hrule-example.pdf details="Example of use (2)" language="fa" - RELOC/doc/xelatex/xepersian-hm/kashida-hrule-example.tex - RELOC/doc/xelatex/xepersian-hm/kashida-xep-XB-example.pdf details="Example of use (3)" language="fa" + RELOC/doc/xelatex/xepersian-hm/kashida-leaders-glyph-example.pdf details="Example of use (2)" language="fa" + RELOC/doc/xelatex/xepersian-hm/kashida-leaders-glyph-example.tex + RELOC/doc/xelatex/xepersian-hm/kashida-leaders-hrule-example.pdf details="Example of use (3)" language="fa" + RELOC/doc/xelatex/xepersian-hm/kashida-leaders-hrule-example.tex + RELOC/doc/xelatex/xepersian-hm/kashida-xep-XB-example.pdf details="Example of use (4)" language="fa" RELOC/doc/xelatex/xepersian-hm/kashida-xep-XB-example.tex RELOC/doc/xelatex/xepersian-hm/xepersian-hm-doc.ltx RELOC/doc/xelatex/xepersian-hm/xepersian-hm-doc.pdf details="User documentation" RELOC/doc/xelatex/xepersian-hm/xepersian-hm.pdf details="Code documentation" -srccontainersize 6100 -srccontainerchecksum 4cd0d0f499a7be4dec7084968e12f69f79777733df3644604986a678b8a8db41d8357a5754e9ccc734423257db4daa139c4a363ff2696ebca4db61128248e0f2 +srccontainersize 6488 +srccontainerchecksum 4349e189588a90e5f03b8f9a10d33a5a86cf32ca6f66c7ce534e6ba37b9741cd5ad505c5f6d6d8303084ac412354bfd4afae42692513bcca13826def926cbab1 srcfiles size=8 RELOC/source/xelatex/xepersian-hm/xepersian-hm.dtx RELOC/source/xelatex/xepersian-hm/xepersian-hm.ins -runfiles size=7 +runfiles size=8 RELOC/tex/xelatex/xepersian-hm/kashida-xepersian-hm.def RELOC/tex/xelatex/xepersian-hm/xepersian-hm.sty +catalogue-contact-bugs https://bitbucket.org/dma8hm1334/xepersian-hm/issues catalogue-ctan /macros/xetex/latex/xepersian-hm catalogue-license lppl1.3c catalogue-topics persian xetex expl3 -catalogue-version 0.5f +catalogue-version 1.0a name xesearch category Package @@ -323882,17 +323950,17 @@ catalogue-topics frivolous name xindex category Package -revision 55335 +revision 55361 shortdesc Unicode compatible index generation longdesc This package provides a unicode compatible index programm for longdesc LaTeX. It needs Lua 5.3, which will be included in at least longdesc LuaTeX 1.09 (TeX Live 2019). depend xindex.ARCH -containersize 28832 -containerchecksum ea492709b2cf966f2963ab0c0286b49ce0fa4baa059571e7dc6e6da0879340abb61c57c0f97a1d73cdd5c87ba3dffe9bccdaf5f208389c2ba8ddf10b06580646 -doccontainersize 439008 -doccontainerchecksum a13174b758f3ff107b282abfd1b031cfc2dcd8aa67141c99ffd75fd6d26feebed1819579e00a08ab1a4a1fef77135bd0f7cb53be95144c6536ff16760abd8eac -docfiles size=188 +containersize 29928 +containerchecksum f2e868d283e94045d33ac0be37820ab5427bcae688943b1752fe504e9a6a762a6684867bfef25a5e7076503497de370b72e88f66d42eb03f5a4a8c68270b0b88 +doccontainersize 448860 +doccontainerchecksum 1ab6a4a410386209b4c32a067e4d094f704f66976e09e2e860ad0caa7b2f3fb7448bde2c5535754fdbeaacf2ea9db6d7a4a2f04a8ee11ee9f6373504de6769ae +docfiles size=192 texmf-dist/doc/lualatex/xindex/CHANGELOG texmf-dist/doc/lualatex/xindex/Makefile texmf-dist/doc/lualatex/xindex/README.md details="Readme" @@ -323931,7 +323999,7 @@ docfiles size=188 texmf-dist/doc/lualatex/xindex/tests/runTests.sh texmf-dist/doc/lualatex/xindex/xindex-doc.pdf details="Package documentation" texmf-dist/doc/lualatex/xindex/xindex-doc.tex -runfiles size=49 +runfiles size=51 texmf-dist/scripts/xindex/xindex.lua texmf-dist/tex/latex/xindex/xindex.sty texmf-dist/tex/lualatex/xindex/xindex-DIN2.lua @@ -323942,6 +324010,7 @@ runfiles size=49 texmf-dist/tex/lualatex/xindex/xindex-dtk.lua texmf-dist/tex/lualatex/xindex/xindex-lapp.lua texmf-dist/tex/lualatex/xindex/xindex-lib.lua + texmf-dist/tex/lualatex/xindex/xindex-norsk.lua texmf-dist/tex/lualatex/xindex/xindex-pretty.lua texmf-dist/tex/lualatex/xindex/xindex-unicode.lua catalogue-contact-bugs https://gitlab.com/hvoss49/xindex/issues @@ -323949,7 +324018,7 @@ catalogue-contact-repository https://gitlab.com/hvoss49/xindex catalogue-ctan /indexing/xindex catalogue-license lppl1.3 catalogue-topics index use-lua -catalogue-version 0.21 +catalogue-version 0.22 name xindex.aarch64-linux category Package diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 index bb2a158363..71b21fde40 100644 --- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 +++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 @@ -1 +1 @@ -260edee9ef9860890e29e0f999f72d43 texlive.tlpdb +1545c51d446c155b6d406ea863afc7cd texlive.tlpdb diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 index 4ad4f39687..b8876de90f 100644 --- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 +++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 @@ -1 +1 @@ -93b57cbfabda645ae0fb1218afe40d8ed8e97168a0f12605c50fe55ffbbfd876a90035fed6712c2d31fa7793aea13391a5dd783b824272ef43f60f6e0b26abd9 texlive.tlpdb +123cbf5dacc6b6ec0b11ee9143277aae392fcc5565ebcb3457d78237320145269580c39887c585f85a7c47de5f2da687f4137e25f28e4a8b8b62426b44e40281 texlive.tlpdb diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc index dc6c4aa9dc..f461268b14 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----- -iQEcBAEBCgAGBQJe0uR5AAoJEEzhh34ZQ4xwTMAIAKbqxhGyL2j+Ox9+tN4LlyRz -Komby2MP4EbALOYit4Gmppt4L7jivi7/JkMYbuzFfj6eIO66clgK+Z/PO4fDUqSu -4CuXJpm4Y3ryhFtuojIw7ostOibkR5ijzlcX+IkfnnNQjKHuzF3bNaz9pwQIj+u5 -dbKd8Yy1aijRbNGadJCMPThF1hqAGJ89pRTUi04woUE99J+HpVmlTC5xYURaBluE -cgyVtP4Kx7ApRp7YuqYMQI3MTI+FRqv147BhTT90umU/JiI87RVb3ohDANScRtRN -RSNZpNAGaCKj9Sjc3euveHgRs2KfWMO79+xAHit+mH96os7rcqQH03TkBflHWkk= -=thGR +iQEcBAEBCgAGBQJe1CKxAAoJEEzhh34ZQ4xwW6IIAIn76urYpzupJLP441Q2Tzej +2KrsgcFeEXGqvmWgCDfts4NtsyN9RPhWmv9Ooie9GNJY9moUoWfmio7uTSPiEnD8 +5D/j3MVSTeAA25HeECLpErEUxslBg6AitWOG2i+yT1DkE1TblQ3eOv78b3fEQUG+ +4Amc9vkYV6S6LemKbuPFEFDA5akCE+40MUasYTn937NvB7LWDpsGmnfvOIcOhGxq +OGHZFT30Id9CRqD9h2gKbwg/MfibWNQCIZZVDSKqGZxeVW+IGOGntvaPcBwhT/zW +tQxgGe1boEX0BSjjJ/FUexQM9D+P92/DHkNTiH+HJXv9ilm2f8+Fkzhbb4nAaSE= +=EDhx -----END PGP SIGNATURE----- diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz index 87adec7837..e87d822b27 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/tltcl/tltcl.tcl b/systems/texlive/tlnet/tlpkg/tltcl/tltcl.tcl index 7af693b564..ff5c273c05 100644 --- a/systems/texlive/tlnet/tlpkg/tltcl/tltcl.tcl +++ b/systems/texlive/tlnet/tlpkg/tltcl/tltcl.tcl @@ -339,7 +339,6 @@ proc load_translations {} { } } } -initialize_language load_translations proc __ {s args} { -- cgit v1.2.3