summarylogtreecommitdiffstats
path: root/tllocalmgr-pkgs-nicer-error.patch
diff options
context:
space:
mode:
authorHans-Nikolai Viessmann2022-11-29 12:00:48 +0100
committerHans-Nikolai Viessmann2022-11-29 12:00:48 +0100
commite85c6a088d2884c544be0b9b6fad87c0ba4187db (patch)
treed14a361e0c2c2a3f53c7a252b962d99620decf93 /tllocalmgr-pkgs-nicer-error.patch
parent5eb831b4e40ea10bf2d44f6ac726aa9053087a68 (diff)
downloadaur-e85c6a088d2884c544be0b9b6fad87c0ba4187db.tar.gz
switch to fork (development)
I've created a fork of the original texlive-localmanager by Rémy Oudompheng (see https://gitlab.archlinux.org/remy/texlive-localmanager.git) which includes all of the previously applied patches (thank you to all contributors over the years!) with also a few new improvements in the works. As such, the '-git' release should be considered beta and only used for latest features and such. From now a stable versioned release is available at: https://aur.archlinux.org/packages/tllocalmgr.
Diffstat (limited to 'tllocalmgr-pkgs-nicer-error.patch')
-rw-r--r--tllocalmgr-pkgs-nicer-error.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/tllocalmgr-pkgs-nicer-error.patch b/tllocalmgr-pkgs-nicer-error.patch
deleted file mode 100644
index eaca84219081..000000000000
--- a/tllocalmgr-pkgs-nicer-error.patch
+++ /dev/null
@@ -1,39 +0,0 @@
---- a/tllocalmgr 2021-10-26 20:36:35.893293400 +0200
-+++ b/tllocalmgr 2021-10-26 20:37:50.127537318 +0200
-@@ -171,7 +171,13 @@
- $installedcol_versions{$col} = $ver;
- my @list = ();
- unless ( -f "$INSTALLEDPKGS/texlive-$col\_$ver.pkgs" ) {
-- die "Cannot open $INSTALLEDPKGS/texlive-$col\_$ver.pkgs\n"
-+ print BOLD RED "Cannot open $INSTALLEDPKGS/texlive-$col\_$ver.pkgs!\n";
-+ print RED "-- Likely the package texlive-$col does not create the '*.pkgs' file.\n";
-+ print RED "-- We will not process it further; please contact upstream maintainer\n";
-+ print RED "-- to have this fixed.\n";
-+ delete $installedcol_versions{$col};
-+ print LOG "Cannot open $INSTALLEDPKGS/texlive-$col\_$ver.pkgs!\n";
-+ next;
- };
- open INST, "<$INSTALLEDPKGS/texlive-$col\_$ver.pkgs" ;
- while (<INST>) {
-@@ -415,6 +421,10 @@
- sub run_install {
- foreach (@_) {
- my $tlpkg = $tlpdb->get_package($_);
-+ if (! $tlpkg) {
-+ warning "$_ is unknown" ;
-+ next ;
-+ }
- my $pkgrev = $tlpkg->revision;
- if ( $locallyinstalledpkg_versions{$_} ) {
- echo "$_ is already installed with texlive-local-$_";
-@@ -451,6 +461,10 @@
- sub run_installdoc {
- foreach (@_) {
- my $tlpkg = $tlpdb->get_package($_);
-+ if (! $tlpkg) {
-+ warning "$_ is unknown" ;
-+ next ;
-+ }
- my $pkgrev = $tlpkg->revision;
- if ( $locallyinstalleddoc_versions{$_} ) {
- echo "$_ is already installed with texlive-local-$_-doc";