From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2F5A01382C5 for ; Thu, 21 May 2020 09:53:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 638E6E08A6; Thu, 21 May 2020 09:53:17 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 50392E08A6 for ; Thu, 21 May 2020 09:53:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6B97934F031 for ; Thu, 21 May 2020 09:53:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2646D230 for ; Thu, 21 May 2020 09:53:15 +0000 (UTC) From: "Kent Fredric" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kent Fredric" Message-ID: <1590054783.1993d3d63137627f7e7ae4be98ddd2209c93663f.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Inline-Python/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Inline-Python/Inline-Python-0.560.0-r1.ebuild X-VCS-Directories: dev-perl/Inline-Python/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: 1993d3d63137627f7e7ae4be98ddd2209c93663f X-VCS-Branch: master Date: Thu, 21 May 2020 09:53:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c34a7209-bf41-4e2b-b2d2-2e6e7ab71067 X-Archives-Hash: a8e274ca3e7576241a66959388e4d0e9 commit: 1993d3d63137627f7e7ae4be98ddd2209c93663f Author: Kent Fredric gentoo org> AuthorDate: Thu May 21 09:35:04 2020 +0000 Commit: Kent Fredric gentoo org> CommitDate: Thu May 21 09:53:03 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1993d3d6 dev-perl/Inline-Python: Add support up to python3_8 - EAPI7 conversion - Add python3_7 and python3_8 support Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Kent Fredric gentoo.org> .../Inline-Python/Inline-Python-0.560.0-r1.ebuild | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) 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 new file mode 100644 index 00000000000..08eec205768 --- /dev/null +++ b/dev-perl/Inline-Python/Inline-Python-0.560.0-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_6 python3_7 python3_8 ) +# Feel free to add more targets after testing. + +DIST_AUTHOR=NINE +DIST_VERSION=0.56 +inherit python-single-r1 perl-module + +DESCRIPTION="Easy implementation of Python extensions" + +SLOT="0" +KEYWORDS="~amd64 ~sparc ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + virtual/perl-Data-Dumper + >=virtual/perl-Digest-MD5-2.500.0 + >=dev-perl/Inline-0.460.0 + ${PYTHON_DEPS} +" +DEPEND="${PYTHON_DEPS}" +BDEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + test? ( + >=dev-perl/Proc-ProcessTable-0.530.0 + virtual/perl-Test-Simple + dev-perl/Test-Deep + dev-perl/Test-Number-Delta + virtual/perl-Test + ) +" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +PATCHES=( "${FILESDIR}/${PN}-0.460.0-insanepython.patch" )