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 00F7C158092 for ; Tue, 31 May 2022 07:27:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E27E3E0A01; Tue, 31 May 2022 07:27:08 +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 CA075E0A01 for ; Tue, 31 May 2022 07:27:08 +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 114A5341ADC for ; Tue, 31 May 2022 07:27:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0263F4F8 for ; Tue, 31 May 2022 07:27:04 +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: <1653982009.35c0594240b0d72c32ffc5ef9bf8921820b67bd3.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/vttlib/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/vttlib/vttlib-0.11.0.ebuild X-VCS-Directories: dev-python/vttlib/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 35c0594240b0d72c32ffc5ef9bf8921820b67bd3 X-VCS-Branch: dev Date: Tue, 31 May 2022 07:27:04 +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: ba9b19c1-c955-4f0b-a035-f811b1fa3f10 X-Archives-Hash: 675967a968a0385907a6b2cdbb246f3d commit: 35c0594240b0d72c32ffc5ef9bf8921820b67bd3 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Tue May 31 07:06:37 2022 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Tue May 31 07:26:49 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=35c05942 dev-python/vttlib: update EAPI 7 -> 8 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> dev-python/vttlib/vttlib-0.11.0.ebuild | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/dev-python/vttlib/vttlib-0.11.0.ebuild b/dev-python/vttlib/vttlib-0.11.0.ebuild index 42e9ca0ea..fda92c59c 100644 --- a/dev-python/vttlib/vttlib-0.11.0.ebuild +++ b/dev-python/vttlib/vttlib-0.11.0.ebuild @@ -1,43 +1,39 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="7" +EAPI=8 -DISTUTILS_USE_SETUPTOOLS=pyproject.toml -MYPN="vttLib" -MYPV="${PV/_p/.post}" -MYP="${MYPN}-${MYPV}" +DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{8..9} ) - inherit distutils-r1 +MY_PN="vttLib" +MY_PV="${PV/_p/.post}" +MY_P="${MY_PN}-${MY_PV}" DESCRIPTION="Dump, merge and compile Visual TrueType data in UFO3 with FontTools" HOMEPAGE=" https://github.com/daltonmaag/vttLib https://pypi.org/project/vttlib/ " -SRC_URI="mirror://pypi/${MYP:0:1}/${MYPN}/${MYP}.zip" +SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.zip" +S="${WORKDIR}/${MY_P}" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64" -#install_requires RDEPEND=" >=dev-python/fonttools-4.10.2[${PYTHON_USEDEP}] >=dev-python/pyparsing-2.4.7[${PYTHON_USEDEP}] >=dev-python/ufoLib2-0.7.1[${PYTHON_USEDEP}] " -#setup_requires -DEPEND=" - ${RDEPEND} +BDEPEND=" + app-arch/unzip dev-python/setuptools_scm[${PYTHON_USEDEP}] dev-python/wheel[${PYTHON_USEDEP}] test? ( >=dev-python/ufo2ft-2.14.0[${PYTHON_USEDEP}] ) " -BDEPEND="app-arch/unzip" -S="${WORKDIR}/${MYP}" distutils_enable_tests pytest