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/booleanOperations/
Date: Wed, 29 Apr 2020 17:10:49
Message-Id: 1588180236.a7f15a15a568b0dd88f7c4489f493ef99984ec8d.pacho@gentoo
1 commit: a7f15a15a568b0dd88f7c4489f493ef99984ec8d
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 29 17:10:13 2020 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 29 17:10:36 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7f15a15
7
8 dev-python/booleanOperations: Newer pyclipper needed, skip tests for now
9
10 Bug: https://bugs.gentoo.org/719882
11 Package-Manager: Portage-2.3.96, Repoman-2.3.22
12 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
13
14 .../booleanOperations-0.9.0-r1.ebuild | 34 ++++++++++++++++++++++
15 1 file changed, 34 insertions(+)
16
17 diff --git a/dev-python/booleanOperations/booleanOperations-0.9.0-r1.ebuild b/dev-python/booleanOperations/booleanOperations-0.9.0-r1.ebuild
18 new file mode 100644
19 index 00000000000..8904255b627
20 --- /dev/null
21 +++ b/dev-python/booleanOperations/booleanOperations-0.9.0-r1.ebuild
22 @@ -0,0 +1,34 @@
23 +# Copyright 1999-2020 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +
28 +PYTHON_COMPAT=( python3_{6,7,8} )
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Boolean operations on paths"
32 +HOMEPAGE="https://github.com/typemytype/booleanOperations"
33 +SRC_URI="https://github.com/typemytype/booleanOperations/archive/${PV}.tar.gz -> ${P}.tar.gz"
34 +
35 +LICENSE="MIT"
36 +SLOT="0"
37 +KEYWORDS="~amd64"
38 +IUSE=""
39 +
40 +DEPEND=""
41 +BDEPEND=""
42 +RDEPEND="${DEPEND}
43 + >=dev-python/fonttools-4.0.2[${PYTHON_USEDEP}]
44 + >=dev-python/pyclipper-1.1.0_p3[${PYTHON_USEDEP}]
45 + dev-python/wheel[${PYTHON_USEDEP}]
46 +"
47 +
48 +distutils_enable_tests setup.py
49 +
50 +# tests need fontPens, that is not packaged
51 +RESTRICT="test"
52 +
53 +src_prepare() {
54 + export SETUPTOOLS_SCM_PRETEND_VERSION="${PV}"
55 + distutils-r1_src_prepare
56 +}