summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2021-12-13 19:58:54 +0100
committerConrad Kostecki <conikost@gentoo.org>2021-12-13 22:30:43 +0100
commit7596e390029768e227ae7e15486c6f31d8c0d5a1 (patch)
tree0b5ccb8009d245021053fc7d09da7bb247b0dcf1 /dev-perl/tkispell
parentdev-perl/Time-Format: remove unused patch(es) (diff)
downloadgentoo-7596e390029768e227ae7e15486c6f31d8c0d5a1.tar.gz
gentoo-7596e390029768e227ae7e15486c6f31d8c0d5a1.tar.bz2
gentoo-7596e390029768e227ae7e15486c6f31d8c0d5a1.zip
dev-perl/tkispell: remove unused patch
Bug: https://github.com/gentoo/gentoo/pull/23291 Package-Manager: Portage-3.0.29, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-perl/tkispell')
-rw-r--r--dev-perl/tkispell/files/tkispell-0.18-aspell.patch46
1 files changed, 0 insertions, 46 deletions
diff --git a/dev-perl/tkispell/files/tkispell-0.18-aspell.patch b/dev-perl/tkispell/files/tkispell-0.18-aspell.patch
deleted file mode 100644
index 14c080db3cf3..000000000000
--- a/dev-perl/tkispell/files/tkispell-0.18-aspell.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-From ed7ede66c01fbae6c5de0e6dc28d991a1f27016c Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Andreas=20K=2E=20H=C3=BCttel?= <dilfridge@gentoo.org>
-Date: Sat, 11 Oct 2014 21:48:27 +1300
-Subject: Patch to use aspell instead of ispell
-
----
- Makefile.PL | 8 ++++----
- tkispell | 2 +-
- 2 files changed, 5 insertions(+), 5 deletions(-)
-
-diff --git a/Makefile.PL b/Makefile.PL
-index 4cebdea..8a49493 100644
---- a/Makefile.PL
-+++ b/Makefile.PL
-@@ -1,11 +1,11 @@
- use ExtUtils::MakeMaker;
-
--my $ispell_bin = `which ispell`;
-+my $ispell_bin = `which ispell-aspell`;
- # The first match is for Solaris which. The second is for
- # Linux which.
--if (($ispell_bin =~ /no ispell/) || (length($ispell_bin) == 0)) {
-- print "Could not find locate ispell. Make sure that\n";
-- print "the ispell program is installed in a directory\n";
-+if (($ispell_bin =~ /no ispell-aspell/) || (length($ispell_bin) == 0)) {
-+ print "Could not find locate ispell-aspell. Make sure that\n";
-+ print "the ispell-aspell program is installed in a directory\n";
- print "named in the PATH environment variable.\n";
- exit 1;
- }
-diff --git a/tkispell b/tkispell
-index fbc6cc7..6bde051 100644
---- a/tkispell
-+++ b/tkispell
-@@ -14,7 +14,7 @@ my $lang = $ENV{LANG};
- if ($lang =~ /^C$/ || ! defined ($lang)) {$lang = 'default'; }
- my $hdict = $ENV{HOME}."/.ispell_$lang"; # Personal dictionary.
-
--my $ispell_prog = `which ispell`;
-+my $ispell_prog = `which ispell-aspell`;
- chomp $ispell_prog;
- my ($cw, $b1, @misspelledlist, @replacementlist, @addlist, $midx);
- my $ifname = '';
---
-2.16.2
-