Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/defcon/
Date: Wed, 11 Mar 2020 21:29:02
Message-Id: 1583962131.ce3eb3e9fd9b4b2173eec4c4d8130029888a5e2b.pacho@gentoo
1 commit: ce3eb3e9fd9b4b2173eec4c4d8130029888a5e2b
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 11 20:01:34 2020 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 11 21:28:51 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce3eb3e9
7
8 dev-python/defcon: Drop python2 support
9
10 Package-Manager: Portage-2.3.93, Repoman-2.3.20
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 dev-python/defcon/defcon-0.6.0-r1.ebuild | 24 ++++++++++++++++++++++++
14 1 file changed, 24 insertions(+)
15
16 diff --git a/dev-python/defcon/defcon-0.6.0-r1.ebuild b/dev-python/defcon/defcon-0.6.0-r1.ebuild
17 new file mode 100644
18 index 00000000000..61979f96a84
19 --- /dev/null
20 +++ b/dev-python/defcon/defcon-0.6.0-r1.ebuild
21 @@ -0,0 +1,24 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +PYTHON_COMPAT=( python3_{6,7} )
28 +inherit distutils-r1
29 +
30 +DESCRIPTION="A set of UFO based objects for use in font editing applications"
31 +HOMEPAGE="https://github.com/typesupply/defcon"
32 +SRC_URI="https://github.com/typesupply/defcon/archive/${PV}.tar.gz -> ${P}.tar.gz"
33 +
34 +LICENSE="MIT"
35 +SLOT="0"
36 +KEYWORDS="~amd64"
37 +IUSE=""
38 +
39 +RDEPEND=">=dev-python/fonttools-3.31.0[${PYTHON_USEDEP}]"
40 +DEPEND="${RDEPEND}"
41 +BDEPEND=""
42 +
43 +python_test() {
44 + esetup.py test
45 +}