Gentoo Archives: gentoo-commits

From: Kent Fredric <kentnl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Inline-Python/
Date: Thu, 21 May 2020 09:53:18
Message-Id: 1590054783.1993d3d63137627f7e7ae4be98ddd2209c93663f.kentnl@gentoo
1 commit: 1993d3d63137627f7e7ae4be98ddd2209c93663f
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 21 09:35:04 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Thu May 21 09:53:03 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1993d3d6
7
8 dev-perl/Inline-Python: Add support up to python3_8
9
10 - EAPI7 conversion
11 - Add python3_7 and python3_8 support
12
13 Package-Manager: Portage-2.3.99, Repoman-2.3.22
14 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
15
16 .../Inline-Python/Inline-Python-0.560.0-r1.ebuild | 40 ++++++++++++++++++++++
17 1 file changed, 40 insertions(+)
18
19 diff --git a/dev-perl/Inline-Python/Inline-Python-0.560.0-r1.ebuild b/dev-perl/Inline-Python/Inline-Python-0.560.0-r1.ebuild
20 new file mode 100644
21 index 00000000000..08eec205768
22 --- /dev/null
23 +++ b/dev-perl/Inline-Python/Inline-Python-0.560.0-r1.ebuild
24 @@ -0,0 +1,40 @@
25 +# Copyright 1999-2020 Gentoo Authors
26 +# Distributed under the terms of the GNU General Public License v2
27 +
28 +EAPI=7
29 +
30 +PYTHON_COMPAT=( python3_6 python3_7 python3_8 )
31 +# Feel free to add more targets after testing.
32 +
33 +DIST_AUTHOR=NINE
34 +DIST_VERSION=0.56
35 +inherit python-single-r1 perl-module
36 +
37 +DESCRIPTION="Easy implementation of Python extensions"
38 +
39 +SLOT="0"
40 +KEYWORDS="~amd64 ~sparc ~x86"
41 +IUSE="test"
42 +RESTRICT="!test? ( test )"
43 +
44 +RDEPEND="
45 + virtual/perl-Data-Dumper
46 + >=virtual/perl-Digest-MD5-2.500.0
47 + >=dev-perl/Inline-0.460.0
48 + ${PYTHON_DEPS}
49 +"
50 +DEPEND="${PYTHON_DEPS}"
51 +BDEPEND="${RDEPEND}
52 + virtual/perl-ExtUtils-MakeMaker
53 + test? (
54 + >=dev-perl/Proc-ProcessTable-0.530.0
55 + virtual/perl-Test-Simple
56 + dev-perl/Test-Deep
57 + dev-perl/Test-Number-Delta
58 + virtual/perl-Test
59 + )
60 +"
61 +
62 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
63 +
64 +PATCHES=( "${FILESDIR}/${PN}-0.460.0-insanepython.patch" )