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 D3AF71382C5 for ; Wed, 3 Feb 2021 12:41:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9EC32E083B; Wed, 3 Feb 2021 12:41:35 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 850E0E083B for ; Wed, 3 Feb 2021 12:41:35 +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 37F84340A03 for ; Wed, 3 Feb 2021 12:41:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ABBFC4A8 for ; Wed, 3 Feb 2021 12:41:32 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1612356085.13ef4a5cc96bb68e6ca3d479b056af30b7d8f444.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pypcap/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pypcap/pypcap-1.2.3-r1.ebuild dev-python/pypcap/pypcap-1.2.3.ebuild X-VCS-Directories: dev-python/pypcap/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 13ef4a5cc96bb68e6ca3d479b056af30b7d8f444 X-VCS-Branch: master Date: Wed, 3 Feb 2021 12:41:32 +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: a8b0afa0-d695-4e29-ad4f-4b96ca0b0d03 X-Archives-Hash: 0c7ae896ceabf2735904ef06b6776f3d commit: 13ef4a5cc96bb68e6ca3d479b056af30b7d8f444 Author: Sam James gentoo org> AuthorDate: Wed Feb 3 12:41:25 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Feb 3 12:41:25 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13ef4a5c dev-python/pypcap: add Python 3.8+, regenerate w/ Cython Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> ...{pypcap-1.2.3.ebuild => pypcap-1.2.3-r1.ebuild} | 28 ++++++++++++++-------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/dev-python/pypcap/pypcap-1.2.3.ebuild b/dev-python/pypcap/pypcap-1.2.3-r1.ebuild similarity index 59% rename from dev-python/pypcap/pypcap-1.2.3.ebuild rename to dev-python/pypcap/pypcap-1.2.3-r1.ebuild index 345238ce8b9..d2b7e4073d3 100644 --- a/dev-python/pypcap/pypcap-1.2.3.ebuild +++ b/dev-python/pypcap/pypcap-1.2.3-r1.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 -PYTHON_COMPAT=( python3_7 ) +EAPI=7 + +PYTHON_COMPAT=( python3_{7,8,9} ) inherit distutils-r1 DESCRIPTION="Simplified object-oriented Python extension module for libpcap" @@ -13,18 +14,25 @@ LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" -RDEPEND=" - net-libs/libpcap -" -DEPEND=" - ${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] -" +BDEPEND="dev-python/cython[${PYTHON_USEDEP}]" +RDEPEND="net-libs/libpcap" +DEPEND="${RDEPEND}" + PATCHES=( "${FILESDIR}"/${PN}-1.2.3-mktemp.patch ) python_compile() { local -x CFLAGS="${CFLAGS} -fno-strict-aliasing" + + # Needed to gain Python 3.9 compatibility + cython pcap.pyx || die "Failed to regenerate pcap.pyx" + + # Now build as usual distutils-r1_python_compile } + +python_test() { + cd tests || die + "${EPYTHON}" test.py || die +}