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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A0120158091 for ; Wed, 1 Jun 2022 05:03:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E66B1E08C4; Wed, 1 Jun 2022 05:03:07 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CF4C3E08C4 for ; Wed, 1 Jun 2022 05:03:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E8F12341809 for ; Wed, 1 Jun 2022 05:03:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D116C4F5 for ; Wed, 1 Jun 2022 05:03:02 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1654059766.7491e3c8c88b2befb65ff32794b07dfeb86467b0.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/skia-pathops/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/skia-pathops/skia-pathops-0.7.2.ebuild X-VCS-Directories: dev-python/skia-pathops/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 7491e3c8c88b2befb65ff32794b07dfeb86467b0 X-VCS-Branch: dev Date: Wed, 1 Jun 2022 05:03:02 +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: 18c3704a-d0ce-4f0a-a87b-b31efdc0d675 X-Archives-Hash: 9d31d6cc337cb0ad9fc312ff43bf112e commit: 7491e3c8c88b2befb65ff32794b07dfeb86467b0 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Wed Jun 1 02:47:09 2022 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Wed Jun 1 05:02:46 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7491e3c8 dev-python/skia-pathops: update EAPI 7 -> 8 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> dev-python/skia-pathops/skia-pathops-0.7.2.ebuild | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/dev-python/skia-pathops/skia-pathops-0.7.2.ebuild b/dev-python/skia-pathops/skia-pathops-0.7.2.ebuild index 661fa5e18..540015063 100644 --- a/dev-python/skia-pathops/skia-pathops-0.7.2.ebuild +++ b/dev-python/skia-pathops/skia-pathops-0.7.2.ebuild @@ -1,29 +1,30 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="7" +EAPI=8 -MYP="${P/_p/.post}" PYTHON_COMPAT=( python3_{8..10} ) - +DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 +MY_P="${P/_p/.post}" DESCRIPTION="Python bindings for the Skia Path Ops" HOMEPAGE=" https://github.com/fonttools/skia-pathops https://skia.org/dev/present/pathops " -SRC_URI="mirror://pypi/${MYP:0:1}/${PN}/${MYP}.zip" -S="${WORKDIR}/${MYP}" +SRC_URI="mirror://pypi/${MY_P:0:1}/${PN}/${MY_P}.zip" +S="${WORKDIR}/${MY_P}" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64" RDEPEND="media-libs/skia" -DEPEND="${RDEPEND}" +DEPEND="${RDEPEND} + dev-python/cython[${PYTHON_USEDEP}] +" BDEPEND=" app-arch/unzip - dev-python/cython[${PYTHON_USEDEP}] dev-python/setuptools_scm[${PYTHON_USEDEP}] test? ( dev-python/pytest-cython[${PYTHON_USEDEP}] ) "