summaryrefslogtreecommitdiff
path: root/systems/texlive/tlnet/tlpkg
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2021-04-07 03:01:59 +0000
committerNorbert Preining <norbert@preining.info>2021-04-07 03:01:59 +0000
commit70fe7f94e8281b0691a51754da3e2d40b1dd7732 (patch)
treef4be4cdf15aa796af9ae46eaf33d24279659cdb9 /systems/texlive/tlnet/tlpkg
parente4d1c68b2517d031bb9adc055fe19d1051c81042 (diff)
CTAN sync 202104070301
Diffstat (limited to 'systems/texlive/tlnet/tlpkg')
-rw-r--r--systems/texlive/tlnet/tlpkg/TeXLive/TLWinGoo.pm78
-rwxr-xr-xsystems/texlive/tlnet/tlpkg/installer/install-tl-gui.tcl10
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb186
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.md52
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha5122
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc14
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.xzbin2293896 -> 2295036 bytes
7 files changed, 160 insertions, 132 deletions
diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLWinGoo.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLWinGoo.pm
index 35e92c7300..38b23d34b4 100644
--- a/systems/texlive/tlnet/tlpkg/TeXLive/TLWinGoo.pm
+++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLWinGoo.pm
@@ -1,4 +1,4 @@
-# $Id: TLWinGoo.pm 58646 2021-03-23 03:34:22Z preining $
+# $Id: TLWinGoo.pm 58768 2021-04-06 10:39:46Z 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: 58646 $';
+my $svnrev = '$Revision: 58768 $';
my $_modulerevision;
if ($svnrev =~ m/: ([0-9]+) /) {
$_modulerevision = $1;
@@ -32,8 +32,6 @@ C<TeXLive::TLWinGoo> -- Additional utilities for Windows
=head2 DIAGNOSTICS
- TeXLive::TLWinGoo::is_vista;
- TeXLive::TLWinGoo::is_seven;
TeXLive::TLWinGoo::is_ten;
TeXLive::TLWinGoo::admin;
TeXLive::TLWinGoo::non_admin;
@@ -161,22 +159,18 @@ sub reg_debug {
my $is_win = ($^O =~ /^MSWin/i);
-# Win32: import some wrappers for API functions
-# failed to get Win32::API::More to work with raw API functions;
+# Win32: import wrappers for some horrible API functions
# import failures return a null result;
# call imported functions only if true/non-null
my $SendMessage = 0;
my $update_fu = 0;
-my $getlang = 0;
if ($is_win) {
- $SendMessage = new Win32::API('user32', 'SendMessageTimeout', 'LLPPLLP', 'L');
+ $SendMessage = Win32::API::More->new('user32', 'SendMessageTimeout', 'LLPPLLP', 'L');
debug ("Import failure SendMessage\n") unless $SendMessage;
- $update_fu = new Win32::API('shell32', 'SHChangeNotify', 'LIPP', 'V');
+ $update_fu = Win32::API::More->new('shell32', 'SHChangeNotify', 'LIPP', 'V');
debug ("Import failure assoc_notify\n") unless $update_fu;
- $getlang = Win32::API::More->new('kernel32', 'long GetUserDefaultLangID()');
- debug ("Import failure GetUserDefaultLangID\n") unless $getlang;
}
=pod
@@ -198,9 +192,6 @@ my $windows_version = 0;
my $windows_subversion = 0;
if ($is_win) {
- #my @osver = Win32::GetOSVersion(); # deprecated
- #$windows_version = $osver[1];
- #debug "Windows version $osver[0], major version $osver[1]\n";
my $ver = `ver`;
chomp $ver;
$ver =~ s/^[^0-9]*//;
@@ -210,25 +201,6 @@ if ($is_win) {
$windows_subversion =~ s/\..*$//;
}
-=item C<is_vista>
-
-C<is_vista> returns 1 if windows version is >= 6.0, otherwise 0.
-
-=cut
-
-sub is_vista { return $windows_version >= 6; }
-
-=item C<is_seven>
-
-C<is_seven> returns 1 if windows version is >= 6.1, otherwise 0.
-
-=cut
-
-sub is_seven {
- return (($windows_version == 6 && $windows_subversion >= 1) ||
- ($windows_version > 6));
-}
-
=item C<is_ten>
C<is_ten> returns 1 if windows version is >= 10.0, otherwise 0.
@@ -272,7 +244,7 @@ to the system environment.
=cut
-# during processing of this source, $is_admin will get its correct value
+# $is_admin has already got its correct value
sub admin { return $is_admin; }
@@ -307,16 +279,9 @@ Two-letter country code representing the locale of the current user
=cut
sub reg_country {
- my $value = 0;
- if ($getlang) {$value = $getlang->Call();}
- return unless $value;
- $value = sprintf ("%04x", $value);
- my $lmkey = $Registry -> Open("HKEY_CLASSES_ROOT/MIME/Database/Rfc1766/",
- {Access => KEY_READ()});
- return unless $lmkey;
- $lm = $lmkey->{"/$value"};
+ my $lm = cu_root()->{"Control Panel/international//localename"};
return unless $lm;
- debug("found lang codes value = $value, lm = $lm...\n");
+ debug("found lang code lm = $lm...\n");
if ($lm) {
if ($lm =~ m/^zh-(tw|hk)$/i) {
return ("zh", "tw");
@@ -330,6 +295,7 @@ sub reg_country {
return($lang, $area);
}
}
+ # otherwise undef will be returned
}
@@ -389,8 +355,7 @@ sub is_a_texdir {
=item C<get_system_path>
-Returns unexpanded system path, as stored in the registry, but with
-forward slashes.
+Returns unexpanded system path, as stored in the registry.
=cut
@@ -406,9 +371,8 @@ sub get_system_path {
=item C<get_user_path>
-Returns unexpanded user path, as stored in the registry, but with
-forward slashes. The user path often does not exist, and is rarely
-expandable.
+Returns unexpanded user path, as stored in the registry. The user
+path often does not exist, and is rarely expandable.
=cut
@@ -1034,15 +998,15 @@ sub unregister_file_type {
=item C<broadcast_env>
Broadcasts system message that enviroment has changed. This only has
-an effect on newly-started programs, not on running programs and the
+an effect on newly-started programs, not on running programs or the
processes they spawn.
=cut
sub broadcast_env() {
if ($SendMessage) {
- use constant HWND_BROADCAST => 0xffff;
- use constant WM_SETTINGCHANGE => 0x001A;
+ use constant HWND_BROADCAST => 0xffff;
+ use constant WM_SETTINGCHANGE => 0x001A;
my $result = "";
my $ans = "12345678"; # room for dword
$result = $SendMessage->Call(HWND_BROADCAST, WM_SETTINGCHANGE,
@@ -1062,12 +1026,16 @@ Notifies the system that filetypes have changed.
=cut
sub update_assocs() {
- use constant SHCNE_ASSOCCHANGED => 0x8000000;
- use constant SHCNF_IDLIST => 0;
+ use constant SHCNE_ASSOCCHANGED => 0x8000000;
+ use constant SHCNF_IDLIST => 0;
if ($update_fu) {
debug("Notifying changes in filetypes...\n");
- $update_fu->Call (SHCNE_ASSOCCHANGED, SHCNF_IDLIST, 0, 0);
- debug("Done notifying\n");
+ my $result = $update_fu->Call(SHCNE_ASSOCCHANGED, SHCNF_IDLIST, 0, 0);
+ if ($result) {
+ debug("Done notifying filetype changes\n");
+ } else{
+ debug("Failure notifying filetype changes\n");
+ }
} else {
debug("No update_fu\n");
}
diff --git a/systems/texlive/tlnet/tlpkg/installer/install-tl-gui.tcl b/systems/texlive/tlnet/tlpkg/installer/install-tl-gui.tcl
index 455641f4db..66ba9a0252 100755
--- a/systems/texlive/tlnet/tlpkg/installer/install-tl-gui.tcl
+++ b/systems/texlive/tlnet/tlpkg/installer/install-tl-gui.tcl
@@ -1644,6 +1644,7 @@ proc run_menu {} {
ttk::checkbutton .srcb -variable ::vars(tlpdbopt_install_srcfiles) \
-command {update_vars; show_stats}
pgrid .srcb -in $curf -row $rw -column 2 -sticky e
+ puts stderr [bindtags .srcb]
}
}
@@ -1698,14 +1699,9 @@ proc run_menu {} {
pgrid [ttk::label .texwl -text [__ "Install TeXworks front end"]] \
-in $curf -row $rw -column 0 -columnspan 2 -sticky w
ttk::checkbutton .texwb -variable ::vars(collection-texworks)
+ .texwb configure -command \
+ {set ::vars(selected_scheme) "scheme-custom"; update_vars; show_stats}
pgrid .texwb -in $curf -row $rw -column 2 -sticky e
- bind .texwb <ButtonRelease> {+
- set ::vars(selected_scheme) "scheme-custom"; update_vars; show_stats}
- bind .texwb <Return> {+
- set ::vars(selected_scheme) "scheme-custom"; update_vars; show_stats}
- bind .texwb <space> {+
- set ::vars(selected_scheme) "scheme-custom"; update_vars; show_stats}
-
} else {
if $::advanced {
# instopt_adjustpath, unix edition: symlinks
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb b/systems/texlive/tlnet/tlpkg/texlive.tlpdb
index 378e17cf99..1009b44dc0 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/2021
-depend revision/58764
+depend revision/58778
name 00texlive.image
category TLCore
-revision 58759
+revision 58777
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
@@ -689,6 +689,7 @@ runfiles size=13859
tlpkg/tlpsrc/beamertheme-saintpetersburg.tlpsrc
tlpkg/tlpsrc/beamertheme-upenn-bc.tlpsrc
tlpkg/tlpsrc/beamerthemejltree.tlpsrc
+ tlpkg/tlpsrc/beamerthemelalic.tlpsrc
tlpkg/tlpsrc/beamerthemenirma.tlpsrc
tlpkg/tlpsrc/beamerthemenord.tlpsrc
tlpkg/tlpsrc/bearwear.tlpsrc
@@ -1369,6 +1370,7 @@ runfiles size=13859
tlpkg/tlpsrc/diffcoeff.tlpsrc
tlpkg/tlpsrc/digiconfigs.tlpsrc
tlpkg/tlpsrc/dijkstra.tlpsrc
+ tlpkg/tlpsrc/dimnum.tlpsrc
tlpkg/tlpsrc/din1505.tlpsrc
tlpkg/tlpsrc/dinat.tlpsrc
tlpkg/tlpsrc/dinbrief.tlpsrc
@@ -4367,7 +4369,7 @@ depend setting_available_architectures:aarch64-linux amd64-freebsd amd64-netbsd
name 00texlive.installer
category TLCore
-revision 58742
+revision 58767
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
@@ -29572,20 +29574,21 @@ catalogue-version 1.2s
name babel-romanian
category Package
-revision 30285
+revision 58776
shortdesc Babel support for Romanian
relocated 1
longdesc The package provides the language definition file for support
longdesc of Romanian in babel. Translations to Romanian of standard
longdesc "LaTeX names" are provided.
-containersize 2176
-containerchecksum d2aca8f17ae173c36185d6d3514b0b09f76233e44f30177a50240ef0cf0f25f85767a6fc5ee0f94e2eff0df0b94fbca08eb048e95b35a631b7d30a1fbf6c23e6
-doccontainersize 113084
-doccontainerchecksum 876a8cd9e515ecad570ce23686b71e896fa377ce8fb4840e511430aabb05e9cb03f614167fa2abd13328d0ea7f4eebf7044a65db584b95ce4c64bd37d2602b2e
-docfiles size=28
+containersize 2124
+containerchecksum ca6318ca8453dae2286b305766c6ced299f18f390c0d0f44e77ddf8eb4b05c31c7a2b01ed52e271f68acd6b127650b370d15ea9bcb3b591fd01e5d3a50b17db5
+doccontainersize 113056
+doccontainerchecksum 73ff361e7e03499427529824b83ea584a5ca190aae3d1ef9a5f4a5adf52cc8ab02f5652c92c1464a702f581e29626fa9cd14d4ee84f6cdde69b38af9d10b20ee
+docfiles size=29
+ RELOC/doc/generic/babel-romanian/README.md
RELOC/doc/generic/babel-romanian/romanian.pdf details="Package documentation"
-srccontainersize 4340
-srccontainerchecksum 493834afa2339a8a63c017ca880ec07626a62b88f76688192253985bb5b254412409c1128714a2ce8a7f7a296cef6ad9ae67b32a276372c811933df8d2929e2b
+srccontainersize 4308
+srccontainerchecksum 0e4aef9bf20e6602dd946e2ad2856c7ee7849b492d4b66334450b450faed146eef83d2b7f13506eac6f34507bfec4ae735ae9845d3a21c36d98105bb353166c8
srcfiles size=5
RELOC/source/generic/babel-romanian/romanian.dtx
RELOC/source/generic/babel-romanian/romanian.ins
@@ -29594,7 +29597,7 @@ runfiles size=1
catalogue-ctan /macros/latex/contrib/babel-contrib/romanian
catalogue-license lppl1.3
catalogue-topics romanian
-catalogue-version 1.2l
+catalogue-version 1.2m
name babel-romansh
category Package
@@ -33770,6 +33773,36 @@ catalogue-license gpl
catalogue-topics presentation
catalogue-version 1.1
+name beamerthemelalic
+category Package
+revision 58777
+shortdesc A beamer theme for LALIC
+relocated 1
+longdesc This package provides the beamer theme for LALIC (Laboratorio
+longdesc de Linguistica e Inteligencia Computacional of the Federal
+longdesc University of Sao Carlos, Brazil).
+containersize 2924
+containerchecksum 70d789b4490e5ceb9d578be03f815eea97706fc89e41756908d41f1953c2b4cee4ce7c142406a0abef0497b89b74dfb2dc6d2a841898996f32025f53626a8548
+doccontainersize 224372
+doccontainerchecksum b79c55da51785c42c68a2bd5f7a386b21fbb36948df8b5e87e60b9eab263e43592b7265902b6f3a2d3bd214dce122fcf0d504ff807a7bee0ebccf7241fa8e1fd
+docfiles size=65
+ RELOC/doc/latex/beamerthemelalic/LICENSE
+ RELOC/doc/latex/beamerthemelalic/README.md details="Readme"
+ RELOC/doc/latex/beamerthemelalic/beamerthemelalic-exemplo.pdf details="Package documentation"
+ RELOC/doc/latex/beamerthemelalic/beamerthemelalic-exemplo.tex
+runfiles size=5
+ RELOC/tex/latex/beamerthemelalic/beamercolorthemelalic.sty
+ RELOC/tex/latex/beamerthemelalic/beamerfontthemelalic.sty
+ RELOC/tex/latex/beamerthemelalic/beamerinnerthemelalic.sty
+ RELOC/tex/latex/beamerthemelalic/beamerouterthemelalic.sty
+ RELOC/tex/latex/beamerthemelalic/beamerthemelalic.sty
+catalogue-contact-bugs https://github.com/jandermoreira/temabeamerlalic/issues
+catalogue-contact-repository https://github.com/jandermoreira/temabeamerlalic
+catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamerthemelalic
+catalogue-license gpl3+
+catalogue-topics presentation
+catalogue-version 1.0
+
name beamerthemenirma
category Package
revision 20765
@@ -51889,7 +51922,7 @@ catalogue-version 1.0c
name changes
category Package
-revision 57756
+revision 58773
shortdesc Manual change markup
relocated 1
longdesc The package allows the user to manually markup changes of text,
@@ -51900,10 +51933,10 @@ longdesc package allows free definition of additional authors and their
longdesc associated color. It also allows you to change the markup of
longdesc changes, authors, highlights or comments. A Python script is
longdesc provided for removing the changes.
-containersize 7888
-containerchecksum e63d0bdac1ec91d76c729c3e7293ec72a86e3a334b033ec53ad9b566fcbd971ceb535ab23655f4cad915e131898032eb31ef80197b0247db84c47a40007785e4
-doccontainersize 2437164
-doccontainerchecksum a49a0256955ca438d07bc52660206b0788c4ea21fdaff092b37a56f840b46459855d121aa4e26400964bd404d527063781c2e03987f2d99aad8d6c0b1a38a83f
+containersize 7892
+containerchecksum 946a37d1b66fd2fa900a6683d08ccdabc88304c9dcb9d48a3f6b2d83208f73cb3b9f7d2c8e86565db16356e3a1b128e53f5d8ddfc6979129ed30e56f120b9442
+doccontainersize 2433612
+doccontainerchecksum a653f0e5f3b03252d30d24dec3a6623621858b433734c437a3ae6bd56e293ab00503fb7e2a92e51a0f88ed906fc0c05484577fb09c5348a44248eb7b12f41cf0
docfiles size=2257
RELOC/doc/latex/changes/README details="Readme" language="en"
RELOC/doc/latex/changes/changes.english.pdf details="Package documentation (English)" language="en"
@@ -52143,8 +52176,8 @@ docfiles size=2257
RELOC/doc/latex/changes/userdoc/usepackage_ulem_changes_in.tex
RELOC/doc/latex/changes/userdoc/usepackage_xcolor_changes_ex.tex
RELOC/doc/latex/changes/userdoc/usepackage_xcolor_changes_in.tex
-srccontainersize 16892
-srccontainerchecksum 0f6f50d6b3a49ca612ab0e7bbf93acb55b3100b8e7e89563459fe9b530786f2260b5b25b94ee374a062b04c56e0a2f78380b95b91880c8da31790df83a1d355e
+srccontainersize 16908
+srccontainerchecksum a74ee0bd131301f12a674155d87ffec87b88916e242e80a4daa18fca251d8479e05dc8ddd343943c96055cb3c54fdaa37f91198c8daab1a0c85eb8029d8f9f9b
srcfiles size=27
RELOC/source/latex/changes/changes.drv
RELOC/source/latex/changes/changes.dtx
@@ -52161,7 +52194,7 @@ catalogue-contact-support https://gitlab.com/ekleinod/changes/issues
catalogue-ctan /macros/latex/contrib/changes
catalogue-license lppl1.3
catalogue-topics editorial doc-tool
-catalogue-version 4.0.1
+catalogue-version 4.0.2
name chappg
category Package
@@ -66804,7 +66837,7 @@ containerchecksum 0568a3251d71fb3106fbb3961427200419ae1df22d39b5e72c608e2d94fc35
name collection-latexextra
category Collection
-revision 58593
+revision 58777
shortdesc LaTeX additional packages
relocated 1
longdesc A very large collection of add-on packages for LaTeX.
@@ -66894,6 +66927,7 @@ depend beamertheme-pure-minimalistic
depend beamertheme-saintpetersburg
depend beamertheme-upenn-bc
depend beamerthemejltree
+depend beamerthemelalic
depend beamerthemenirma
depend beamerthemenord
depend bearwear
@@ -67125,6 +67159,7 @@ depend diagbox
depend diagnose
depend dialogl
depend dichokey
+depend dimnum
depend dinbrief
depend directory
depend dirtytalk
@@ -68169,8 +68204,8 @@ depend ziffer
depend zref
depend zwgetfdate
depend zwpagelayout
-containersize 6308
-containerchecksum 6fe09261d6e4428f0244b87eba97f8e483f3c4a11b3531698486f9e86807712357f5231df5104a123c6a0abccb42d8d05ad559a729f4b20ad35652ea024f086b
+containersize 6316
+containerchecksum b4cfddef7a005b82ebc5892a23fe214155794814301008fa66215acfe8d93c484a6d75765a19614a7a6ab193aae70b032eddbf8cee5cd2073ba32868aae6e1eb
name collection-latexrecommended
category Collection
@@ -89316,6 +89351,34 @@ catalogue-license lppl1.3c
catalogue-topics maths automata
catalogue-version 0.12
+name dimnum
+category Package
+revision 58774
+shortdesc Commands for dimensionless numbers
+relocated 1
+longdesc This package simplifies the calling of Dimensionless Numbers in
+longdesc math or text mode.
+containersize 2508
+containerchecksum 636543ee5f2e027ec242d59ab8af28e8aa6f35d3e91480e4812a72df3c1636fdfeed2cf472c79b29fae5ed65224da4ca4a0bf5040e2a4360b73fc5f4cec85bb0
+doccontainersize 207688
+doccontainerchecksum a00eb3157b84a22afeb66c6f918fb434bb2a183afba110340b93cdb7dc33152f4b9472da134f999f36057b7ddc221a2a78bbaac5fa0509e452c4d8d6e96ebcf3
+docfiles size=57
+ RELOC/doc/latex/dimnum/README.md details="Readme"
+ RELOC/doc/latex/dimnum/changelog
+ RELOC/doc/latex/dimnum/dimnum.pdf details="Package documentation"
+srccontainersize 5224
+srccontainerchecksum 2d729252a866edd8039c2d09b8ebc92c28aad4b0863777460c69075d7c4e1065ad515937e13f2de5b0578a89c4693cc508dccf002823e5591a6960c6d2752456
+srcfiles size=5
+ RELOC/source/latex/dimnum/dimnum.dtx
+ RELOC/source/latex/dimnum/dimnum.ins
+runfiles size=2
+ RELOC/tex/latex/dimnum/dimnum.sty
+catalogue-contact-repository https://github.com/CptRolinho/dimnum
+catalogue-ctan /macros/latex/contrib/dimnum
+catalogue-license lppl1.3
+catalogue-topics numbers abbrev physics chemistry
+catalogue-version 1.0.1
+
name din1505
category Package
revision 19441
@@ -98348,16 +98411,16 @@ catalogue-topics notes editorial
name easybook
category Package
-revision 58762
+revision 58775
shortdesc Typeset Chinese books or notes
relocated 1
longdesc Easybook is a minimalist style template based on the ctexbook
longdesc book document class.
-containersize 10960
-containerchecksum 8f5da3d6123eb6c1f279c4939207d386247bd393e451ce419ce4441b73644efadb2d8c9883ccbf4c6ecf9069f1489bf2812250974a64d840ad62a1e5f29cc71a
-doccontainersize 684420
-doccontainerchecksum 47fb92af3f57c7e315ad45383dd056e36e20846b6b5bf574d9167af50e68c79ed59c7c4eadfa7873ca75d3dee55683a23b99399c69c7d5432bc4cf6f225e4eb4
-docfiles size=176
+containersize 11188
+containerchecksum b55fab0d6bf8d341c993e8c45f7deb8b40a8589bc13da474f626b1d04e58fed615dffb2209912b731cd1c5106dd03c1a062c02d7f40701738bddaeba447bc66f
+doccontainersize 686152
+doccontainerchecksum 3b6246f79c20df96145d1d71163095b4f1f7242443c88aa0ee5450d79282b3b0a13e6e73ce1ed152087c9eb278af146b37bee44dffbe0ee3d58748ee4d03865a
+docfiles size=177
RELOC/doc/latex/easybook/README.md details="Readme"
RELOC/doc/latex/easybook/appendix.tex
RELOC/doc/latex/easybook/chapter1.tex
@@ -98367,9 +98430,9 @@ docfiles size=176
RELOC/doc/latex/easybook/easybook-demo.tex
RELOC/doc/latex/easybook/easybook.pdf details="Package documentation" language="zh"
RELOC/doc/latex/easybook/refs.bib
-srccontainersize 22156
-srccontainerchecksum 38f3f1f832dea271f84e3fde7b7ec5f597b62ad36450552d1e65bdd387f34a890a8faf12ef66a993cf382d28dccd8e46ecdf1ba45c6ac0ea7131b19ff43a5670
-srcfiles size=22
+srccontainersize 22608
+srccontainerchecksum f3739a733120a26904523b83a4cfa1a3a33093f0ddf9ffaca52e3fce421f73802bc4d52ccae234a3c0b03d1b1e318ec73395f0e89624c73e20142519de000b12
+srcfiles size=23
RELOC/source/latex/easybook/easybook.dtx
runfiles size=12
RELOC/tex/latex/easybook/easybook.cls
@@ -111403,7 +111466,7 @@ catalogue-version 0.7
name expkv-opt
category Package
-revision 56633
+revision 58772
shortdesc Parse class and package options with expkv
relocated 1
longdesc This package provides option parsing for classes and packages
@@ -111411,25 +111474,27 @@ longdesc in LaTeX2e based on expkv. Global and local options are parsed
longdesc individually by different commands. The package supports
longdesc key=value options and keys without a value. expkv is the only
longdesc required package.
-containersize 2376
-containerchecksum d62e5bbaddfd5ca1be219a6504774259a8c07af1e32e5c5f8085cf78eb1e0f947318f7fc6f49fbe686cbfe8261d9bd3ea70f77f21afcb2a6781074fbd7cfc2da
-doccontainersize 257016
-doccontainerchecksum 12c903eae7f081cbfe5fb5a9d19373353aad194dd90bbcb8691a3ad078903a953e3ea8156331b1d3c600f2af8f23620ef6d514b0ca55d0e3db5ac03e63523597
-docfiles size=65
+containersize 2908
+containerchecksum 8b6203aaeb7a2c86c355a67ad02857d5ddacf5e85f04143b0f0225c2fb4a00c1f6e88b6b1c5a872c1c092680ffbfb19148c8a97e8537babe97b969355b63fce0
+doccontainersize 264172
+doccontainerchecksum 12312e21d7d15e9ba60800243cebe4b7ab2ea52a31c37f25446b6fe0ef413e9d33d4066d139b3fca1375dc9cfe357a65ec58e7ef1d3b28472da368dedac3213c
+docfiles size=67
RELOC/doc/generic/expkv-opt/README.md details="Readme"
RELOC/doc/generic/expkv-opt/expkv-opt.pdf details="Package documentation"
-srccontainersize 7508
-srccontainerchecksum 5d3db8c1c829784becd1512d2db773ca75c288a39d4d0472df09d26656c873670861b80e66fd372c6e636e0b2b86ad5ee035dbdcf8b30b87484f039f7fb87e49
-srcfiles size=8
+srccontainersize 9288
+srccontainerchecksum 4fe886ef42bd181f521015225b92ae15a16d9b2d34001119f49bc417cddead7fccd437b0f4263c1f24525060a7f94f423db38fc8f677212fb330f690eaf9a676
+srcfiles size=17
+ RELOC/source/generic/expkv-opt/expkv-opt-2020-10-10.dtx
RELOC/source/generic/expkv-opt/expkv-opt.dtx
-runfiles size=3
+runfiles size=6
+ RELOC/tex/generic/expkv-opt/expkv-opt-2020-10-10.sty
RELOC/tex/generic/expkv-opt/expkv-opt.sty
catalogue-also expkv
catalogue-contact-repository https://github.com/Skillmon/tex_expkv-opt
catalogue-ctan /macros/generic/expkv-opt
catalogue-license lppl1.3c
catalogue-topics keyval
-catalogue-version 0.1b
+catalogue-version 0.2
name export
category Package
@@ -197951,7 +198016,7 @@ catalogue-version 1.8
name missaali
category Package
-revision 54512
+revision 58771
shortdesc A late medieval OpenType textura font
relocated 1
longdesc This package contains the free OpenType Textura font Missaali
@@ -197968,17 +198033,16 @@ longdesc of Lombardic initials. As modern typesetting algorithms are not
longdesc intended for creating 15th century style layout, the package
longdesc contains a XeLaTeX style file that makes it easier to achieve
longdesc the classic incunabula look.
-containersize 63476
-containerchecksum d23a0e4a7730e4a6861a4c68c44fc77249133724292f65c8f0114081b9d2821acee2bc1520c9644a9f38938c6b1cac76483b0362c26deac5484b3216110919b6
-doccontainersize 7898860
-doccontainerchecksum 7068de94fe243812c6be1dade5a10a45dcae28ee87a2a305f65aa936c58a4ada1bfbe44a4a1849d802e5a178fee3a5dfdd148731a5fa32f2ed37745905a15925
-docfiles size=2183
+containersize 85812
+containerchecksum a077053382e5ea428b274239732f8bac2a4b943e19d40110df76d19499768e12f47c37f7b9d132cbe2023821fe82d4667b414b9114cdfb23df9534bdab2b5214
+doccontainersize 14130560
+doccontainerchecksum 2ba1713de8741c0c01eac1e35ebfbf544baeb2e92ffc587960c969e0ca01a141fcf983e99796e239cfe639ab4ab686875393f12649f0528024c0779a8f549893
+docfiles size=3752
RELOC/doc/fonts/missaali/MANIFEST-Missaali.txt
RELOC/doc/fonts/missaali/Missaali.glyphs
RELOC/doc/fonts/missaali/OFL.txt
RELOC/doc/fonts/missaali/README details="Readme"
RELOC/doc/fonts/missaali/lppl.txt
- RELOC/doc/fonts/missaali/missaali-smallfont.png
RELOC/doc/fonts/missaali/missaali.bib
RELOC/doc/fonts/missaali/missaali.pdf details="Package documentation"
RELOC/doc/fonts/missaali/missaali.tex
@@ -197990,13 +198054,13 @@ docfiles size=2183
RELOC/doc/fonts/missaali/pic-2.png
RELOC/doc/fonts/missaali/symbols.tex
RELOC/doc/fonts/missaali/word_features.png
-runfiles size=68
+runfiles size=39
RELOC/fonts/opentype/public/missaali/Missaali-Regular.otf
RELOC/tex/latex/missaali/missaali.sty
catalogue-ctan /fonts/missaali
catalogue-license ofl lppl1.3
catalogue-topics font-otf font-archaic
-catalogue-version 1.004
+catalogue-version 2.0
name mkgrkindex
category Package
@@ -298266,15 +298330,15 @@ docfiles size=619
name texlive-docindex
category TLCore
-revision 58742
+revision 58766
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 44e61aeee7874a4bf985564c15b7818e814a48d1d739b70269cdf42039870fc9ff0f28bdaa98ec1d7d3c181ccaaeccf3110dc9dc626da22f7f00c6800f5aba43
-doccontainersize 174244
-doccontainerchecksum 777146ee9f3ff8ad159316c30247d2710fb07876c876ca39b640eebfa67c25ab6db7415c3c6b48d3a81dad8ba2ab6129815066f0d7a67c8bef5b79f3b29a535f
+containerchecksum 3ccb502d2cd0820e352e2ad74f478bfd38476b21fbcb46ed0807a95887026f3fa7e13d6fc7db574c9b4930f2280b0473a992c58987d8452db227d766c801dd8a
+doccontainersize 174316
+doccontainerchecksum a262c58ac0564d996849a61b835691b34455bf6f055c65d0e0909972a7745e68e5684126a6d0c28e67b092bf52379909da763bec7adfcbb3015459bde88c52f3
docfiles size=346
doc.html
@@ -298501,7 +298565,7 @@ docfiles size=376
name texlive-scripts
category TLCore
-revision 58742
+revision 58769
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.
@@ -298509,10 +298573,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 107016
-containerchecksum 374294ffcaf45a59c5a929b3e634b67343a7546f09e08dc12b0630fe204e7752f7045e28a30931de568f350c1a265476d652e4938576f0e5ffd5e561c03aa70d
-doccontainersize 211616
-doccontainerchecksum ce3fa70bf4a4280dd749303e2c56fb595f24d6acf1028b45bf240e71e2ba51bc101e40f9293a3900abfdf587c4d96ace4faf1ff0db4441b5ba8364b0d31b5bba
+containersize 107044
+containerchecksum 1c69988f46363aafbfbffbbf68c13ecb83bae8b272c463b68428c220698d7b21fe3655ad3768471c9639c0cd65ae01174fb15f73bb853e42e51321defbdcd844
+doccontainersize 211612
+doccontainerchecksum 3bf57f0e7617845971e39781e7947aef2efa9001ae673b462e0083806075e8dddaa4373667e08fd7c72828b4a134109b2109123b9555c877dabeb1a6ce267a7d
docfiles size=132
texmf-dist/doc/man/man1/fmtutil-sys.1
texmf-dist/doc/man/man1/fmtutil-sys.man1.pdf
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
index 438a13a0a4..bedfbe8aa9 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
@@ -1 +1 @@
-72fd66de67a1db09fb5178ad569577ac texlive.tlpdb
+f47651c57e6709c812a995e05b70f291 texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
index 5ffc8ba342..34d8f418c0 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
@@ -1 +1 @@
-ab1c5be713840ba0e74b81ef8ab0a0e18b8fd960cf16d1d2c275ab4ed630e6677aabb4d66f388650c40dc2e1b8562255e1897476deb5a8aee0347d9af9b93ec4 texlive.tlpdb
+b8a7e2d582d78dc0fe0aee702b6242a977879b09a7daad308970e4ce748a11e70d989633b151ba9ca0439e5263d3c04991e944d9b2cbc0d90b2b7376ec107e48 texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
index 83a60d816f..b2a43d3d17 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-----
-iQEcBAEBCgAGBQJga6LOAAoJEEzhh34ZQ4xwnGwH/2myQvbWq7KpUvGdbVw2m5eG
-N2sUyW7qRzfcQ0PDQk8yArn3QTvkvKhEcUf2UIYb3uSPzMiGom9rLG6nE4O6wPd/
-FUSP9hU6vpdDWHtkz6wizbvB8rOf2Qkuh+dFlPlUvdLPETkWs9VYyAzqQ9ORzwGp
-kgz/DefOAyF5W9UFQcNd0/DvrkDHlzUBlOBx+U534iF+S3OsKF5X3c3UXi56ASaF
-jhOc5MGtVdU14VrwNV27blBNYll7vjSyAG8f5tS5zBiL/UdLsoiQc6sQT1Iw1TmW
-a3F4X9YV3ME2FT/k941BoDOVIsIgx54dB24aSX+FaNG+zQeScmt24wbdpWJW6iY=
-=ruGl
+iQEcBAEBCgAGBQJgbPP3AAoJEEzhh34ZQ4xwzYcIALaBhz6mjs1Pt4PeiIjWoSuF
+swztcFFMb1Js5Nk1aos3/hkTwjVPTwPA4MDHpPZ+EyjkfDjBCRwu0foRRYjMtT1O
+xW0YuTN73Ot9zsibr8FH8iZ6z8lMFsD0uuSUxzPqNG+2bi9zr11Sv8BIdoK0n/Tb
+gcfs/9EXer12jReloS1/Bg/7LyA4Vjm/Z0u09ygFVw904kwmiJoZyd1+Cp6mYkPs
+5TE0UVWHNKs32Jqgc2zG6PKuAWiS6KdYu1XvWcVBy5BFD5YpN+B7UlVc9WcEn0z0
+/kUs4GkZlU6U4F9C2BaMrR1+k4l7hEt1QzOGeLmJ4rWTrg/KYi7k4SCrXYglMNg=
+=JPUl
-----END PGP SIGNATURE-----
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
index ef8cb6d82f..a05c304e7d 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
Binary files differ