Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/cffsubr/
Date: Wed, 01 Jun 2022 11:17:37
Message-Id: 1654059767.f1a7bdb4f50a6e8bae0e4dbe156b7490c421438e.andrewammerlaan@gentoo
1 commit: f1a7bdb4f50a6e8bae0e4dbe156b7490c421438e
2 Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
3 AuthorDate: Wed Jun 1 03:03:39 2022 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 1 05:02:47 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f1a7bdb4
7
8 dev-python/cffsubr: enable py3.10
9
10 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
11
12 dev-python/cffsubr/cffsubr-0.2.9_p1.ebuild | 17 ++++++++---------
13 1 file changed, 8 insertions(+), 9 deletions(-)
14
15 diff --git a/dev-python/cffsubr/cffsubr-0.2.9_p1.ebuild b/dev-python/cffsubr/cffsubr-0.2.9_p1.ebuild
16 index 3eadd83e9..53f6f0a27 100644
17 --- a/dev-python/cffsubr/cffsubr-0.2.9_p1.ebuild
18 +++ b/dev-python/cffsubr/cffsubr-0.2.9_p1.ebuild
19 @@ -4,15 +4,14 @@
20 EAPI=8
21
22 DISTUTILS_USE_PEP517=setuptools
23 -MYPV="${PV/_p/.post}"
24 -PYTHON_COMPAT=( python3_{8..9} )
25 -
26 +PYTHON_COMPAT=( python3_{8..10} )
27 inherit distutils-r1
28
29 +MY_PV="${PV/_p/.post}"
30 DESCRIPTION="Standalone CFF subroutinizer based on AFDKO tx tool"
31 HOMEPAGE="https://github.com/adobe-type-tools/cffsubr"
32 -SRC_URI="https://github.com/adobe-type-tools/cffsubr/archive/refs/tags/v${MYPV}.tar.gz -> ${P}.gh.tar.gz"
33 -S="${WORKDIR}/${PN}-${MYPV}"
34 +SRC_URI="https://github.com/adobe-type-tools/${PN}/archive/refs/tags/v${MY_PV}.tar.gz -> ${P}.gh.tar.gz"
35 +S="${WORKDIR}/${PN}-${MY_PV}"
36
37 KEYWORDS="~amd64"
38 LICENSE="Apache-2.0"
39 @@ -22,8 +21,7 @@ RDEPEND="
40 >=dev-python/fonttools-4.10.2[${PYTHON_USEDEP}]
41 >=dev-util/afdko-3.6.1[${PYTHON_USEDEP}]
42 "
43 -DEPEND="
44 - ${RDEPEND}
45 +BDEPEND="
46 dev-python/setuptools_scm[${PYTHON_USEDEP}]
47 "
48
49 @@ -39,7 +37,8 @@ pkg_setup() {
50 }
51
52 src_prepare() {
53 - #no bundled afdko
54 - rm -rf external || die
55 default
56 +
57 + # remove bundled afdko
58 + rm -rf external || die
59 }