summaryrefslogtreecommitdiff
path: root/dev-perl/tkispell
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-06-21 17:50:24 +0100
committerV3n3RiX <venerix@redcorelinux.org>2020-06-21 17:50:24 +0100
commitfeb0daf81d888e9160f9f94502de09b66f2a63fd (patch)
treeb6e5c40ce2abef3da27ed50a023153f475e0ddef /dev-perl/tkispell
parent9452a6e87b6c2c70513bc47a2470bf9f1168920e (diff)
gentoo resync : 21.06.2020
Diffstat (limited to 'dev-perl/tkispell')
-rw-r--r--dev-perl/tkispell/Manifest1
-rw-r--r--dev-perl/tkispell/files/tkispell-0.180.0-aspell.patch31
2 files changed, 0 insertions, 32 deletions
diff --git a/dev-perl/tkispell/Manifest b/dev-perl/tkispell/Manifest
index 358f63aa60ad..b68add48ddcf 100644
--- a/dev-perl/tkispell/Manifest
+++ b/dev-perl/tkispell/Manifest
@@ -1,5 +1,4 @@
AUX tkispell-0.18-aspell.patch 1574 BLAKE2B 43027d0ff663c3d51ca82814dc0508473c9840b97c2f99239612c45e7b0e5d333ce1bc825f3d819f91eb58bd4c63bcc6a6d2cc815b533f51a03ed86ef984f573 SHA512 2da8d74a43aff400a878fe568e287d7fd3d96611f5c9303cc1514c253d9972664b391063f9665f348f9bcd4affa568d7aa96a3bf5582523b9b3bd61186eba8c1
-AUX tkispell-0.180.0-aspell.patch 1411 BLAKE2B a36c5a371ee06f578bbe542f8e690593466dfb57dcf4d227f65b3c147173d721389c991936f7169582e2e735b64b7781a530788d4f4b1c3ffa762f4920c152b4 SHA512 e9869b12e9a207412d1444ae3d45173ee9e58828f8f20b9c73fdf6c82db25b2590d250a80b500b5e801d64520dadffdb04c64ae35e0a3d3dc752ccbe42b6889d
DIST tkispell-0.18.tar.gz 16067 BLAKE2B 314165e586868135e7209360aafdf908aadb93fca5d94e8fa1e05f46e7f6e31fe24b198fdab470082deadbc0deba91820604884b469adc700cff500c261f88ce SHA512 15a32367c53b36217a5c57d1b109b304c5b97e4c46b4ab64cbce66c99c46a651af5d376a8219e35c6ec909250040e7be1e4d073546a893ff25650187ca561e08
EBUILD tkispell-0.180.0-r1.ebuild 711 BLAKE2B 4d3b5907cd70dd7f5eb2257e50c8c7f3d31f328b2bd7c179ef6b5aa5c32e383a91b7b965ebd76bc41806ac766dd18b7cd39af17fc8fe42235734156b44961698 SHA512 3fcc4406bbb8af1a9dc5b19a4207426d5029afe5c8e91e085a196991fd0478252b4749b4cb83edae5df78ac6948d2a8fe73780ae8a700d1f1ee2ef2b2e24feb3
MISC metadata.xml 399 BLAKE2B f0715191b4e7c991a9858c00dae64f7bf960219e7dea1f30a79febe63f3b784fab90538b25591495ab37759ae1d0f012d39266260baa319f368d70a681edaf7a SHA512 3b602ed98f74a9a1d7c0053426a4daed193ebc3aa322dd65910916621853a35ac33ff71f6411d517901a7aafb3cdd13443c2baf4217bafc21272be32e79332c5
diff --git a/dev-perl/tkispell/files/tkispell-0.180.0-aspell.patch b/dev-perl/tkispell/files/tkispell-0.180.0-aspell.patch
deleted file mode 100644
index 1db7bd291eff..000000000000
--- a/dev-perl/tkispell/files/tkispell-0.180.0-aspell.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-diff -ruN tkispell-0.18.orig/Makefile.PL tkispell-0.18/Makefile.PL
---- tkispell-0.18.orig/Makefile.PL 2004-02-28 20:38:46.000000000 +0100
-+++ tkispell-0.18/Makefile.PL 2014-10-11 10:43:09.372002632 +0200
-@@ -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 -ruN tkispell-0.18.orig/tkispell tkispell-0.18/tkispell
---- tkispell-0.18.orig/tkispell 2004-03-14 03:50:34.000000000 +0100
-+++ tkispell-0.18/tkispell 2014-10-11 10:43:58.772005395 +0200
-@@ -14,7 +14,7 @@
- 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 = '';