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 C7444158030 for ; Mon, 27 Feb 2023 00:32:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3FF19E0809; Mon, 27 Feb 2023 00:32:02 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 4284DE0809 for ; Mon, 27 Feb 2023 00:32:01 +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 6B626340E70 for ; Mon, 27 Feb 2023 00:31:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9BF2A8CA for ; Mon, 27 Feb 2023 00:31:56 +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: <1677456499.44fad13501e7025c0e5ca08791a6e41ece8d9013.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/ttfautohint-py/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/ttfautohint-py/ttfautohint-py-0.5.1-r1.ebuild dev-python/ttfautohint-py/ttfautohint-py-0.5.1.ebuild X-VCS-Directories: dev-python/ttfautohint-py/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 44fad13501e7025c0e5ca08791a6e41ece8d9013 X-VCS-Branch: dev Date: Mon, 27 Feb 2023 00:31:56 +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: ccece813-b0d0-4955-80b1-9ca1633054b6 X-Archives-Hash: bb5cdfc55d1aef3fec05fdaad4e8f8c4 commit: 44fad13501e7025c0e5ca08791a6e41ece8d9013 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Mon Feb 27 00:08:19 2023 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Mon Feb 27 00:08:19 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=44fad135 dev-python/ttfautohint-py: enable py3.11 Closes: https://bugs.gentoo.org/897586 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> .../ttfautohint-py/ttfautohint-py-0.5.1-r1.ebuild | 38 ++++++++++++++++++++++ .../ttfautohint-py/ttfautohint-py-0.5.1.ebuild | 36 -------------------- 2 files changed, 38 insertions(+), 36 deletions(-) diff --git a/dev-python/ttfautohint-py/ttfautohint-py-0.5.1-r1.ebuild b/dev-python/ttfautohint-py/ttfautohint-py-0.5.1-r1.ebuild new file mode 100644 index 000000000..de83b92bc --- /dev/null +++ b/dev-python/ttfautohint-py/ttfautohint-py-0.5.1-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 + +DESCRIPTION="Python wrapper for ttfautohint, a free auto-hinter for TrueType fonts" +HOMEPAGE=" + https://pypi.org/project/ttfautohint-py/ + https://github.com/fonttools/ttfautohint-py +" +SRC_URI="https://github.com/fonttools/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" + +KEYWORDS="~amd64" +LICENSE="MIT" +SLOT="0" + +RDEPEND="media-gfx/ttfautohint" +BDEPEND=" + dev-python/setuptools_scm[${PYTHON_USEDEP}] + test? ( + dev-python/fonttools[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +src_prepare() { + distutils-r1_src_prepare + rm -r src/c || die +} + +src_configure() { + export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} +} diff --git a/dev-python/ttfautohint-py/ttfautohint-py-0.5.1.ebuild b/dev-python/ttfautohint-py/ttfautohint-py-0.5.1.ebuild deleted file mode 100644 index 9d4f68ead..000000000 --- a/dev-python/ttfautohint-py/ttfautohint-py-0.5.1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 - -DESCRIPTION="A Python wrapper for ttfautohint" -HOMEPAGE="https://github.com/fonttools/ttfautohint-py" -SRC_URI="https://github.com/fonttools/ttfautohint-py/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" - -KEYWORDS="~amd64" -LICENSE="MIT" -SLOT="0" - -RDEPEND="media-gfx/ttfautohint" -DEPEND=" - ${RDEPEND} - dev-python/setuptools_scm[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/fonttools[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests pytest - -src_prepare() { - rm -r src/c || die - export SETUPTOOLS_SCM_PRETEND_VERSION="${PV%_*}" - export TTFAUTOHINTPY_BUNDLE_DLL=0 - default -}