import texlive-20180414-19.el8

This commit is contained in:
CentOS Sources 2020-11-03 07:19:48 -05:00 committed by Stepan Oksanichenko
parent 4b87a70bb4
commit c550e5bffb
5 changed files with 302692 additions and 792 deletions

6
.gitignore vendored
View File

@ -119,6 +119,8 @@ SOURCES/collection-xetex.tar.xz
SOURCES/colortbl.doc.tar.xz
SOURCES/colortbl.source.tar.xz
SOURCES/colortbl.tar.xz
SOURCES/context.doc.tar.xz
SOURCES/context.tar.xz
SOURCES/courier.tar.xz
SOURCES/crop.doc.tar.xz
SOURCES/crop.source.tar.xz
@ -495,6 +497,8 @@ SOURCES/pspicture.tar.xz
SOURCES/pst-3d.doc.tar.xz
SOURCES/pst-3d.source.tar.xz
SOURCES/pst-3d.tar.xz
SOURCES/pst-arrow.doc.tar.xz
SOURCES/pst-arrow.tar.xz
SOURCES/pst-blur.doc.tar.xz
SOURCES/pst-blur.source.tar.xz
SOURCES/pst-blur.tar.xz
@ -520,6 +524,8 @@ SOURCES/pst-slpe.tar.xz
SOURCES/pst-text.doc.tar.xz
SOURCES/pst-text.source.tar.xz
SOURCES/pst-text.tar.xz
SOURCES/pst-tools.doc.tar.xz
SOURCES/pst-tools.tar.xz
SOURCES/pst-tree.doc.tar.xz
SOURCES/pst-tree.tar.xz
SOURCES/pstricks-add.doc.tar.xz

View File

@ -119,6 +119,8 @@ ecfe2de054a6601a2e238b06e617009bf3b620db SOURCES/collection-xetex.tar.xz
65f359bedb093da5eb30c19bfb9e1198496d8fd1 SOURCES/colortbl.doc.tar.xz
5f0f6209848d8c39cdbbf4cee38bedacecf9f75d SOURCES/colortbl.source.tar.xz
abb9bb57237c36df752f77e5a2bb7a89ec35c11e SOURCES/colortbl.tar.xz
93145151117ab166fb761d472a759d5a0504ec3b SOURCES/context.doc.tar.xz
11f77c7eb1e184bdcd46836914961bbc4a394346 SOURCES/context.tar.xz
4280fe00986d05c4883eca962be1d13ce07dd47d SOURCES/courier.tar.xz
9cfb32d036eb29fcfa0d31fe6cb154851e9b4eec SOURCES/crop.doc.tar.xz
0889183390c6ed7216d1466b891330ecdb3bb744 SOURCES/crop.source.tar.xz
@ -495,6 +497,8 @@ c412751e6da2689902269a11f246acff2d37caaa SOURCES/psnfss.tar.xz
c4b2f99f6d1f69231309bec1cf038933d61148cd SOURCES/pst-3d.doc.tar.xz
ba61d01a7291d031a960e699d6355b14b6ac56ca SOURCES/pst-3d.source.tar.xz
8718e4d4b33a8b583ecaa3145b1dc059feca272e SOURCES/pst-3d.tar.xz
74207812af6c3f3dc4343bcf9d510bcb306af384 SOURCES/pst-arrow.doc.tar.xz
f9e0737171bd02ae24d6c925a40853a6d86f826d SOURCES/pst-arrow.tar.xz
9916e0dae565ea7af3e0d70378659cf30b602b43 SOURCES/pst-blur.doc.tar.xz
6422ce34d59f97aa244ab4c0c876641d17fa08cc SOURCES/pst-blur.source.tar.xz
05d46fba356a004ee328c36093891d069ff6b214 SOURCES/pst-blur.tar.xz
@ -520,6 +524,8 @@ bc980c9ea9cac3ca1ca7be64627df12a7fd682a8 SOURCES/pst-slpe.tar.xz
d5fba753b691a60c87516c18b2f52ec19f6ee543 SOURCES/pst-text.doc.tar.xz
02fe225731386d3b5272fee358f7f2f94581c95f SOURCES/pst-text.source.tar.xz
75ca990a9a5983241696c74e9471df5801a40c25 SOURCES/pst-text.tar.xz
88f9800b1ccbf0a7ab4375a7bead78696216e6c3 SOURCES/pst-tools.doc.tar.xz
ef8b78bde528abf8c21dba2130f762299a3a790f SOURCES/pst-tools.tar.xz
7085a31058d51bf313bb28f171c25f4871bae119 SOURCES/pst-tree.doc.tar.xz
7bd0ceaed1a1b428920b4f680fa0ec5176109fc2 SOURCES/pst-tree.tar.xz
29483e833e0423ee4451b55b6364974dcc2a8c14 SOURCES/pstricks-add.doc.tar.xz

View File

@ -0,0 +1,79 @@
diff -up texmf-dist/scripts/texlive/tlmgr.pl.orig texmf-dist/scripts/texlive/tlmgr.pl
--- texmf-dist/scripts/texlive/tlmgr.pl.orig 2017-09-13 03:55:27.000000000 +0200
+++ texmf-dist/scripts/texlive/tlmgr.pl 2020-07-24 15:01:13.810411690 +0200
@@ -225,6 +225,7 @@ my %action_specification = (
"dry-run|n" => 1,
"file" => 1,
"force" => 1,
+ "ignore-warning" => 1,
"no-depends" => 1,
"no-depends-at-all" => 1,
"reinstall" => 1,
@@ -329,6 +330,7 @@ my %action_specification = (
"dry-run|n" => 1,
"exclude" => "=s@",
"force" => 1,
+ "ignore-warning" => 1,
"list" => 1,
"no-auto-install" => 1,
"no-auto-remove" => 1,
@@ -2339,6 +2341,15 @@ sub upd_info {
}
sub action_update {
+ if (!($opts{"ignore-warning"})) {
+ print("*** WARNING ***: Performing this action will likely destroy the RHEL TeXLive install on your system.\n");
+ print("*** WARNING ***: This is almost NEVER what you want to do.\n");
+ print("*** WARNING ***: Try using dnf install/update instead.\n");
+ print("*** WARNING ***: If performing this action is really what you want to do, pass the \"ignore-warning\" option.\n");
+ print("*** WARNING ***: But please do not file any bugs with the OS Vendor.\n");
+ exit;
+ }
+
init_local_db(1);
$opts{"no-depends"} = 1 if $opts{"no-depends-at-all"};
@@ -3336,6 +3347,15 @@ sub check_announce_format_triggers {
# anymore! That has all to be done by the caller.
#
sub action_install {
+ if (!($opts{"ignore-warning"})) {
+ print("*** WARNING ***: Performing this action will likely destroy the RHEL TeXLive install on your system.\n");
+ print("*** WARNING ***: This is almost NEVER what you want to do.\n");
+ print("*** WARNING ***: Try using dnf install/update instead.\n");
+ print("*** WARNING ***: If performing this action is really what you want to do, pass the \"ignore-warning\" option.\n");
+ print("*** WARNING ***: But please do not file any bugs with the OS Vendor.\n");
+ exit;
+ }
+
init_local_db(1);
my $ret = $F_OK;
return ($F_ERROR) if !check_on_writable();
@@ -7657,6 +7677,13 @@ If updates to C<tlmgr> itself (or other
infrastructure) are present, C<tlmgr> will bail out and not perform the
installation unless this option is given. Not recommended.
+=item B<--ignore-warning>
+
+The tlmgr tool can really ruin a RHEL install of TeXLive.
+We have added a warning check here to try to keep you from
+blindly following a tutorial and doing this. If you still want to
+proceed, just use this option.
+
=item B<--no-depends>
Do not install dependencies. (By default, installing a package ensures
@@ -8275,6 +8302,13 @@ In short:
Nothing is actually installed; instead, the actions to be performed are
written to the terminal. This is a more detailed report than C<--list>.
+=item B<--ignore-warning>
+
+The tlmgr tool can really ruin a RHEL install of TeXLive.
+We have added a warning check here to try to keep you from
+blindly following a tutorial and doing this. If you still want to
+proceed, just use this option.
+
=item B<--list> [I<pkg>]
Concisely list the packages which would be updated, newly installed, or

301412
SOURCES/texlive.tlpdb Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff