summaryrefslogtreecommitdiff
path: root/systems/texlive/tlnet
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-10-23 03:00:42 +0000
committerNorbert Preining <norbert@preining.info>2019-10-23 03:00:42 +0000
commit43e60b98142683b95336b9086ee52f4daefff93e (patch)
treec435859ab7275b2cb9f3c2f5ca83dafe20968ad6 /systems/texlive/tlnet
parent7bf461efa5036b361e9500c4ed5c675cc819652c (diff)
CTAN sync 201910230300
Diffstat (limited to 'systems/texlive/tlnet')
-rw-r--r--systems/texlive/tlnet/.ilistbin0 -> 218448 bytes
-rw-r--r--systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm348
-rw-r--r--systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl3
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb244
-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.xzbin2125272 -> 2127772 bytes
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/sr.po323
9 files changed, 531 insertions, 405 deletions
diff --git a/systems/texlive/tlnet/.ilist b/systems/texlive/tlnet/.ilist
new file mode 100644
index 0000000000..a9e0729207
--- /dev/null
+++ b/systems/texlive/tlnet/.ilist
Binary files differ
diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm
index 2557f57931..a607e689c0 100644
--- a/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm
+++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm
@@ -1,4 +1,4 @@
-# $Id: TLUtils.pm 52465 2019-10-20 22:01:52Z karl $
+# $Id: TLUtils.pm 52482 2019-10-21 22:51:21Z 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: 52465 $';
+my $svnrev = '$Revision: 52482 $';
my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown";
sub module_revision { return $_modulerevision; }
@@ -39,7 +39,7 @@ C<TeXLive::TLUtils> -- utilities used in TeX Live infrastructure
TeXLive::TLUtils::wsystem($msg,@args);
TeXLive::TLUtils::xsystem(@args);
TeXLive::TLUtils::run_cmd($cmd);
- TeXLive::TLUtils::system_pipe($prog, $infile, $outfile, $removeIn, @extraargs);
+ TeXLive::TLUtils::system_pipe($prog, $infile, $outfile, $removeIn, @args);
=head2 File utilities
@@ -80,6 +80,19 @@ C<TeXLive::TLUtils> -- utilities used in TeX Live infrastructure
TeXLive::TLUtils::w32_remove_from_path($bindir, $multiuser);
TeXLive::TLUtils::setup_persistent_downloads();
+=head2 Logging and debugging
+
+ TeXLive::TLUtils::info($str1, ...); # output unless -q
+ TeXLive::TLUtils::debug($str1, ...); # output if -v
+ TeXLive::TLUtils::ddebug($str1, ...); # output if -vv
+ TeXLive::TLUtils::dddebug($str1, ...); # output if -vvv
+ TeXLive::TLUtils::log($str1, ...); # only to log file
+ TeXLive::TLUtils::tlwarn($str1, ...); # warn on stderr and log
+ TeXLive::TLUtils::tldie($str1, ...); # tlwarn and die
+ TeXLive::TLUtils::debug_hash($label, HASH); # warn stringified HASH
+ TeXLive::TLUtils::backtrace(); # return call stack as string
+ TeXLive::TLUtils::process_logging_options($texdir); # handle -q -v* -logfile
+
=head2 Miscellaneous
TeXLive::TLUtils::sort_uniq(@list);
@@ -115,7 +128,7 @@ C<TeXLive::TLUtils> -- utilities used in TeX Live infrastructure
# avoid -warnings.
our $PERL_SINGLE_QUOTE; # we steal code from Text::ParseWords
use vars qw(
- $::LOGFILENAME @::LOGLINES
+ $::LOGFILE $::LOGFILENAME @::LOGLINES
@::debug_hook @::ddebug_hook @::dddebug_hook @::info_hook
@::install_packages_hook @::warn_hook
$TeXLive::TLDownload::net_lib_avail
@@ -1118,6 +1131,10 @@ sub copy {
}
my $destdir=shift;
+ # while we're trying to figure out the versioned containers.
+ #debug("copy($infile, $destdir, filemode=$filemode)\n");
+ #debug("copy: backtrace:\n", backtrace(), "copy: end backtrace\n");
+
my $outfile;
my @stat;
my $mode;
@@ -1142,9 +1159,12 @@ sub copy {
die "mkdirhier($destdir) failed: $err\n" if ! $ret;
}
- if (-l "$infile") {
- symlink (readlink $infile, "$destdir/$filename")
- || die "symlink(readlink $infile, $destdir/$filename) failed: $!";
+ if (-l $infile) {
+ my $linktarget = readlink($infile);
+ my $dest = "$destdir/$filename";
+ debug("TLUtils::copy: doing symlink($linktarget,$dest)"
+ . " [from readlink($infile)]\n");
+ symlink($linktarget, $dest) || die "symlink($linktarget,$dest) failed: $!";
} else {
if (! open (IN, $infile)) {
warn "open($infile) failed, not copying: $!";
@@ -2102,14 +2122,21 @@ sub w32_remove_from_path {
=pod
-=item C<check_file($what, $checksum, $checksize>
+=item C<check_file_and_remove($what, $checksum, $checksize>
+
+Remove the file C<$what> if either the given C<$checksum> or
+C<$checksize> for C<$what> does not agree with our recomputation using
+C<TLCrypto::tlchecksum> and C<stat>, respectively. If a check argument
+is not given, that check is not performed. If the checksums agree, the
+size is not checked. The return status is random.
-Remove C<$what> if either the given C<$checksum> or C<$checksize> does
-not agree. If a check argument is not given, that check is not performed.
+This unusual behavior (removing the given file) is because this is used
+for newly-downloaded files; see the calls in the C<unpack> routine
+(which is the only caller).
=cut
-sub check_file {
+sub check_file_and_remove {
my ($xzfile, $checksum, $checksize) = @_;
debug("check_file $xzfile, $checksum, $checksize\n");
if (!$checksum && !$checksize) {
@@ -2117,12 +2144,23 @@ sub check_file {
"available for $xzfile, cannot check integrity");
return;
}
+
+ # The idea is that if one of the tests fail, we want to save a copy of
+ # the input file for debugging. But we can't just omit removing the
+ # file, since the caller depends on the removal. So we copy it to a
+ # new temporary directory, which we want to persist, so can't use tl_tmpdir.
+ my $check_file_tmpdir = undef;
+
# only run checksum tests if we can actually compute the checksum
if ($checksum && ($checksum ne "-1") && $::checksum_method) {
my $tlchecksum = TeXLive::TLCrypto::tlchecksum($xzfile);
if ($tlchecksum ne $checksum) {
- tlwarn("TLUtils::check_file: removing $xzfile, checksums differ:\n");
- tlwarn("TLUtils::check_file: TL=$tlchecksum, arg=$checksum\n");
+ tlwarn("TLUtils::check_file: checksums differ for $xzfile:\n");
+ tlwarn("TLUtils::check_file: tlchecksum=$tlchecksum, arg=$checksum\n");
+ (undef,$check_file_tmpdir) = File::temp::tempdir("tlcheckfileXXXXXXXX");
+ tlwarn("TLUtils::check_file: removing $xzfile, "
+ . "but saving copy in $check_file_tmpdir\n");
+ copy($xzfile, $check_file_tmpdir);
unlink($xzfile);
return;
} else {
@@ -2135,7 +2173,14 @@ sub check_file {
my $filesize = (stat $xzfile)[7];
if ($filesize != $checksize) {
tlwarn("TLUtils::check_file: removing $xzfile, sizes differ:\n");
- tlwarn("TLUtils::check_file: TL=$filesize, arg=$checksize\n");
+ tlwarn("TLUtils::check_file: tlfilesize=$filesize, arg=$checksize\n");
+ if (!defined($check_file_tmpdir)) {
+ # the tmpdir should always be undefined, since we shouldn't get
+ # here if the checksums failed, but test anyway.
+ $check_file_tmpdir = File::temp::tempdir("tlcheckfileXXXXXXXX");
+ tlwarn("TLUtils::check_file: saving copy in $check_file_tmpdir\n");
+ copy($xzfile, $check_file_tmpdir);
+ }
unlink($xzfile);
return;
}
@@ -2150,10 +2195,11 @@ sub check_file {
If necessary, downloads C$what>, and then unpacks it into C<$targetdir>.
C<@opts> is assigned to a hash and can contain the following
-options: C<tmpdir> (use this directory for downloaded files),
+keys: C<tmpdir> (use this directory for downloaded files),
C<checksum> (check downloaded file against this checksum),
C<size> (check downloaded file against this size),
C<remove> (remove temporary files after operation).
+
Returns a pair of values: in case of error return 0 and an additional
explanation, in case of success return 1 and the name of the package.
@@ -2203,18 +2249,18 @@ sub unpack {
# we are installing from the NET
# check for the presence of $what in $tempdir
if (-r $containerfile) {
- check_file($containerfile, $checksum, $size);
+ check_file_and_remove($containerfile, $checksum, $size);
}
# if the file is now not present, we can use it
if (! -r $containerfile) {
# try download the file and put it into temp
if (!download_file($what, $containerfile)) {
- return(0, "downloading did not succeed");
+ return(0, "downloading did not succeed (download_file failed)");
}
# remove false downloads
- check_file($containerfile, $checksum, $size);
+ check_file_and_remove($containerfile, $checksum, $size);
if ( ! -r $containerfile ) {
- return(0, "downloading did not succeed");
+ return(0, "downloading did not succeed (check_file_and_remove failed)");
}
}
} else {
@@ -2222,7 +2268,7 @@ sub unpack {
# copy it to temp
TeXLive::TLUtils::copy($what, $tempdir);
- check_file($containerfile, $checksum, $size);
+ check_file_and_remove($containerfile, $checksum, $size);
if (! -r $containerfile) {
return (0, "consistency checks failed");
}
@@ -3211,124 +3257,21 @@ sub parse_AddFormat_line {
return %ret;
}
-
=back
-=head2 Miscellaneous
-
-Ideas from Fabrice Popineau's C<FileUtils.pm>.
+=head2 Logging
-=over 4
+Logging and debugging messages.
-=item C<sort_uniq(@list)>
+=item C<logit($out,$level,@rest)>
-The C<sort_uniq> function sorts the given array and throws away multiple
-occurrences of elements. It returns a sorted and unified array.
+Internal routine to write message to both C<$out> (references to
+filehandle) and C<$::LOGFILE>, at level C<$level>, of concatenated items
+in C<@rest>. If the log file is not initialized yet, the message is
+saved to be logged later (unless the log file never comes into existence).
=cut
-sub sort_uniq {
- my (@l) = @_;
- my ($e, $f, @r);
- $f = "";
- @l = sort(@l);
- foreach $e (@l) {
- if ($e ne $f) {
- $f = $e;
- push @r, $e;
- }
- }
- return @r;
-}
-
-
-=item C<push_uniq(\@list, @new_items)>
-
-The C<push_uniq> function pushes the last argument @ITEMS to the $LIST
-referenced by the first argument, if they are not already in the list.
-
-=cut
-
-sub push_uniq {
- my ($l, @new_items) = @_;
- for my $e (@new_items) {
- if (! &member($e, @$l)) {
- push (@$l, $e);
- }
- }
-}
-
-=item C<member($item, @list)>
-
-The C<member> function returns true if the first argument
-is also inclued in the list of the remaining arguments.
-
-=cut
-
-sub member {
- my $what = shift;
- return scalar grep($_ eq $what, @_);
-}
-
-
-=item C<merge_into(\%to, \%from)>
-
-Merges the keys of %from into %to.
-
-=cut
-
-sub merge_into {
- my ($to, $from) = @_;
- foreach my $k (keys %$from) {
- if (defined($to->{$k})) {
- push @{$to->{$k}}, @{$from->{$k}};
- } else {
- $to->{$k} = [ @{$from->{$k}} ];
- }
- }
-}
-
-
-=item C<texdir_check($texdir)>
-
-Test whether installation with TEXDIR set to $texdir would succeed due to
-writing permissions.
-
-Writable or not, we will not allow installation to the root
-directory (Unix) or the root of a drive (Windows).
-
-=cut
-
-sub texdir_check {
- my $texdir = shift;
- return 0 unless defined $texdir;
- # convert to absolute, for safer parsing.
- # The return value may still contain symlinks,
- # but no unnecessary terminating '/'.
- $texdir = tl_abs_path($texdir);
- return 0 unless defined $texdir;
- # also reject the root of a drive,
- # assuming that only the canonical form of the root ends with /
- return 0 if $texdir =~ m!/$!;
- # win32: for now, reject the root of a samba share
- return 0 if win32() && $texdir =~ m!^//[^/]+/[^/]+$!;
- my $texdirparent;
- my $texdirpparent;
-
- return dir_writable($texdir) if (-d $texdir);
- ($texdirparent = $texdir) =~ s!/[^/]*$!!;
- #print STDERR "Checking $texdirparent".'[/]'."\n";
- return dir_creatable($texdirparent) if -d dir_slash($texdirparent);
- # try another level up the tree
- ($texdirpparent = $texdirparent) =~ s!/[^/]*$!!;
- #print STDERR "Checking $texdirpparent".'[/]'."\n";
- return dir_creatable($texdirpparent) if -d dir_slash($texdirpparent);
- return 0;
-}
-
-
-# no newlines or spaces are added, multiple args are just concatenated.
-#
sub logit {
my ($out, $level, @rest) = @_;
_logit($out, $level, @rest) unless $::opt_quiet;
@@ -3354,7 +3297,6 @@ sub _logit {
}
}
-
=item C<info ($str1, $str2, ...)>
Write a normal informational message, the concatenation of the argument
@@ -3378,7 +3320,6 @@ sub info {
}
}
-
=item C<debug ($str1, $str2, ...)>
Write a debugging message, the concatenation of the argument strings.
@@ -3400,7 +3341,6 @@ sub debug {
}
}
-
=item C<ddebug ($str1, $str2, ...)>
Write a deep debugging message, the concatenation of the argument
@@ -3496,7 +3436,7 @@ sub tldie {
}
}
-=item C<debug_hash ($label, hash))>
+=item C<debug_hash ($label, HASH)>
Write LABEL followed by HASH elements, all on one line, to stderr.
If HASH is a reference, it is followed.
@@ -3521,7 +3461,26 @@ sub debug_hash {
warn "$str\n";
}
-
+=item C<backtrace()>
+
+Return call(er) stack, as a string.
+
+=cut
+
+sub backtrace {
+ my $ret = "";
+
+ my ($line, $subr);
+ my $stackframe = 1; # skip ourselves
+ while ((undef,$filename,$line,$subr) = caller ($stackframe)) {
+ # the undef is for the package, which is already included in $subr.
+ $ret .= " -> ${filename}:${line}: ${subr}\n";
+ $stackframe++;
+ }
+
+ return $ret;
+}
+
=item C<process_logging_options ($texdir)>
This function handles the common logging options for TeX Live scripts.
@@ -3594,6 +3553,118 @@ sub process_logging_options {
}
}
+=back
+
+=head2 Miscellaneous
+
+Some ideas from Fabrice Popineau's C<FileUtils.pm>.
+
+=over 4
+
+=item C<sort_uniq(@list)>
+
+The C<sort_uniq> function sorts the given array and throws away multiple
+occurrences of elements. It returns a sorted and unified array.
+
+=cut
+
+sub sort_uniq {
+ my (@l) = @_;
+ my ($e, $f, @r);
+ $f = "";
+ @l = sort(@l);
+ foreach $e (@l) {
+ if ($e ne $f) {
+ $f = $e;
+ push @r, $e;
+ }
+ }
+ return @r;
+}
+
+
+=item C<push_uniq(\@list, @new_items)>
+
+The C<push_uniq> function pushes the last argument @ITEMS to the $LIST
+referenced by the first argument, if they are not already in the list.
+
+=cut
+
+sub push_uniq {
+ my ($l, @new_items) = @_;
+ for my $e (@new_items) {
+ if (! &member($e, @$l)) {
+ push (@$l, $e);
+ }
+ }
+}
+
+=item C<member($item, @list)>
+
+The C<member> function returns true if the first argument
+is also inclued in the list of the remaining arguments.
+
+=cut
+
+sub member {
+ my $what = shift;
+ return scalar grep($_ eq $what, @_);
+}
+
+=item C<merge_into(\%to, \%from)>
+
+Merges the keys of %from into %to.
+
+=cut
+
+sub merge_into {
+ my ($to, $from) = @_;
+ foreach my $k (keys %$from) {
+ if (defined($to->{$k})) {
+ push @{$to->{$k}}, @{$from->{$k}};
+ } else {
+ $to->{$k} = [ @{$from->{$k}} ];
+ }
+ }
+}
+
+=item C<texdir_check($texdir)>
+
+Test whether installation with TEXDIR set to $texdir would succeed due to
+writing permissions.
+
+Writable or not, we will not allow installation to the root
+directory (Unix) or the root of a drive (Windows).
+
+=cut
+
+sub texdir_check {
+ my $texdir = shift;
+ return 0 unless defined $texdir;
+ # convert to absolute, for safer parsing.
+ # The return value may still contain symlinks,
+ # but no unnecessary terminating '/'.
+ $texdir = tl_abs_path($texdir);
+ return 0 unless defined $texdir;
+ # also reject the root of a drive,
+ # assuming that only the canonical form of the root ends with /
+ return 0 if $texdir =~ m!/$!;
+ # win32: for now, reject the root of a samba share
+ return 0 if win32() && $texdir =~ m!^//[^/]+/[^/]+$!;
+ my $texdirparent;
+ my $texdirpparent;
+
+ return dir_writable($texdir) if (-d $texdir);
+ ($texdirparent = $texdir) =~ s!/[^/]*$!!;
+ #print STDERR "Checking $texdirparent".'[/]'."\n";
+ return dir_creatable($texdirparent) if -d dir_slash($texdirparent);
+ # try another level up the tree
+ ($texdirpparent = $texdirparent) =~ s!/[^/]*$!!;
+ #print STDERR "Checking $texdirpparent".'[/]'."\n";
+ return dir_creatable($texdirpparent) if -d dir_slash($texdirpparent);
+ return 0;
+}
+
=pod
This function takes a single argument I<path> and returns it with
@@ -4166,6 +4237,7 @@ sub parse_line {
return(@pieces);
}
+
=item C<mktexupd ()>
Append entries to C<ls-R> files. Usage example:
@@ -4263,7 +4335,7 @@ sub mktexupd {
return $hash;
}
-
+
=item C<check_sys_user_mode($user,$sys,$tmfc, $tmfsc, $tmfv, $tmfsv)>
=cut
@@ -4315,6 +4387,7 @@ sub setup_sys_user_mode {
return ($texmfconfig, $texmfvar);
}
+
=item C<prepend_own_path()>
Prepend the location of the TeX Live binaries to the PATH environment
@@ -4336,7 +4409,7 @@ sub prepend_own_path {
}
}
-
+
=item C<repository_to_array($r)>
Return hash of tags to urls for space-separated list of repositories
@@ -4377,6 +4450,7 @@ sub repository_to_array {
return %r;
}
+
=item C<encode_json($ref)>
Returns the JSON representation of the object C<$ref> is pointing at.
diff --git a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
index d30f3d87c5..c342dfca7a 100644
--- a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
+++ b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
@@ -18,8 +18,7 @@ $mirrors = {
'http://mirrors.cqu.edu.cn/CTAN/' => 1,
'http://mirrors.geekpie.club/CTAN/' => 1,
'http://mirrors.sjtug.sjtu.edu.cn/ctan/' => 1,
- 'http://mirrors.tuna.tsinghua.edu.cn/CTAN/' => 1,
- 'http://mirrors.ustc.edu.cn/CTAN/' => 1
+ 'http://mirrors.tuna.tsinghua.edu.cn/CTAN/' => 1
},
'Hong Kong' => {
'https://mirror-hk.koddos.net/CTAN/' => 1
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb b/systems/texlive/tlnet/tlpkg/texlive.tlpdb
index 803084a854..bad6e3316c 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/52467
+depend revision/52494
name 00texlive.image
category TLCore
-revision 52459
+revision 52492
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
@@ -356,6 +356,7 @@ runfiles size=4952
tlpkg/tlpsrc/a2ping.tlpsrc
tlpkg/tlpsrc/a4wide.tlpsrc
tlpkg/tlpsrc/a5comb.tlpsrc
+ tlpkg/tlpsrc/aaai-named.tlpsrc
tlpkg/tlpsrc/aastex.tlpsrc
tlpkg/tlpsrc/abbr.tlpsrc
tlpkg/tlpsrc/abc.tlpsrc
@@ -4049,7 +4050,7 @@ depend opt_w32_multi_user:1
name 00texlive.installer
category TLCore
-revision 52438
+revision 52491
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
@@ -6506,6 +6507,22 @@ catalogue-license pd
catalogue-topics geometry
catalogue-version 4
+name aaai-named
+category Package
+revision 52470
+shortdesc BibTeX style for AAAI
+relocated 1
+longdesc A BibTeX style derived from the standard master, presumably for
+longdesc use with the aaai package.
+containersize 5172
+containerchecksum bb851e6bb3d9c2efd8d9abd32056d0853e320ee7f495b3c595d6a112d5e66bdbcb24107f741249fdfde350dead6763484cc412d380188d29155649b4076c4e77
+runfiles size=6
+ RELOC/bibtex/bst/aaai-named/aaai-named.bst
+catalogue-ctan /biblio/bibtex/contrib/misc/aaai-named.bst
+catalogue-date 2016-06-24 19:18:15 +0200
+catalogue-license other-free
+catalogue-topics bibtex-sty
+
name aastex
category Package
revision 51836
@@ -30502,16 +30519,16 @@ catalogue-version 0.1
name beebe
category Package
-revision 52403
+revision 52485
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 873048
-containerchecksum 12e064422d57b50d7c5600faee4f95ccfd14503da70e8540f72bc8d5de46fdffb62307a76c569934210c84de55b0eb5e625fef5df900a9848646956b0dbdb60c
-runfiles size=2418
+containersize 872780
+containerchecksum bd74ae8511f1ec37fbcc2e622cf6cba1ff45c6afe9f5e164954a2e0b9a2ef59329200bc14197de460c0858224cc2597158113ac41ec86341de05a39c8588b555
+runfiles size=2412
RELOC/bibtex/bib/beebe/epodd.bib
RELOC/bibtex/bib/beebe/font.bib
RELOC/bibtex/bib/beebe/printing-history.bib
@@ -30525,7 +30542,6 @@ runfiles size=2418
RELOC/bibtex/bib/beebe/tugboat.bib
RELOC/bibtex/bib/beebe/type.bib
RELOC/bibtex/bib/beebe/typeset.bib
- RELOC/bibtex/bst/beebe/aaai-named.bst
RELOC/bibtex/bst/beebe/abstract.bst
RELOC/bibtex/bst/beebe/annotate.bst
RELOC/bibtex/bst/beebe/annotation.bst
@@ -30573,8 +30589,8 @@ runfiles size=2418
RELOC/tex/generic/beebe/tugboat.def
catalogue-contact-home http://www.math.utah.edu/~beebe/
catalogue-ctan /info/biblio
-catalogue-date 2017-04-18 05:31:40 +0200
-catalogue-license noinfo
+catalogue-date 2019-10-21 05:27:57 +0200
+catalogue-license pd
catalogue-topics bibtex-lib
name begingreek
@@ -40669,7 +40685,7 @@ runfiles size=1
name cabin
category Package
-revision 52445
+revision 52475
shortdesc A humanist Sans Serif font, with LaTeX support
relocated 1
longdesc Cabin is a humanist sans with four weights and true italics and
@@ -40683,10 +40699,10 @@ longdesc the user's view of all those font weights. An sfdefault option
longdesc is provided to enable Cabin as the default text font. The
longdesc fontaxes package is required for use with [pdf]LaTeX.
execute addMap cabin.map
-containersize 1906352
-containerchecksum 228157eb271858c1ab038b61e5f7d2cfc19f9c8416665411a2b471d1224b104f63b6ed152dcf1b27f1cff21565d35e17fad6b8319d6058c2e0643ab1708802b5
-doccontainersize 123596
-doccontainerchecksum 28dd256a527044abd3aa1eb0d68bdb5aeb6a1b3e95192a76c97f7cafd1b62466163d2afaef396a6dd0acf253b777774a293e4891caf69c458a319f6934c09443
+containersize 1905632
+containerchecksum b5fac4c3439798f21dc67f7ccbdf51a48d6946438dbd5e15e4432faacdd5231e158615c2cfe1617347473109a783dd49bfbd613613431e8e2951ca487482b7f4
+doccontainersize 123604
+doccontainerchecksum f76c3faf1bd7084f7697a219d8b12751a820f6d0cfc60c2390a2d2d8c07dce768381dd4e8b018614a73213ad5f07950a069d9646e96418d61ab10e8baee86949
docfiles size=34
RELOC/doc/fonts/cabin/OFL.txt
RELOC/doc/fonts/cabin/README details="Readme (primary documentation)"
@@ -41310,7 +41326,7 @@ runfiles size=1875
RELOC/tex/latex/cabin/TS1Cabin-TLF.fd
RELOC/tex/latex/cabin/cabin.sty
catalogue-ctan /fonts/cabin
-catalogue-date 2019-10-18 21:52:02 +0200
+catalogue-date 2019-10-21 17:34:25 +0200
catalogue-license ofl
catalogue-topics font font-sans font-type1 font-otf
@@ -60709,12 +60725,13 @@ containerchecksum cfe97f315159b9f5732cdc417b16c18d37443d13389abee846d690c13bf5ea
name collection-bibtexextra
category Collection
-revision 50619
+revision 52470
shortdesc BibTeX additional styles
relocated 1
longdesc Additional BibTeX styles and bibliography data(bases), notably
longdesc including BibLaTeX.
depend collection-latex
+depend aaai-named
depend aichej
depend ajl
depend amsrefs
@@ -60850,8 +60867,8 @@ depend vak
depend windycity
depend xcite
depend zootaxa-bst
-containersize 1140
-containerchecksum b1582ade8d050be6c53fcdec2a03f2c8c5d9aa661bfc5fba874221fb2fdefa8382eba0b6d54aa43eed6916349eb1b33a94c7f9235d49951438e206625d5c6ee3
+containersize 1148
+containerchecksum 44b281bb1d4f2f96008f4efff2bebe7560bba48c4dad9e87001b78bde1ad5ed78282bffaadd19b2d02bdd00f0b97c58968d00b17b7cf339b71d30ea50e69888e
name collection-binextra
category Collection
@@ -79928,7 +79945,7 @@ catalogue-version 2.60
name datetime2
category Package
-revision 48236
+revision 52480
shortdesc Formats for dates, times and time zones
relocated 1
longdesc This package provides commands for formatting dates, times and
@@ -79942,10 +79959,10 @@ longdesc independently maintained and installed modules. The
longdesc datetime2-calc package uses the pgfcalendar package (part of
longdesc the PGF/TikZ bundle). This package replaces datetime.sty which
longdesc is now obsolete.
-containersize 8660
-containerchecksum 876b16d0fe08584c02804e93bdce6029376e1c37b3c8a3a0a5ae4ce93cebed615b077d042cff0a658f0f2c65745fd22b40f18c4db87ae73ecf3844a699f09e81
-doccontainersize 1013464
-doccontainerchecksum 37fb08d1d23645a53a6d0c76aaeaf8df34de9ee148aac23723adc892e026a5daf74c446f1ef747a62175984dd601560a1338fc37ec6600d9d0772237e60b1d21
+containersize 8672
+containerchecksum 24f15e2ed43fec86f1ee17caa9834d4dda579a6126c94a99fc21f1c0589e1f381a9283bcdc2c353cd557ae41ec1f57fdd69c49ca794675ae3b077e541c62ed76
+doccontainersize 1012948
+doccontainerchecksum 5fe9d881b62160a399d4b406b97cef888285959e4b4e920a5a0c57813b645a4eda75ff841e89d9ae4eaa5b52ed3b515e531dce1f5058120ef76701b1f27caaa5
docfiles size=265
RELOC/doc/latex/datetime2/CHANGES
RELOC/doc/latex/datetime2/README details="Readme"
@@ -79964,8 +79981,8 @@ docfiles size=265
RELOC/doc/latex/datetime2/samples/datetime2-sample-styles.tex
RELOC/doc/latex/datetime2/samples/datetime2-sample-xe.pdf
RELOC/doc/latex/datetime2/samples/datetime2-sample-xe.tex
-srccontainersize 50740
-srccontainerchecksum 42f6ef0eb78480c10ea1dfa1ba3733f48fb5f4a639ffc11c11d264ebb46845823224604b7c43b4120da6ec0534c2d8eb63c327825c074c7ffe01ee1bad3137c2
+srccontainersize 50760
+srccontainerchecksum acf0a8f6b76865b2697e721157d0bf0a049f00333abe226d78dc94d3b4498f8286992f554496f09f7fde1a17410a1275ae6e32cca988a98484ec865c4705a87b
srcfiles size=78
RELOC/source/latex/datetime2/datetime2.dtx
RELOC/source/latex/datetime2/datetime2.ins
@@ -79974,10 +79991,10 @@ runfiles size=17
RELOC/tex/latex/datetime2/datetime2.sty
catalogue-contact-home http://www.dickimaw-books.com/faqs/datetime2faq.html
catalogue-ctan /macros/latex/contrib/datetime2
-catalogue-date 2018-07-20 14:37:08 +0200
+catalogue-date 2019-10-21 13:05:17 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
-catalogue-version 1.5.3
+catalogue-version 1.5.4
name datetime2-bahasai
category Package
@@ -80289,7 +80306,7 @@ catalogue-version 1.0
name datetime2-english
category Package
-revision 39991
+revision 52479
shortdesc English language module for the datetime2 package
relocated 1
longdesc This module provides the following styles that can be set using
@@ -80303,18 +80320,18 @@ longdesc of Australia) en-NZ (English - New Zealand) en-GG (English -
longdesc Bailiwick of Guernsey) en-JE (English - Bailiwick of Jersey)
longdesc en-IM (English - Isle of Man) en-MT (English - Republic of
longdesc Malta) en-IE (English - Republic of Ireland)
-containersize 5820
-containerchecksum 1385ea09d797877ea45dcc37e864c5e695d8eb2e210fabe33e6c13ab221cfeb5c55bb2d95ddd9db5c07653ac882375426c7694dd8d3da6bf77ac8f3fb798e02e
-doccontainersize 639120
-doccontainerchecksum 21fa34d1dc4fc5e082bec3c6a82a29683c0ae6515cc8ee3f07c4cdb3c01639fb05e033e40c9aa4e8489789eefeb904e5b3c2e5cbf4501db26477db34f5e39219
+containersize 5892
+containerchecksum 2faf2dbcc9e49a9c30e5af599a26bb6925c6cb6831c1eb38bb58e08f50314cde1f3ebed343fc43ff50c6338a089caf90b8aaa53093f1284c583ba217c25cafa0
+doccontainersize 638380
+doccontainerchecksum ff904eb3279062f6573aa0190bd2f7426a18f4b67564b9b10673a88c4583c580cb88b33ccbfc0c8a979b10f6d2379bd22ad8483f19b1c4baf3f66e06d2ec52f4
docfiles size=161
RELOC/doc/latex/datetime2-english/CHANGES
RELOC/doc/latex/datetime2-english/README details="Readme"
RELOC/doc/latex/datetime2-english/datetime2-english-sample.pdf details="Sample article"
RELOC/doc/latex/datetime2-english/datetime2-english-sample.tex
RELOC/doc/latex/datetime2-english/datetime2-english.pdf details="Package documentation"
-srccontainersize 13384
-srccontainerchecksum 20cfbd776fc91c547fef6dddad5c87b6abd49273607fe854b6dd453602833e7bcacd138e92c3c567c80cc8a45b1176160cd1cb0334bd6dbc55ff8477156cfcc9
+srccontainersize 13440
+srccontainerchecksum f5177d83f75709135356331615baa47cdea2a01fc706bb507391c40866b1d072260bbba4ec33fe88ce44e9995bec77941d636e5ec6132b6c4f07d2f1f25fffae
srcfiles size=36
RELOC/source/latex/datetime2-english/datetime2-english.dtx
RELOC/source/latex/datetime2-english/datetime2-english.ins
@@ -80332,10 +80349,10 @@ runfiles size=26
RELOC/tex/latex/datetime2-english/datetime2-english-base.ldf
RELOC/tex/latex/datetime2-english/datetime2-english.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-english
-catalogue-date 2016-06-24 19:18:15 +0200
+catalogue-date 2019-10-21 13:10:15 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
-catalogue-version 1.04
+catalogue-version 1.05
name datetime2-esperanto
category Package
@@ -216154,7 +216171,7 @@ binfiles arch=x86_64-solaris size=310
name onedown
category Package
-revision 50104
+revision 52474
shortdesc Typeset Bridge Diagrams
relocated 1
longdesc This is a comprehensive package to draw all sorts of bridge
@@ -216167,11 +216184,11 @@ longdesc Annotations to card and bidding diagrams. Automated check on
longdesc consistency of suit and hands. Multilingual output of bridge
longdesc terms. Extensive documentation: User manual, Reference manual,
longdesc and Examples.
-containersize 17336
-containerchecksum e19fb9cccc481df8609b32fe79de5fcf5f963c0908e9ef7316b9d363d66f1e39bc3fcf85df9ca3f280d948b8ed6d59bcd646a1a11647c366a96764f4271153a4
-doccontainersize 2058648
-doccontainerchecksum 89c1065b82d603f3ad337519fc92866686457463152f06fd1c9e2aacc43a6d49cf28c9c2bed11af67d623ec945dfd59269baa5b63a5f3c15bdba682c0fa12894
-docfiles size=535
+containersize 17868
+containerchecksum b8db64e2133791cd41cae557d2110e1966ae824e3da61a33ce494a27a6774a42059c9c83cfbdb6cad80199bbd1f44a41ec03ebdc8219e23b13cd6d42dee8ae09
+doccontainersize 1028140
+doccontainerchecksum 6fbd764d287e56f56e36a82bba9adabb5028a0fa7578584700d7a56d9d958d30a8a9a29a5b9f346af0025f01a26e5a66c8ef34e533d96765148f6996543572e3
+docfiles size=281
RELOC/doc/latex/onedown/README details="Readme"
RELOC/doc/latex/onedown/examples/Bidding.tex
RELOC/doc/latex/onedown/examples/Compass.tex
@@ -216188,21 +216205,19 @@ docfiles size=535
RELOC/doc/latex/onedown/examples/bidNE.tex
RELOC/doc/latex/onedown/examples/bidNS.tex
RELOC/doc/latex/onedown/examples/bidNW.tex
- RELOC/doc/latex/onedown/examples/onedown-examples.pdf details="Examples of use"
RELOC/doc/latex/onedown/examples/onedown-examples.tex
- RELOC/doc/latex/onedown/examples/onedown-ref.pdf details="Reference Guide"
RELOC/doc/latex/onedown/examples/onedown-ref.tex
RELOC/doc/latex/onedown/examples/showAll.tex
RELOC/doc/latex/onedown/examples/showNS-align.tex
RELOC/doc/latex/onedown/examples/showNS-warn-I.tex
RELOC/doc/latex/onedown/examples/showNS-warn-II.tex
RELOC/doc/latex/onedown/onedown.pdf details="Package documentation"
-srccontainersize 48260
-srccontainerchecksum 6ef509399c88093917715fc32b725d3ee671be045a8ef70ae13a89345a9efd0bdf53698a2b86abbedacc1a4d21e141a363b31b53f70bd9a9c26e11333b698922
+srccontainersize 48908
+srccontainerchecksum b2f65a43c2775c9ffeb245119f7732a0567f1dd66aca4d32627d58c81f50be67fe79e03fdc1024225356d86ff1aab3f35fab533f67566a1a2300973beec9caa3
srcfiles size=54
RELOC/source/latex/onedown/onedown.dtx
RELOC/source/latex/onedown/onedown.ins
-runfiles size=35
+runfiles size=37
RELOC/tex/latex/onedown/ODw-danish.trsl
RELOC/tex/latex/onedown/ODw-dutch.trsl
RELOC/tex/latex/onedown/ODw-english.trsl
@@ -216210,14 +216225,15 @@ runfiles size=35
RELOC/tex/latex/onedown/ODw-french.trsl
RELOC/tex/latex/onedown/ODw-german.trsl
RELOC/tex/latex/onedown/ODw-norwegian.trsl
+ RELOC/tex/latex/onedown/ODw-spanish.trsl
RELOC/tex/latex/onedown/ODw-swedish.trsl
RELOC/tex/latex/onedown/ODw-turkish.trsl
RELOC/tex/latex/onedown/onedown.sty
catalogue-ctan /macros/latex/contrib/onedown
-catalogue-date 2019-02-23 19:45:42 +0100
+catalogue-date 2019-10-21 14:49:45 +0200
catalogue-license lppl1.3
catalogue-topics games
-catalogue-version 1.3
+catalogue-version 1.4
name onlyamsmath
category Package
@@ -228299,7 +228315,7 @@ catalogue-version 0.1
name platex
category Package
-revision 52243
+revision 52476
shortdesc pLaTeX2e and miscellaneous macros for pTeX
longdesc The bundle provides pLaTeX2e and miscellaneous macros for pTeX
longdesc and e-pTeX. This is a community edition forked from the
@@ -228315,10 +228331,10 @@ depend latex-base-dev
depend platex.ARCH
execute AddFormat name=platex engine=eptex options="*platex.ini" patterns=language.dat fmttriggers=babel,cm,hyphen-base,latex-fonts,ptex-fonts,latex
execute AddFormat name=platex-dev engine=eptex options="*platex.ini" patterns=language.dat fmttriggers=babel,cm,hyphen-base,latex-fonts,ptex-fonts,latex-base-dev
-containersize 36052
-containerchecksum dc0704d481a209545852edd6e4381d3d1bbd35173a3e67010f396093725d7e379aff68507898246ae0741658ca957665c9bcf5a6163648542a3585e8e8752240
-doccontainersize 1583848
-doccontainerchecksum b762310465dd6cf147d5f5342115a57124cbbfc708e1a48caf8ac57996a5213499f9154c0c392f63766848f677f617d3014a7aca404ae5481c3fa0206b87ab39
+containersize 36096
+containerchecksum 7dd812e8f69c9236afff8cd1f61e4d2b99f0ca604a07edea915e50491f3fe1cbae6ea4acdabfc592f89136f201527e5fadf42699d9c547664d642d35217f97e7
+doccontainersize 1586492
+doccontainerchecksum e18cb575b3d9e46a7430435aec5303e907a6ca6244f41d4ff9a3bbde8ac7ded6bfed84fe2644ad7d49f017d301d1d8400cfbb73711bdbbd430341ad0107d1cc6
docfiles size=403
texmf-dist/doc/man/man1/platex.1
texmf-dist/doc/man/man1/platex.man1.pdf
@@ -228329,8 +228345,8 @@ docfiles size=403
texmf-dist/doc/platex/base/platex.pdf details="Package documentation" language="ja"
texmf-dist/doc/platex/base/platexrelease.pdf
texmf-dist/doc/platex/base/pldoc.pdf
-srccontainersize 120452
-srccontainerchecksum cc1c90a007cda5d8fa5ddbf42230a23ab3249c71d70467b94aeaabbe5e42ca80e370fd2abe350ff494f8b17edd13c47d8e8ade18b47a46ad34c578a8baf06a6c
+srccontainersize 120776
+srccontainerchecksum 7f3be01cde496fb129443fc18b628936663bdf54e680db1aa90d9652e025d5452ea3939f66747f69918aac04097f6006f57bc4704ad551a037fa7b31f34f3fd9
srcfiles size=179
texmf-dist/source/platex/base/Makefile
texmf-dist/source/platex/base/jclasses.dtx
@@ -228369,7 +228385,7 @@ srcfiles size=179
texmf-dist/source/platex/base/plnewsc12.tex
texmf-dist/source/platex/base/plnewsc13.tex
texmf-dist/source/platex/base/plvers.dtx
-runfiles size=141
+runfiles size=142
texmf-dist/tex/platex/base/exppl2e.sty
texmf-dist/tex/platex/base/jarticle.cls
texmf-dist/tex/platex/base/jarticle.sty
@@ -228414,7 +228430,7 @@ runfiles size=141
texmf-dist/tex/platex/config/platex.ini
catalogue-contact-repository https://github.com/texjporg/platex
catalogue-ctan /language/japanese/platex
-catalogue-date 2019-10-01 15:46:56 +0200
+catalogue-date 2019-10-21 15:32:40 +0200
catalogue-license bsd3
catalogue-topics format class japanese
@@ -281984,15 +282000,15 @@ docfiles size=572
name texlive-docindex
category TLCore
-revision 52453
+revision 52487
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 9ff87925bda9312e8796e47d08049c7016a59a8da7f6d0cd302c2a44cc7a66af23778cd36d89cb13290377f1acbefc7cd63b95482edd56b1ffe098d2ee54be36
-doccontainersize 155240
-doccontainerchecksum 481efafbe81ce12f93d93947e9a7e1702d2eb6e102bedf735beedde97c9ac6c985f3d2b6a53d4bc107fce5cb3cb5d40f688ca37e312f9daa26fde120820d502b
+containerchecksum 6169e1e9b3e7e96f2d2426c9ba0751cb9988038d4ad9247e21ce85381eed914cba63970c7e5b04046b17391972e71cbe6dfe54c6d87a8b361a97d28618a9678d
+doccontainersize 155288
+doccontainerchecksum e431c27f16a877c57432661156f451b5ecb6801e38986b4fa408034dbecf4d9b9bfbb7ac449f2bd0a2f56fb63b9469f5fba188d35aeed480933f7cf51f595c56
docfiles size=304
doc.html
runfiles size=270
@@ -282141,15 +282157,15 @@ docfiles size=430
name texlive-msg-translations
category TLCore
-revision 52439
+revision 52488
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 140568
-containerchecksum 33f39f6d1e4f18b1772722cc1978fc4876067e58ddcf539a473ab94ac9f299dbde7996dba9ae519e383ee2880107875426d277cc11d6a039fa08c9060a5a7487
-runfiles size=391
+containersize 142280
+containerchecksum 0ba47a2d80b71492bf62df4eee9514f75aa572097dfdb4ef415bc9c952b31b599ef58de3d2ac48b93c6ffa3993f3d8d5e430015b5fa28a0bdcd85df172e65498
+runfiles size=393
tlpkg/translations/README
tlpkg/translations/cs.po
tlpkg/translations/de.po
@@ -282209,17 +282225,17 @@ docfiles size=503
name texlive-scripts
category TLCore
-revision 52438
+revision 52491
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 85452
-containerchecksum b87f55371564ec5961d1f9d6a70eb5e4ba432812d510dd714660d85f9e4a5094bddf7fc3a5f49de0d346c2943dc3dd8a426eb59af525c0c1816fefddf768d36f
+containersize 85456
+containerchecksum 5d431afa0050a75a2952d7841d0a12470bb865d13df77da41124df45d9d428abeffd3ca283a68ef2c1131d2afb6477e77ed2b2e6670ca7be09e1faae26d28ddc
doccontainersize 51244
-doccontainerchecksum ff2f88ed2b4d4b7070df6c9d683aab9d520335cf96d20b61a17173aa80a2615ad9b38a71400d613748eac71163669e7e946d37f472139555d82fc27863259b3e
+doccontainerchecksum 1bfaf0c788c4e64d5d866a165b58f968208929a0318061c7c1662087dcfe852c21bad696da5c0d507c9114a307ffb9f24d2dd220721bbedeb67fe11a0f34aa9c
docfiles size=20
texmf-dist/doc/man/man1/install-tl.1
texmf-dist/doc/man/man1/install-tl.man1.pdf
@@ -282404,23 +282420,20 @@ binfiles arch=x86_64-solaris size=2
name texlive-sr
category TLCore
-revision 47370
+revision 52494
shortdesc TeX Live manual (Serbian)
relocated 1
containersize 276
-containerchecksum 65cbac03143ec8b2881ba02b2827867848ba7b034745e2c3e5e793cb5a950c897d2903c1865cd42fbbfa65cea79cfa4b819be781027691be1467375598a6388d
-doccontainersize 1168828
-doccontainerchecksum fdff59485fde0a134c78c506969b8c29bf82d30b3d2fa9b8137ee7efed7786e8aec9c79f5a1e000ce04ebd5bbe805885f8952234427a411021b9ef3988b11234
-docfiles size=469
+containerchecksum 95d30458e64f61c89b015eea0dd8fec741ff3cdd4360bdbb65f0c8c8346b11a0c61d2b98fcc63ea62d621389411d257da4da0126a40dd9880ad557407fecdc25
+doccontainersize 1087432
+doccontainerchecksum 6965ea95aaedf7ed6c5cf55aa0524bb2ddaccb218c630c600e7942ac3f5a3609e1744e4a0e31e7e875550f436d5cde57f5953dacedda861f88543c915866bfea
+docfiles size=442
RELOC/doc/texlive/texlive-sr/Makefile
RELOC/doc/texlive/texlive-sr/README-SR.txt
- RELOC/doc/texlive/texlive-sr/images/tl2018-install-tl-collections-freebsd-sr.png
- RELOC/doc/texlive/texlive-sr/images/tl2018-install-tl-expert-gui-freebsd-sr.png
- RELOC/doc/texlive/texlive-sr/images/tl2018-install-tl-first.stage-win32-sr.png
- RELOC/doc/texlive/texlive-sr/images/tl2018-install-tl-wizard-win32-sr.png
- RELOC/doc/texlive/texlive-sr/images/tl2018-tlmgr-main-screen-freebsd-sr.png
- RELOC/doc/texlive/texlive-sr/images/tl2018-tlmgr-options-freebsd-sr.png
- RELOC/doc/texlive/texlive-sr/images/tl2018-tlmgr-paper-options-freebsd-sr.png
+ RELOC/doc/texlive/texlive-sr/images/tl2019-install-tl-advanced-sr.png
+ RELOC/doc/texlive/texlive-sr/images/tl2019-install-tl-basic-sr.png
+ RELOC/doc/texlive/texlive-sr/images/tl2019-install-tl-collections-sr.png
+ RELOC/doc/texlive/texlive-sr/images/tl2019-tlmgr-tl-old-gui-sr.png
RELOC/doc/texlive/texlive-sr/texlive-sr.css
RELOC/doc/texlive/texlive-sr/texlive-sr.html
RELOC/doc/texlive/texlive-sr/texlive-sr.pdf
@@ -302221,7 +302234,7 @@ runfiles size=7998
name uplatex
category Package
-revision 52253
+revision 52477
shortdesc pLaTeX2e and miscellaneous macros for upTeX
longdesc The bundle provides pLaTeX2e macros for upTeX by Takuji Tanaka.
longdesc This is a community edition syncing with platex. The bundle
@@ -302238,11 +302251,11 @@ depend latex-base-dev
depend uplatex.ARCH
execute AddFormat name=uplatex engine=euptex options="*uplatex.ini" patterns=language.dat fmttriggers=babel,cm,hyphen-base,latex-fonts,uptex-fonts,platex,latex
execute AddFormat name=uplatex-dev engine=euptex options="*uplatex.ini" patterns=language.dat fmttriggers=babel,cm,hyphen-base,latex-fonts,uptex-fonts,platex,latex-base-dev
-containersize 14752
-containerchecksum c4838a2c99df646961f6be9e8ba051a97d5943f1f3ba25aeaf668c5924d3923c888d02a1b7ca4317d58777cb5cd17b6598e060583021e0a27f8a06ae586bd0ef
-doccontainersize 883968
-doccontainerchecksum c50305ae9898889f877de69cdfeb79eb08bdfe806976c21053094c1b7b0203ad83356b8f130c68ff68c649496c3685ffd35952f2e10dd6eaa30de41094d68193
-docfiles size=228
+containersize 14748
+containerchecksum 9674abf28a3f4f217b339a0e8f3319b0af160bb8e3f798cd909bb7677bff2bc80e3e2d52a42fff51e972630f1568a64b89940fad1011a65ffb94ebe66156981c
+doccontainersize 880644
+doccontainerchecksum 9adf24469b6a4ea875f41bb145bc4d4c33f922647fb888efc967b00aca50fde0299a5eaed27afeed0fe7f35d52ec8ba11e57eb3c6f16a122778a5bc0ed431d0e
+docfiles size=229
texmf-dist/doc/man/man1/uplatex.1
texmf-dist/doc/man/man1/uplatex.man1.pdf
texmf-dist/doc/uplatex/base/LICENSE
@@ -302251,8 +302264,8 @@ docfiles size=228
texmf-dist/doc/uplatex/base/uplatex-en.pdf details="Package documentation"
texmf-dist/doc/uplatex/base/uplatex.pdf details="Package documentation" language="ja"
texmf-dist/doc/uplatex/base/upldoc.pdf
-srccontainersize 50364
-srccontainerchecksum 0e5f6088d7bdfad79a26d5a99025b0fedd0a85bd461f24c2708dcacc7cf49578c42bef30f3682fc1db05d3e3c09dc572d5119f024c6e48d174372bdf3e49ef8a
+srccontainersize 50568
+srccontainerchecksum a5ce35a584f72305f73b21aa0e5d941dfde13e357cb54ce64b14430332d53f4d045050be4e8b0a5578f73ec776daa4022fa7e4899ea43b9fe35a4334081e9900
srcfiles size=69
texmf-dist/source/uplatex/base/Makefile
texmf-dist/source/uplatex/base/ujclasses.dtx
@@ -302294,7 +302307,7 @@ runfiles size=94
texmf-dist/tex/uplatex/config/uplatex.ini
catalogue-contact-repository https://github.com/texjporg/uplatex
catalogue-ctan /language/japanese/uplatex
-catalogue-date 2019-10-01 15:59:14 +0200
+catalogue-date 2019-10-21 15:45:41 +0200
catalogue-license bsd3
catalogue-topics format class japanese
@@ -309796,7 +309809,7 @@ catalogue-version 0.2.0
name witharrows
category Package
-revision 51793
+revision 52478
shortdesc "Aligned" math environments with arrows for comments
relocated 1
longdesc This package provides an environment WithArrows which is
@@ -309806,28 +309819,28 @@ longdesc the alignment. These arrows are usually used to give
longdesc explanations concerning the mathematical calculus presented.
longdesc The package requires the following other LaTeX packages: expl3,
longdesc footnote, l3keys2e, tikz, and xparse.
-containersize 12960
-containerchecksum 46c4b5f26c3d8ac3e44380b4d70e6364cda313f63c4ff51078abbc09086fc04f0eca21bc2240dcb0f0de88a3f7156c31864673b11954039a758d3daf02cadec9
-doccontainersize 832740
-doccontainerchecksum b8692bc22aa753a964380bcbaa61f10daf85cbc7215ee878c2616116711ec8c28d7bb361d12fbb40dc2d177242875135b914f298b966221de1a75dd6ce2068c5
-docfiles size=241
+containersize 13296
+containerchecksum 40e5afad8a67a70c4e968b6a129473bbb4a0311ba3e4a6d50927e8ef814596c3dc6e265ba671b978419edec92f00216f803fd3c3080a941feb4f70f947a2ac54
+doccontainersize 846864
+doccontainerchecksum 350876f44ba5555b3465f0024f2d6046b0cf92060e251b64e4ba9d1c008d35eb9912073dc9939cb3d6dc26088d5859a0e6faa9a44b789f958dd98569d6e9ff8f
+docfiles size=246
RELOC/doc/generic/witharrows/README.md details="Readme"
- RELOC/doc/generic/witharrows/witharrows-french.pdf details="Package documentation in French"
+ RELOC/doc/generic/witharrows/witharrows-french.pdf details="Package documentation (French)" language="fr"
RELOC/doc/generic/witharrows/witharrows-french.tex
- RELOC/doc/generic/witharrows/witharrows.pdf details="Package documentation"
+ RELOC/doc/generic/witharrows/witharrows.pdf details="Package documentation (English)"
RELOC/doc/generic/witharrows/witharrows.tex
-srccontainersize 46836
-srccontainerchecksum dfb46c1bac752aa91bea49d8029aa5abc0f5f9c6815f7eaf0e1b70cd992d7dc3c8d182c258e5a8fc6da470326ad760ce0331b83e70f6c066f8ad76b0642834e4
-srcfiles size=61
+srccontainersize 47736
+srccontainerchecksum 1358875533bf533e4f7adeda14e705ffde423f3f82eed5efa62e584133948f599fc1ecec5fe4f8253c07fc4bd27116be029d68b96289ef0c3c5550570ef76aeb
+srcfiles size=63
RELOC/source/generic/witharrows/witharrows.dtx
RELOC/source/generic/witharrows/witharrows.ins
runfiles size=19
RELOC/tex/generic/witharrows/witharrows.sty
catalogue-ctan /macros/generic/witharrows
-catalogue-date 2019-07-30 16:57:21 +0200
+catalogue-date 2019-10-21 19:13:36 +0200
catalogue-license lppl1.3
catalogue-topics maths maths-syseqn pgf-tikz expl3
-catalogue-version 2.0
+catalogue-version 2.1
name wnri
category Package
@@ -314543,7 +314556,7 @@ catalogue-version 1.301
name xkcdcolors
category Package
-revision 52459
+revision 52481
shortdesc xkcd names of colors
relocated 1
longdesc In the year 2010, Randall Munroe on posted a really fun and
@@ -314553,13 +314566,14 @@ longdesc Afterward, he processed the data and sorted the names for each
longdesc color by popularity --- that means, how many people gave the
longdesc same name to the same color. This package makes the collected
longdesc color names usable with LaTeX.
-containersize 8596
-containerchecksum 4dd600375c072d519022aea2378424d8c3d400f7d5625cf05201673e4b958b3121875fb7ad6ba280101b54a2621caa8430a530837cbbb99d6da53c0e05a0b88b
-doccontainersize 212576
-doccontainerchecksum d41c35039f22a7700eac1f241efe5b8854318dafe78ba6124ef95a4cdd2b1e23e6e0b9100140aae79b730d3bbd374320a14412cb108a6bf8a29beaa8a1cab737
-docfiles size=57
+containersize 8692
+containerchecksum 78e9d390e64c5f35a35f25475aab9fd4308cae2c495cd8181980799819a374f7460bf41f246d91ac297b96f804f3327e6b09e84b255b362b1f285873ddd5b107
+doccontainersize 218128
+doccontainerchecksum dba85b139b2146562acb51b64c8b0c7e4aef799e4bf25e131896c6143afd29d0279cd130db711d34fca06597792eef7f92be4ca10d34eb27f3da11a65b8713b0
+docfiles size=62
RELOC/doc/latex/xkcdcolors/README.md details="Readme"
- RELOC/doc/latex/xkcdcolors/xkcdcolors-manual.pdf
+ RELOC/doc/latex/xkcdcolors/lppl-1-3c_license.txt
+ RELOC/doc/latex/xkcdcolors/xkcdcolors-manual.pdf details="Package documentation"
RELOC/doc/latex/xkcdcolors/xkcdcolors-manual.tex
runfiles size=6
RELOC/tex/latex/xkcdcolors/xkcdcolors.sty
@@ -314567,10 +314581,10 @@ catalogue-contact-bugs https://github.com/Rmano/xkcdcolors/issues
catalogue-contact-home http://rlog.rgtti.com/2015/10/23/xkcd-color-list-for-latex-users/
catalogue-contact-repository https://github.com/Rmano/xkcdcolors
catalogue-ctan /macros/latex/contrib/xkcdcolors
-catalogue-date 2019-10-20 20:41:59 +0200
-catalogue-license lppl
+catalogue-date 2019-10-22 05:17:02 +0200
+catalogue-license lppl1.3ccc0
catalogue-topics amusements
-catalogue-version 1.0
+catalogue-version 1.0.1
name xkeyval
category Package
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
index 01a0249622..348033b05f 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
@@ -1 +1 @@
-346f6e44d67a096736321b826690c95e texlive.tlpdb
+380249a0b630e72cd76efbbb5ed2302b texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
index a9f838fe3c..2c68fbb094 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
@@ -1 +1 @@
-07f64d27563995d316e69f911a99daf74a363a8f6e290d9bced3a156a01c86100cf04870bcd87f25ecc8269e30acdaae583c7e2540a9548083d80f61d6ef7d9b texlive.tlpdb
+3e02c113bb3275c98ebabda9b5ca216c9045aa773209f99a343be49b8ba3f200fd0af7cc6e3563998068bd8d9e9fa30beeef934e4d4264622c021c085cfa9f59 texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
index d757de82f6..159e7a9d9b 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-----
-iQEcBAEBCgAGBQJdrPQ8AAoJEEzhh34ZQ4xwzPkH/1nfewqOjQt9MSoKU8bNIIdY
-MkzXoX2HJaerqy3zEoOk9nuVHs6hgK7pvjs/LQK/FbKkKUKDr+wa76YKff94QEcZ
-9G93KdrKrHGlNP626GNZ+kGnEGGIuVz0IiLDIt8WDtufJnbYT3t/2bwzlmzAvBQb
-1R74fdAgJUc1kwl6V5Ec8qcCdaT9r+elYOaI9BmAlPzJhbivRidl6ef2PcC1ZUaG
-w1VQ5aR7o1xXeyV161eql8kIeLswVO2LiYOUQ8F+fYK5LxhKcay7Wq9cQMIoGUo7
-C6H7an8S+R9zu9y+jOBL4++7DydC3en4Vg7eoA0UCbjW183NwmOdQ/9zGvTFSt0=
-=MbG2
+iQEcBAEBCgAGBQJdr5apAAoJEEzhh34ZQ4xwPnkIAKMdkKDrYd5wYK1/w3uTgX4/
+5KIOVZ+6gkvkfG0JNvQ4qdB2MV+R+Mx3bY4EA+QfAWxwjUmVWuq+oo4YlE2JXYWx
+DRnM7whu4HQO4vXqIdyb0XNGQ2mdJTdAqgvBr1/KP37enOaob+FvTj6YMFe4kS3F
+OjPX2bzoZl1N/+5wdTWu2bcYRj/PRz6t1AfXO2noYFVrgXD9Ss7BQ0KmFolMHMUd
+hIWJqE/3ot3RpqigF85mT75iu0MpMeoIrVIQS19D71JGhvbBQgXQNSco2rDPEbSV
+yyoUNjxuXHHLtkSvosR7lhoq49o+XzrSLJ1TeBbIRbKK5xXcURLJkJxZexuKUJY=
+=mPQw
-----END PGP SIGNATURE-----
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
index 6fd820f066..576bdce004 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
Binary files differ
diff --git a/systems/texlive/tlnet/tlpkg/translations/sr.po b/systems/texlive/tlnet/tlpkg/translations/sr.po
index 06eba86cdd..0ccd979133 100644
--- a/systems/texlive/tlnet/tlpkg/translations/sr.po
+++ b/systems/texlive/tlnet/tlpkg/translations/sr.po
@@ -1,13 +1,13 @@
# Serbian/Cyrillic translation of TeX Live.
-# Copyright (C) 2010-2018 TeX Live Team
-# Nikola Lečić <nikola.lecic@anthesphoria.net>, 2010-2018.
+# Copyright (C) 2010-2019 TeX Live Team
+# Nikola Lečić <nikola.lecic@anthesphoria.net>, 2010-2019.
#
msgid ""
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: 2018-04-04 23:06+0300\n"
+"PO-Revision-Date: 2019-10-22 16:01+0300\n"
"Last-Translator: Nikola Lečić <nikola.lecic@anthesphoria.net>\n"
"Language-Team: TL Translation Team <tex-live@tug.org>\n"
"Language: sr\n"
@@ -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 ""
+msgstr "После инсталације укажите CTAN као извор за надоградње пакета. "
#: tlpkg/installer/install-menu-perltk.pl:607
#: tlpkg/installer/install-menu-perltk.pl:609
@@ -777,7 +777,7 @@ msgstr "ниједан"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:297
msgid "Load default"
-msgstr "Учитај подразумевани репозиторијум"
+msgstr "учитај подразумевани репозиторијум"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:305
#: texmf-dist/scripts/texlive/tlmgrgui.pl:528
@@ -1124,7 +1124,7 @@ msgstr "Инсталирати нову верзију TeX Live менаџера
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1033
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1038
msgid "Select platforms to support"
-msgstr "Изаберите оперативне системе"
+msgstr "Изаберите платформе"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1049
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1261
@@ -1223,7 +1223,7 @@ msgstr "Језик система"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1419
msgid "Default language for GUI:"
-msgstr "Подразумевани језик за графичко окружење:"
+msgstr "Подразумевани језик графичког окружења:"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1434
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1463
@@ -1387,7 +1387,7 @@ msgstr "Промена директоријума"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2492
#, perl-format
msgid "New value for %s:"
-msgstr ""
+msgstr "Нова вредност %s:"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:2495
msgid "Choose Directory"
@@ -1445,6 +1445,8 @@ msgid ""
"Target directory %s non-empty;\n"
"may cause trouble!"
msgstr ""
+"Изабрани директоријум (%s) није празан;\n"
+"ово може да изазове проблеме!"
#: tlpkg/installer/install-tl-gui.tcl:107
#, tcl-format
@@ -1452,6 +1454,8 @@ msgid ""
"Target directory %s non-empty;\n"
"are you sure?"
msgstr ""
+"Изабрани директоријум (%s) није празан;\n"
+"да ли сте сигурни?"
#: tlpkg/installer/install-tl-gui.tcl:179
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2636
@@ -1468,6 +1472,11 @@ msgid ""
"world; please consider supporting it by joining the group best for you. The "
"list of groups is available on the web at https://tug.org/usergroups.html."
msgstr ""
+"У фајлу %s/index.html ћете наћи линкове на документацију.\n"
+"На веб-сајту TeX Live (https://tug.org/texlive/) пронаћи ћете надоградње и "
+"исправке. TeX Live је заједнички пројекат група корисника TeX-а из целог "
+"света; молимо вас да размотрите учлањење у најближу из њих. Списак група "
+"можете пронаћи овде: https://tug.org/usergroups.html."
#: tlpkg/installer/install-tl-gui.tcl:186
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2649
@@ -1485,23 +1494,23 @@ msgstr ""
#: tlpkg/installer/install-tl-gui.tcl:264
msgid "Really abort?"
-msgstr ""
+msgstr "Заиста желите да прекинете?"
#: tlpkg/installer/install-tl-gui.tcl:352
msgid "Local repository"
-msgstr ""
+msgstr "Локални репозиторијум"
#: tlpkg/installer/install-tl-gui.tcl:388
#: tlpkg/installer/install-tl-gui.tcl:405
#: tlpkg/installer/install-tl-gui.tcl:440
#: texmf-dist/scripts/tlshell/tlshell.tcl:799
msgid "Abort"
-msgstr ""
+msgstr "Прекинути"
#: tlpkg/installer/install-tl-gui.tcl:410
#: tlpkg/installer/install-tl-gui.tcl:1910
msgid "TeX Live Installer"
-msgstr ""
+msgstr "TeX Live инсталер"
#: tlpkg/installer/install-tl-gui.tcl:413
#: tlpkg/installer/install-tl-gui.tcl:2009
@@ -1511,131 +1520,137 @@ msgid ""
"\n"
"If this takes too long, press Abort or choose another repository."
msgstr ""
+"Покушај учитавања %s.\n"
+"\n"
+"Ако учитавање предуго траје, притисните \"Прекинути\" или изаберите други "
+"репозиторијум."
#: tlpkg/installer/install-tl-gui.tcl:504
msgid "Cannot be created or cannot be written to"
-msgstr ""
+msgstr "Није могуће креирање или уписивање:"
#: tlpkg/installer/install-tl-gui.tcl:516
msgid "Directory name..."
-msgstr ""
+msgstr "Име директоријума..."
#: tlpkg/installer/install-tl-gui.tcl:523
msgid "Change name (slashes not allowed)"
-msgstr ""
+msgstr "Промена имена (косе црте нису дозвољене)"
#: tlpkg/installer/install-tl-gui.tcl:534
msgid "No slashes allowed"
-msgstr ""
+msgstr "Косе црте нису дозвољене"
#: tlpkg/installer/install-tl-gui.tcl:556
msgid ""
"TL release component highly recommended!\n"
"Are you sure?"
msgstr ""
+"Овај део издања TL је важан!\n"
+"Да ли сте сигурни?"
#: tlpkg/installer/install-tl-gui.tcl:565
msgid "Add year"
-msgstr ""
+msgstr "Додавање године"
#: tlpkg/installer/install-tl-gui.tcl:569
#: tlpkg/installer/install-tl-gui.tcl:644
msgid "Remove year"
-msgstr ""
+msgstr "Брисање године"
#: tlpkg/installer/install-tl-gui.tcl:611
#: tlpkg/installer/install-tl-gui.tcl:1385
#: tlpkg/installer/install-tl-gui.tcl:1393
msgid "Installation root"
-msgstr ""
+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"
-msgstr ""
+msgstr "Преводи имена директоријума ће бити замењени стварним називима"
#: tlpkg/installer/install-tl-gui.tcl:733
#, tcl-format
msgid "'~' equals %s, e.g. %s"
-msgstr ""
+msgstr "'~' означава %s, тј. %s"
#: tlpkg/installer/install-tl-gui.tcl:888
msgid "Cannot deselect own platform"
-msgstr ""
+msgstr "Не можете удаљити сопствену платформу"
#: tlpkg/installer/install-tl-gui.tcl:923
#: tlpkg/installer/install-tl-gui.tcl:1284
msgid "Binaries"
-msgstr ""
+msgstr "Програми"
#: tlpkg/installer/install-tl-gui.tcl:979
msgid "Schemes"
-msgstr ""
+msgstr "Шеме"
#: tlpkg/installer/install-tl-gui.tcl:1073
msgid "Collections"
-msgstr ""
+msgstr "Колекције"
#: tlpkg/installer/install-tl-gui.tcl:1095
msgid "Select"
-msgstr ""
+msgstr "Изаберите"
#: tlpkg/installer/install-tl-gui.tcl:1111
msgid "Languages"
-msgstr ""
+msgstr "Језици"
#: tlpkg/installer/install-tl-gui.tcl:1113
msgid "Other collections"
-msgstr ""
+msgstr "Друге колекције"
#: tlpkg/installer/install-tl-gui.tcl:1237
msgid "Warning. Not all configured directories are writable!"
-msgstr ""
+msgstr "Упозорење: у неке од изабраних директоријума није могуће уписивање!"
#: tlpkg/installer/install-tl-gui.tcl:1257
msgid "Symlinks"
-msgstr ""
+msgstr "Симболички линкови"
#: tlpkg/installer/install-tl-gui.tcl:1285
msgid "Man pages"
-msgstr ""
+msgstr "Man странице"
#: tlpkg/installer/install-tl-gui.tcl:1286
msgid "Info pages"
-msgstr ""
+msgstr "Info странице"
#: tlpkg/installer/install-tl-gui.tcl:1340
#, tcl-format
msgid "TeX Live %s Installer"
-msgstr ""
+msgstr "TeX Live %s инсталер"
#: tlpkg/installer/install-tl-gui.tcl:1358
msgid "Advanced"
-msgstr ""
+msgstr "Напредно"
#: tlpkg/installer/install-tl-gui.tcl:1388
msgid "Directories"
-msgstr ""
+msgstr "Директоријуми"
#: tlpkg/installer/install-tl-gui.tcl:1407
msgid "Main tree"
-msgstr ""
+msgstr "Главно дрво"
#: tlpkg/installer/install-tl-gui.tcl:1430
msgid "Local additions"
-msgstr ""
+msgstr "Локални додаци"
#: tlpkg/installer/install-tl-gui.tcl:1439
msgid "Per-user additions"
-msgstr ""
+msgstr "Додаци корисника"
#: tlpkg/installer/install-tl-gui.tcl:1466
msgid "More ..."
-msgstr ""
+msgstr "Више ..."
#: tlpkg/installer/install-tl-gui.tcl:1475
msgid ""
@@ -1643,126 +1658,131 @@ msgid ""
"May reset TEXMFLOCAL\n"
"and TEXMFHOME"
msgstr ""
+"Преносива инсталација:\n"
+"могуће ће ресетовање TEXMFLOCAL\n"
+"и TEXMFHOME"
#: tlpkg/installer/install-tl-gui.tcl:1489
#: texmf-dist/scripts/tlshell/tlshell.tcl:1351
#: texmf-dist/scripts/tlshell/tlshell.tcl:2129
msgid "Platforms"
-msgstr ""
+msgstr "Платформе"
#: tlpkg/installer/install-tl-gui.tcl:1495
msgid "Current platform:"
-msgstr ""
+msgstr "Тренутна платформа:"
#: tlpkg/installer/install-tl-gui.tcl:1502
msgid "N. of additional platform(s):"
-msgstr ""
+msgstr "Број допунских платформи:"
#: tlpkg/installer/install-tl-gui.tcl:1515
msgid "Selections"
-msgstr ""
+msgstr "Изабрано"
#: tlpkg/installer/install-tl-gui.tcl:1520
msgid "Scheme:"
-msgstr ""
+msgstr "Шема:"
#: tlpkg/installer/install-tl-gui.tcl:1529
msgid "N. of collections:"
-msgstr ""
+msgstr "Број колекција:"
#: tlpkg/installer/install-tl-gui.tcl:1532
msgid "Customize"
-msgstr ""
+msgstr "Подешавања"
#: tlpkg/installer/install-tl-gui.tcl:1541
msgid "Disk space required (in MB):"
-msgstr ""
+msgstr "Неопходно место на диску (у MB):"
#: tlpkg/installer/install-tl-gui.tcl:1619
msgid "Adjust searchpath"
-msgstr ""
+msgstr "Подешавање путање за претрагу"
#: tlpkg/installer/install-tl-gui.tcl:1628
msgid "Desktop integration"
-msgstr ""
+msgstr "Интеграција са десктопом"
#: tlpkg/installer/install-tl-gui.tcl:1640
msgid "File associations"
-msgstr ""
+msgstr "Тип фајла - програм"
#: tlpkg/installer/install-tl-gui.tcl:1679
msgid "Create symlinks in standard directories"
-msgstr ""
+msgstr "Направи симболичке линкове у стандардним директоријумима"
#: tlpkg/installer/install-tl-gui.tcl:1685
msgid "Specify directories"
-msgstr ""
+msgstr "Подешавање директоријума"
#: tlpkg/installer/install-tl-gui.tcl:1750
msgid "Custom scheme"
-msgstr ""
+msgstr "Сопствена шема"
#: tlpkg/installer/install-tl-gui.tcl:1935
#, tcl-format
msgid "%s not a local or remote repository"
-msgstr ""
+msgstr "%s није ни локални и удаљени репозиторијум"
#: tlpkg/installer/install-tl-gui.tcl:1936
#: tlpkg/installer/install-tl-gui.tcl:1942
#: texmf-dist/scripts/tlshell/tlshell.tcl:2032
msgid "Error"
-msgstr ""
+msgstr "Грешка"
#: tlpkg/installer/install-tl-gui.tcl:1941
#, tcl-format
msgid "%s requires an argument"
-msgstr ""
+msgstr "Уз %s је потребан аргумент"
#: tlpkg/tltcl/tltcl.tcl:135
msgid "Specific mirror..."
-msgstr ""
+msgstr "Специјални сајт-огледало (mirror)"
#: tlpkg/tltcl/tltcl.tcl:152
msgid "No mirror list available"
-msgstr ""
+msgstr "Недоступан списак сајтова-огледала (mirror)"
#: tlpkg/tltcl/tltcl.tcl:661
msgid "Select or type"
-msgstr ""
+msgstr "Изаберите или откуцајте"
#: texmf-dist/scripts/tlshell/tlshell.tcl:63
#: texmf-dist/scripts/tlshell/tlshell.tcl:274
#: texmf-dist/scripts/tlshell/tlshell.tcl:464
msgid "Idle"
-msgstr ""
+msgstr "Слободан"
#: texmf-dist/scripts/tlshell/tlshell.tcl:259
#: texmf-dist/scripts/tlshell/tlshell.tcl:319
#: texmf-dist/scripts/tlshell/tlshell.tcl:444
#: texmf-dist/scripts/tlshell/tlshell.tcl:480
msgid "Running"
-msgstr ""
+msgstr "Извршавање"
#: texmf-dist/scripts/tlshell/tlshell.tcl:579
msgid "Needs updating"
-msgstr ""
+msgstr "Потребна надоградња"
#: texmf-dist/scripts/tlshell/tlshell.tcl:581
msgid "Up to date"
-msgstr ""
+msgstr "Свеж"
#: texmf-dist/scripts/tlshell/tlshell.tcl:583
#: texmf-dist/scripts/tlshell/tlshell.tcl:2178
msgid "Unknown"
-msgstr ""
+msgstr "Непознато"
#: texmf-dist/scripts/tlshell/tlshell.tcl:763
msgid "Loading"
-msgstr ""
+msgstr "Учитавање"
#: texmf-dist/scripts/tlshell/tlshell.tcl:773
msgid "If loading takes too long, press Abort and choose another repository."
msgstr ""
+"Ако учитавање предуго траје, притисните \"Прекинути\" или изаберите други "
+"репозиторијум."
#: texmf-dist/scripts/tlshell/tlshell.tcl:775
#, tcl-format
@@ -1771,150 +1791,154 @@ msgid ""
"\n"
"If this takes too long, press Abort and choose another repository."
msgstr ""
+"Покушај учитавања %s.\n"
+"\n"
+"Ако учитавање предуго траје, притисните \"Прекинути\" или изаберите други "
+"репозиторијум."
#: texmf-dist/scripts/tlshell/tlshell.tcl:780
#: texmf-dist/scripts/tlshell/tlshell.tcl:2031
#: texmf-dist/scripts/tlshell/tlshell.tcl:2100
msgid "Repositories"
-msgstr ""
+msgstr "Репозиторијуми"
#: texmf-dist/scripts/tlshell/tlshell.tcl:844
msgid "A configured repository is unavailable."
-msgstr ""
+msgstr "Изабрани репозиторијум није доступан."
#: texmf-dist/scripts/tlshell/tlshell.tcl:974
msgid "Output"
-msgstr ""
+msgstr "Излаз"
#: texmf-dist/scripts/tlshell/tlshell.tcl:975
msgid "Other"
-msgstr ""
+msgstr "Остало"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1001
#, tcl-format
msgid "%s not a repository"
-msgstr ""
+msgstr "%s није репозиторијум"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1084
msgid "No repositories"
-msgstr ""
+msgstr "Нема репозиторијума"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1089
msgid "Multiple repositories"
-msgstr ""
+msgstr "Више репозиторијума"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1092
msgid "Not loaded"
-msgstr ""
+msgstr "Није учитано"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1120
msgid "Actual repository"
-msgstr ""
+msgstr "Тренутни репозиторијум"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1204
msgid "Main Repository"
-msgstr ""
+msgstr "Главни репозиторијум"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1215
msgid "Current:"
-msgstr ""
+msgstr "Тренутни:"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1221
msgid "New"
-msgstr ""
+msgstr "Нови"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1231
msgid "Any CTAN mirror"
-msgstr ""
+msgstr "Било који CTAN mirror"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1241
msgid "Local directory..."
-msgstr ""
+msgstr "Локални директоријум..."
#: texmf-dist/scripts/tlshell/tlshell.tcl:1246
msgid "tlcontrib additional repository"
-msgstr ""
+msgstr "Додатни репозиторијум tlcontrib"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1262
msgid "tlcontrib repository is included"
-msgstr ""
+msgstr "Укључен је и репозиторијум tlcontrib"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1263
msgid "Remove tlcontrib repository"
-msgstr ""
+msgstr "Удаљити репозиторијум tlcontrib"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1265
msgid "tlcontrib repository is not included"
-msgstr ""
+msgstr "Репозиторијум tlcontrib није укључен"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1266
msgid "Add tlcontrib repository"
-msgstr ""
+msgstr "Додати репозиторијум tlcontrib"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1271
msgid "Save and Load"
-msgstr ""
+msgstr "Снимити или учитати"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1295
#, tcl-format
msgid "Cannot remove own platform %s"
-msgstr ""
+msgstr "Није могуће удаљити сопствену платформу %s"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1359
msgid "Apply and close"
-msgstr ""
+msgstr "Применити и затворити"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1381
msgid "platform"
-msgstr ""
+msgstr "платформа"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1445
#, tcl-format
msgid "Restore %s to revision %s?"
-msgstr ""
+msgstr "Вратити %s на верзију %s?"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1468
msgid "No backups configured"
-msgstr ""
+msgstr "Резервно копирање није подешено"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1478
msgid "No backup directory defined"
-msgstr ""
+msgstr "Није подешен директоријум за резервне копије "
#: texmf-dist/scripts/tlshell/tlshell.tcl:1483
#, tcl-format
msgid "Backup directory %s does not exist"
-msgstr ""
+msgstr "Директоријум за резервне копије %s не постоји"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1506
#, tcl-format
msgid "No packages in backup directory %s"
-msgstr ""
+msgstr "У директоријуму за резервне копије %s нема пакета"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1516
#: texmf-dist/scripts/tlshell/tlshell.tcl:2264
msgid "Restore from backup"
-msgstr ""
+msgstr "Повратити из резервне копије"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1532
msgid "Package"
-msgstr ""
+msgstr "Пакет"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1533
msgid "Revision"
-msgstr ""
+msgstr "Верзија"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1574
msgid "Restore all"
-msgstr ""
+msgstr "Повратити све"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1593
msgid "Close this shell and run in an administrative command-prompt:"
-msgstr ""
+msgstr "Затворите овај shell и покрените као администратор:"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1595
msgid "Close this shell and run in a command-prompt:"
-msgstr ""
+msgstr "Затворите овај shell и покрените:"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1604
#: texmf-dist/scripts/tlshell/tlshell.tcl:1636
@@ -1922,7 +1946,7 @@ msgstr ""
#: texmf-dist/scripts/tlshell/tlshell.tcl:1726
#: texmf-dist/scripts/tlshell/tlshell.tcl:1801
msgid "Nothing to do!"
-msgstr ""
+msgstr "Нема ништа да се ради!"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1691
#, tcl-format
@@ -1931,11 +1955,14 @@ msgid ""
"\n"
"%s"
msgstr ""
+"Инсталирати повезане пакете\n"
+"\n"
+"%s"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1698
#, tcl-format
msgid "Already installed: %s"
-msgstr ""
+msgstr "Већ инсталирано: %s"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1739
#, tcl-format
@@ -1944,21 +1971,24 @@ msgid ""
"\n"
"%s?"
msgstr ""
+"Инсталирати повезане пакете\n"
+"\n"
+"%s?"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1754
#, tcl-format
msgid "Updating some dependencies %s anyway. Continue?"
-msgstr ""
+msgstr "У сваком случају неки повезани пакети %s биће надограђени. Наставити?"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1766
#, tcl-format
msgid "Skipped because not installed: %s"
-msgstr ""
+msgstr "Прескочено зато што није инсталирано: %s"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1769
#, tcl-format
msgid "Skipped because already up to date: %s"
-msgstr ""
+msgstr "Прескочено зато што је свеже: %s"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1805
#, tcl-format
@@ -1967,19 +1997,22 @@ msgid ""
"\n"
"%s?"
msgstr ""
+"Обрисати и повезане пакете\n"
+"\n"
+"%s?"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1820
#, tcl-format
msgid "Removing some dependencies %s anyway. Continue?"
-msgstr ""
+msgstr "У сваком случају неки повезани пакети %s биће обрисани. Продужити?"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1897
msgid "Info"
-msgstr ""
+msgstr "Информације"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1962
msgid "Cannot set default GUI language"
-msgstr ""
+msgstr "Није могуће подесити основни језик графичког интерфејса"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2029
#, tcl-format
@@ -1987,6 +2020,8 @@ msgid ""
"%s is not a local or remote repository.\n"
"Please configure a valid repository"
msgstr ""
+"%s није ни локални ни удаљено репозиторијум.\n"
+"Правилно задајте репозиторјум"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2051
#: texmf-dist/scripts/tlshell/tlshell.tcl:2077
@@ -1995,122 +2030,124 @@ msgstr "Фајл"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2079
msgid "Load repository"
-msgstr ""
+msgstr "Учитати репозиторијум"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2081
msgid "Exit"
-msgstr ""
+msgstr "Изаћи"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2087
msgid "Regenerate filename database"
-msgstr ""
+msgstr "Освежити базу података са именима"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2088
msgid "Regenerating filename database..."
-msgstr ""
+msgstr "Освежавање базе података са именима"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2089
msgid "Regenerate formats"
-msgstr ""
+msgstr "Освежити формате"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2090
msgid "Rebuilding formats..."
-msgstr ""
+msgstr "Освежавање формата"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2091
msgid "Regenerate fontmaps"
-msgstr ""
+msgstr "Освежити fontmaps"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2092
msgid "Rebuilding fontmap files..."
-msgstr ""
+msgstr "Поновно саздавање fontmap фајлова"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2114
msgid "GUI language (restarts tlshell)"
-msgstr ""
+msgstr "Језик графичког интерфејса (поновно покретање tlshell)"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2137
msgid ""
"GUI interface for TeX Live Manager\n"
"Implemented in Tcl/Tk"
msgstr ""
+"Графички интерфејс за TeX Live Manager\n"
+"Написан у Tcl/Tk"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2138
msgid "tlmgr help"
-msgstr ""
+msgstr "Упутство за tlmgr"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2157
msgid "Restart self"
-msgstr ""
+msgstr "Поновно покретање"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2159
msgid "Restart tlmgr"
-msgstr ""
+msgstr "Поновно покретање tlmgr"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2162
msgid "Show logs"
-msgstr ""
+msgstr "Показати logs"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2176
msgid "TL Manager up to date?"
-msgstr ""
+msgstr "TL Manager свеж?"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2181
msgid "Last tlmgr command:"
-msgstr ""
+msgstr "Последња команда из tlmgr:"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2194
#, tcl-format
msgid "Root at %s"
-msgstr ""
+msgstr "Корен у %s"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2202
msgid "Package list"
-msgstr ""
+msgstr "Списак пакета"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2212
msgid "Installed"
-msgstr ""
+msgstr "Инсталирани"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2219
msgid "Updatable"
-msgstr ""
+msgstr "Постоји надоградња"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2230
msgid "Detail >> Global"
-msgstr ""
+msgstr "Детаљи >> Глобално"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2233
msgid "Collections and schemes"
-msgstr ""
+msgstr "Колекције и шеме"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2235
msgid "Only schemes"
-msgstr ""
+msgstr "Само шеме"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2243
msgid "Mark all"
-msgstr ""
+msgstr "Означи све"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2245
msgid "Mark none"
-msgstr ""
+msgstr "Не означи ништа"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2251
msgid "Install marked"
-msgstr ""
+msgstr "Инсталирај означене"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2255
msgid "Update marked"
-msgstr ""
+msgstr "Надогради означене"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2259
msgid "Remove marked"
-msgstr ""
+msgstr "Обриши означене"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2269
msgid "Update tlmgr"
-msgstr ""
+msgstr "Надогради tlmgr"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2272
msgid "Update all"
@@ -2122,19 +2159,19 @@ msgstr "Тражи"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2282
msgid "By name"
-msgstr ""
+msgstr "По имену"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2284
msgid "By name and description"
-msgstr ""
+msgstr "По имену и опису"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2296
msgid "Name"
-msgstr ""
+msgstr "Име"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2299
msgid "Description"
-msgstr ""
+msgstr "Опис"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2397
#, tcl-format
@@ -2142,14 +2179,16 @@ msgid ""
"%s is not writable. You can probably not do much.\n"
" Are you sure you want to continue?"
msgstr ""
+"У %s није могуће уписивање, и већи део посла ће остати неурађен.\n"
+"Јесте ли сигурни да желите да продужите?"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2410
msgid "Multi-user"
-msgstr ""
+msgstr "Више корисника"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2410
msgid "Single-user"
-msgstr ""
+msgstr "Један корисник"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:1
msgid "basic scheme (plain and latex)"