Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/tkispell/, dev-perl/tkispell/files/
Date: Thu, 30 Sep 2021 20:32:47
Message-Id: 1633033931.00c2a5bf4da9984e07291e1c3fb537c5ce4dc61d.dilfridge@gentoo
1 commit: 00c2a5bf4da9984e07291e1c3fb537c5ce4dc61d
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 30 20:17:46 2021 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 30 20:32:11 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00c2a5bf
7
8 dev-perl/tkispell: Version bump 0.20
9
10 Package-Manager: Portage-3.0.26, Repoman-3.0.3
11 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
12
13 dev-perl/tkispell/Manifest | 1 +
14 .../tkispell/files/tkispell-0.20-nowindows.patch | 12 +++++++++++
15 dev-perl/tkispell/tkispell-0.200.0.ebuild | 24 ++++++++++++++++++++++
16 3 files changed, 37 insertions(+)
17
18 diff --git a/dev-perl/tkispell/Manifest b/dev-perl/tkispell/Manifest
19 index b737cb1e6ef..efdd749c148 100644
20 --- a/dev-perl/tkispell/Manifest
21 +++ b/dev-perl/tkispell/Manifest
22 @@ -1 +1,2 @@
23 +DIST App-tkispell-0.20.tar.gz 8835 BLAKE2B f85c9e9e4b79f7081a2190192b1c2da1cde39d1564b05a93bac49d494fddc4ce898183f4e3f52500cb8404e8fa51d173abf3a3645fd40cf925b41602cbaef5d1 SHA512 ed0f59118bbfb4c607e88220bad1a0174466f529ed0ff7aeda9e5f85bd5d73811cf47341f162f6aac88c9afaac6c941a020070e33e3ae12277b7ff07a70b04ee
24 DIST tkispell-0.18.tar.gz 16067 BLAKE2B 314165e586868135e7209360aafdf908aadb93fca5d94e8fa1e05f46e7f6e31fe24b198fdab470082deadbc0deba91820604884b469adc700cff500c261f88ce SHA512 15a32367c53b36217a5c57d1b109b304c5b97e4c46b4ab64cbce66c99c46a651af5d376a8219e35c6ec909250040e7be1e4d073546a893ff25650187ca561e08
25
26 diff --git a/dev-perl/tkispell/files/tkispell-0.20-nowindows.patch b/dev-perl/tkispell/files/tkispell-0.20-nowindows.patch
27 new file mode 100644
28 index 00000000000..af05c457c7b
29 --- /dev/null
30 +++ b/dev-perl/tkispell/files/tkispell-0.20-nowindows.patch
31 @@ -0,0 +1,12 @@
32 +diff -ruN App-tkispell-0.20.orig/Makefile.PL App-tkispell-0.20/Makefile.PL
33 +--- App-tkispell-0.20.orig/Makefile.PL 2020-10-13 18:20:04.000000000 +0200
34 ++++ App-tkispell-0.20/Makefile.PL 2021-09-30 22:15:54.013859210 +0200
35 +@@ -27,7 +27,7 @@
36 +
37 + # The first match is for Solaris which. The second is for
38 + # Linux which. The 3rd one for Windows.
39 +-if( ($ispell_bin =~ /no ispell/) || (length($ispell_bin) == 0 || $ispell_bin !~ m/(?:i|a)spell.exe$/) ) {
40 ++if( ($ispell_bin =~ /no ispell/) || (length($ispell_bin) == 0) ) {
41 + print "Could not find locate ispell or aspell.\n";
42 + print "Make sure that the program is installed in a directory\n";
43 + print "named in the PATH environment variable.\n";
44
45 diff --git a/dev-perl/tkispell/tkispell-0.200.0.ebuild b/dev-perl/tkispell/tkispell-0.200.0.ebuild
46 new file mode 100644
47 index 00000000000..4e780ec2a52
48 --- /dev/null
49 +++ b/dev-perl/tkispell/tkispell-0.200.0.ebuild
50 @@ -0,0 +1,24 @@
51 +# Copyright 1999-2021 Gentoo Authors
52 +# Distributed under the terms of the GNU General Public License v2
53 +
54 +EAPI=8
55 +
56 +DIST_AUTHOR=ASB
57 +DIST_VERSION=0.20
58 +DIST_NAME=App-tkispell
59 +inherit perl-module
60 +
61 +DESCRIPTION="Perl/Tk user interface for ispell"
62 +
63 +SLOT="0"
64 +KEYWORDS="~amd64 ~x86"
65 +
66 +RDEPEND="
67 + app-text/aspell
68 + >=dev-perl/Tk-800.4.0
69 +"
70 +BDEPEND="${RDEPEND}
71 + virtual/perl-ExtUtils-MakeMaker
72 +"
73 +
74 +PATCHES=( "${FILESDIR}/tkispell-0.20-nowindows.patch" )