summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2021-12-14 21:24:47 +0000
committerKarl Berry <karl@freefriends.org>2021-12-14 21:24:47 +0000
commitf3225f6aa8e96dbf7e421f651b9d3681f295ad7c (patch)
treea95af549f567acd17bcf1ba9750f9975f44d0eb4
parent545b205f0c5635466bac56baef501cb45c006f8a (diff)
arara (14dec21)
git-svn-id: svn://tug.org/texlive/trunk@61305 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-xBuild/source/texk/texlive/linked_scripts/texlive/tlmgr.pl68
-rw-r--r--Master/texmf-dist/doc/man/man1/arara.12
-rw-r--r--Master/texmf-dist/doc/man/man1/arara.man1.pdfbin20608 -> 20488 bytes
-rw-r--r--Master/texmf-dist/doc/support/arara/README.md2
-rw-r--r--Master/texmf-dist/doc/support/arara/arara-manual.pdfbin1971304 -> 1971074 bytes
-rw-r--r--Master/texmf-dist/doc/support/arara/arara-quickstart.pdfbin252986 -> 252983 bytes
-rw-r--r--Master/texmf-dist/doc/support/arara/version.tex2
-rw-r--r--Master/texmf-dist/scripts/arara/arara.jarbin11665766 -> 11842037 bytes
-rw-r--r--Master/texmf-dist/source/support/arara/arara-6.1.4-src.zip (renamed from Master/texmf-dist/source/support/arara/arara-6.1.3-src.zip)bin131975 -> 131975 bytes
9 files changed, 35 insertions, 39 deletions
diff --git a/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl b/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl
index d56f12c3cd7..ba09e78bcda 100755
--- a/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl
+++ b/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl
@@ -9459,32 +9459,32 @@ The allowed keys are:
=over 4
-=item C<auto-remove>, value 0 or 1 (default 1), same as command-line
+=item C<auto-remove => 0 or 1 (default 1), same as command-line
option.
-=item C<gui-expertmode>, value 0 or 1 (default 1).
+=item C<gui-expertmode => 0 or 1 (default 1).
This switches between the full GUI and a simplified GUI with only the
most common settings.
-=item C<gui-lang> I<llcode>, with a language code value as with the
+=item C<gui-lang => I<llcode>, with a language code value as with the
command-line option.
-=item C<no-checksums>, value 0 or 1 (default 0, see below).
+=item C<no-checksums => 0 or 1 (default 0, see below).
-=item C<persistent-downloads>, value 0 or 1 (default 1), same as
+=item C<persistent-downloads => 0 or 1 (default 1), same as
command-line option.
-=item C<require-verification>, value 0 or 1 (default 0), same as
+=item C<require-verification => 0 or 1 (default 0), same as
command-line option.
-=item C<tkfontscale>, value any float.
-Controls the scaling of fonts in the Tk based frontends.
+=item C<tkfontscale => I<floating-point number> (default 1.0);
+scaling factor for fonts in the Tk-based frontends.
-=item C<update-exclude>, value: comma-separated list of packages
-(no space allowed). Same as the command line option C<--exclude>
-for the action C<update>.
+=item C<update-exclude => I<comma-separated list of packages>
+(no spaces allowed). Same as the command line option C<--exclude>
+for the C<update> action.
-=item C<verify-downloads>, value 0 or 1 (default 1), same as
+=item C<verify-downloads => 0 or 1 (default 1), same as
command-line option.
=back
@@ -9493,32 +9493,29 @@ The system-wide config file can contain one additional key:
=over 4
-=item C<allowed-actions> I<action1> [,I<action>,...]
-The value is a comma-separated list of C<tlmgr> actions which are
-allowed to be executed when C<tlmgr> is invoked in system mode (that is,
-without C<--usermode>).
-
-This allows distributors to include the C<tlmgr> in their packaging, but
-allow only a restricted set of actions that do not interfere with their
-distro package manager. For native TeX Live installations, it doesn't
-make sense to set this.
+=item C<allowed-actions => I<action1>[,I<action2>,...]
+The value is a comma-separated list (no spaces) of C<tlmgr> actions
+which are allowed to be executed when C<tlmgr> is invoked in system mode
+(that is, without C<--usermode>). This allows distributors to include
+C<tlmgr> in their packaging, but allow only a restricted set of actions
+that do not interfere with their distro package manager. For native TeX
+Live installations, it doesn't make sense to set this.
=back
-The C<no-checksums> key needs more explanation. By default, package
-checksums computed and stored on the server (in the TLPDB) are compared
-to checksums computed locally after downloading. C<no-checksums>
-disables this process.
-
-The checksum algorithm is SHA-512. Your system must have one of (looked
-for in this order) the Perl C<Digest::SHA> module, the C<openssl>
-program (L<https://openssl.org>), the C<sha512sum> program (from GNU
-Coreutils, L<https://www.gnu.org/software/coreutils>), or finally the
-C<shasum> program (just to support old Macs). If none of these are
-available, a warning is issued and C<tlmgr> proceeds without checking
-checksums. (Incidentally, other SHA implementations, such as the pure
-Perl and pure Lua modules, are much too slow to be usable in our
-context.) C<no-checksums> avoids the warning.
+Finally, the C<no-checksums> key needs more explanation. By default,
+package checksums computed and stored on the server (in the TLPDB) are
+compared to checksums computed locally after downloading.
+C<no-checksums> disables this process. The checksum algorithm is
+SHA-512. Your system must have one of (looked for in this order) the
+Perl C<Digest::SHA> module, the C<openssl> program
+(L<https://openssl.org>), the C<sha512sum> program (from GNU Coreutils,
+L<https://www.gnu.org/software/coreutils>), or finally the C<shasum>
+program (just to support old Macs). If none of these are available, a
+warning is issued and C<tlmgr> proceeds without checking checksums.
+C<no-checksums> avoids the warning. (Incidentally, other SHA
+implementations, such as the pure Perl and pure Lua modules, are much
+too slow to be usable in our context.)
=head1 CRYPTOGRAPHIC VERIFICATION
@@ -9653,7 +9650,6 @@ just as in normal mode.
In user mode, these actions operate only on the user tree's
configuration files and/or C<texlive.tlpdb>.
-creates configuration files in user tree
=head1 MULTIPLE REPOSITORIES
diff --git a/Master/texmf-dist/doc/man/man1/arara.1 b/Master/texmf-dist/doc/man/man1/arara.1
index 34562e1c750..979e36e68cb 100644
--- a/Master/texmf-dist/doc/man/man1/arara.1
+++ b/Master/texmf-dist/doc/man/man1/arara.1
@@ -1,4 +1,4 @@
-.TH ARARA 1 "17 November 2021" "v6.1.3"
+.TH ARARA 1 "14 December 2021" "v6.1.4"
.SH NAME
arara \- a TeX automation tool based on rules and directives.
.SH SYNOPSIS
diff --git a/Master/texmf-dist/doc/man/man1/arara.man1.pdf b/Master/texmf-dist/doc/man/man1/arara.man1.pdf
index 1ba50e6a42b..ec24a087dfc 100644
--- a/Master/texmf-dist/doc/man/man1/arara.man1.pdf
+++ b/Master/texmf-dist/doc/man/man1/arara.man1.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/support/arara/README.md b/Master/texmf-dist/doc/support/arara/README.md
index e8d50dbfb7c..00921af7512 100644
--- a/Master/texmf-dist/doc/support/arara/README.md
+++ b/Master/texmf-dist/doc/support/arara/README.md
@@ -1,6 +1,6 @@
![arara](https://i.stack.imgur.com/hjUsN.png)
-# arara v6.1.3
+# arara v6.1.4
![Language: Kotlin](https://img.shields.io/badge/Language-Kotlin-blue.svg?style=flat-square)
![Minimum JRE: 8.0](https://img.shields.io/badge/Minimum_JRE-8-blue.svg?style=flat-square)
diff --git a/Master/texmf-dist/doc/support/arara/arara-manual.pdf b/Master/texmf-dist/doc/support/arara/arara-manual.pdf
index 510e8a9112a..dbc42716fb7 100644
--- a/Master/texmf-dist/doc/support/arara/arara-manual.pdf
+++ b/Master/texmf-dist/doc/support/arara/arara-manual.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/support/arara/arara-quickstart.pdf b/Master/texmf-dist/doc/support/arara/arara-quickstart.pdf
index 3de83b2900d..9749525f95a 100644
--- a/Master/texmf-dist/doc/support/arara/arara-quickstart.pdf
+++ b/Master/texmf-dist/doc/support/arara/arara-quickstart.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/support/arara/version.tex b/Master/texmf-dist/doc/support/arara/version.tex
index d7ff925cffb..1879c1be079 100644
--- a/Master/texmf-dist/doc/support/arara/version.tex
+++ b/Master/texmf-dist/doc/support/arara/version.tex
@@ -1 +1 @@
-6.1.3 \ No newline at end of file
+6.1.4 \ No newline at end of file
diff --git a/Master/texmf-dist/scripts/arara/arara.jar b/Master/texmf-dist/scripts/arara/arara.jar
index 9816c711bcd..3926a2bd253 100644
--- a/Master/texmf-dist/scripts/arara/arara.jar
+++ b/Master/texmf-dist/scripts/arara/arara.jar
Binary files differ
diff --git a/Master/texmf-dist/source/support/arara/arara-6.1.3-src.zip b/Master/texmf-dist/source/support/arara/arara-6.1.4-src.zip
index 5f00b2ef26f..5832691f08b 100644
--- a/Master/texmf-dist/source/support/arara/arara-6.1.3-src.zip
+++ b/Master/texmf-dist/source/support/arara/arara-6.1.4-src.zip
Binary files differ