Gentoo Archives: gentoo-commits

From: "Hanno Böck" <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/ktoblzcheck/
Date: Mon, 03 Aug 2020 07:23:49
Message-Id: 1596439415.b74fbfd59f8533e7c59af6fe033f4bc85fe70255.hanno@gentoo
1 commit: b74fbfd59f8533e7c59af6fe033f4bc85fe70255
2 Author: Hanno Böck <hanno <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 3 07:23:35 2020 +0000
4 Commit: Hanno Böck <hanno <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 3 07:23:35 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b74fbfd5
7
8 app-misc/ktoblzcheck: Disable Python.
9
10 Python code is python 2 only, no other package uses it.
11
12 Bug: https://bugs.gentoo.org/735228
13 Signed-off-by: Hanno Böck <hanno <AT> gentoo.org>
14 Package-Manager: Portage-3.0.1, Repoman-2.3.23
15
16 app-misc/ktoblzcheck/ktoblzcheck-1.49-r2.ebuild | 35 +++++++++++++++++++++++++
17 1 file changed, 35 insertions(+)
18
19 diff --git a/app-misc/ktoblzcheck/ktoblzcheck-1.49-r2.ebuild b/app-misc/ktoblzcheck/ktoblzcheck-1.49-r2.ebuild
20 new file mode 100644
21 index 00000000000..70b76b0106e
22 --- /dev/null
23 +++ b/app-misc/ktoblzcheck/ktoblzcheck-1.49-r2.ebuild
24 @@ -0,0 +1,35 @@
25 +# Copyright 1999-2020 Gentoo Authors
26 +# Distributed under the terms of the GNU General Public License v2
27 +
28 +EAPI=7
29 +
30 +DESCRIPTION="Library to check account numbers and bank codes of German banks"
31 +HOMEPAGE="http://ktoblzcheck.sourceforge.net/"
32 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
33 +
34 +LICENSE="LGPL-2.1"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
37 +IUSE=""
38 +
39 +RDEPEND="
40 + app-text/recode:0=
41 + sys-apps/grep
42 + sys-apps/sed
43 + virtual/awk
44 + || ( net-misc/wget www-client/lynx )
45 +"
46 +DEPEND="${RDEPEND}
47 + sys-devel/libtool
48 +"
49 +
50 +DOCS=( AUTHORS ChangeLog NEWS README )
51 +
52 +src_configure() {
53 + econf --disable-python
54 +}
55 +
56 +src_install() {
57 + default
58 + find "${D}" -name '*.la' -type f -delete || die
59 +}