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 689B9158023 for ; Sat, 17 Dec 2022 07:15:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B26D2E091C; Sat, 17 Dec 2022 07:15:44 +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 9B4F4E090F for ; Sat, 17 Dec 2022 07:15:44 +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 CB2D7341168 for ; Sat, 17 Dec 2022 07:15:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 60BF27D8 for ; Sat, 17 Dec 2022 07:15:41 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1671261337.66339c284d66f82e6a9d00e960d2ff89981555df.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyclipper/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyclipper/pyclipper-1.3.0_p4.ebuild X-VCS-Directories: dev-python/pyclipper/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 66339c284d66f82e6a9d00e960d2ff89981555df X-VCS-Branch: master Date: Sat, 17 Dec 2022 07:15:41 +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: 9c6e9985-fa2e-4019-9885-cf14160b535a X-Archives-Hash: 1868a7df07eaa2bc495002c6f5d501da commit: 66339c284d66f82e6a9d00e960d2ff89981555df Author: Michał Górny gentoo org> AuthorDate: Sat Dec 17 07:14:46 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Dec 17 07:15:37 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66339c28 dev-python/pyclipper: Enable py3.11 Signed-off-by: Michał Górny gentoo.org> dev-python/pyclipper/pyclipper-1.3.0_p4.ebuild | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/dev-python/pyclipper/pyclipper-1.3.0_p4.ebuild b/dev-python/pyclipper/pyclipper-1.3.0_p4.ebuild index cfe07333d595..545c1fc46ab7 100644 --- a/dev-python/pyclipper/pyclipper-1.3.0_p4.ebuild +++ b/dev-python/pyclipper/pyclipper-1.3.0_p4.ebuild @@ -4,12 +4,16 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_COMPAT=( python3_{8..11} ) + inherit distutils-r1 MY_P=${P/_p/.post} DESCRIPTION="Cython wrapper for the C++ translation of the Angus Johnson's Clipper library" -HOMEPAGE="https://github.com/fonttools/pyclipper" +HOMEPAGE=" + https://github.com/fonttools/pyclipper/ + https://pypi.org/project/pyclipper/ +" SRC_URI=" https://github.com/fonttools/pyclipper/archive/${PV/_p/.post}.tar.gz -> ${MY_P}.gh.tar.gz @@ -28,7 +32,4 @@ BDEPEND=" distutils_enable_tests pytest -src_prepare() { - distutils-r1_src_prepare - export SETUPTOOLS_SCM_PRETEND_VERSION="${PV/_p/.post}" -} +export SETUPTOOLS_SCM_PRETEND_VERSION="${PV/_p/.post}"