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 96C15158091 for ; Wed, 1 Jun 2022 05:03:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BAE1DE0891; 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 8C9DBE087E for ; Wed, 1 Jun 2022 05:03:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 BD6F3341C1C for ; Wed, 1 Jun 2022 05:03:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 143304F8 for ; Wed, 1 Jun 2022 05:03:03 +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: <1654059767.f1a7bdb4f50a6e8bae0e4dbe156b7490c421438e.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/cffsubr/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/cffsubr/cffsubr-0.2.9_p1.ebuild X-VCS-Directories: dev-python/cffsubr/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: f1a7bdb4f50a6e8bae0e4dbe156b7490c421438e X-VCS-Branch: dev Date: Wed, 1 Jun 2022 05:03:03 +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: 6bb1a938-eaa1-480f-b5d7-48740f267174 X-Archives-Hash: ac695d3b0c3a42bc0a54841c8cf23aa3 commit: f1a7bdb4f50a6e8bae0e4dbe156b7490c421438e Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Wed Jun 1 03:03:39 2022 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Wed Jun 1 05:02:47 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f1a7bdb4 dev-python/cffsubr: enable py3.10 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> dev-python/cffsubr/cffsubr-0.2.9_p1.ebuild | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/dev-python/cffsubr/cffsubr-0.2.9_p1.ebuild b/dev-python/cffsubr/cffsubr-0.2.9_p1.ebuild index 3eadd83e9..53f6f0a27 100644 --- a/dev-python/cffsubr/cffsubr-0.2.9_p1.ebuild +++ b/dev-python/cffsubr/cffsubr-0.2.9_p1.ebuild @@ -4,15 +4,14 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -MYPV="${PV/_p/.post}" -PYTHON_COMPAT=( python3_{8..9} ) - +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 +MY_PV="${PV/_p/.post}" DESCRIPTION="Standalone CFF subroutinizer based on AFDKO tx tool" HOMEPAGE="https://github.com/adobe-type-tools/cffsubr" -SRC_URI="https://github.com/adobe-type-tools/cffsubr/archive/refs/tags/v${MYPV}.tar.gz -> ${P}.gh.tar.gz" -S="${WORKDIR}/${PN}-${MYPV}" +SRC_URI="https://github.com/adobe-type-tools/${PN}/archive/refs/tags/v${MY_PV}.tar.gz -> ${P}.gh.tar.gz" +S="${WORKDIR}/${PN}-${MY_PV}" KEYWORDS="~amd64" LICENSE="Apache-2.0" @@ -22,8 +21,7 @@ RDEPEND=" >=dev-python/fonttools-4.10.2[${PYTHON_USEDEP}] >=dev-util/afdko-3.6.1[${PYTHON_USEDEP}] " -DEPEND=" - ${RDEPEND} +BDEPEND=" dev-python/setuptools_scm[${PYTHON_USEDEP}] " @@ -39,7 +37,8 @@ pkg_setup() { } src_prepare() { - #no bundled afdko - rm -rf external || die default + + # remove bundled afdko + rm -rf external || die }