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: Sat, 14 Sep 2019 20:40:21
Message-Id: 1568493514.31dc23f40845c2f82d4620774158d742c6613645.pacho@gentoo
1 commit: 31dc23f40845c2f82d4620774158d742c6613645
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 14 20:38:34 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 14 20:38:34 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31dc23f4
7
8 dev-python/booleanOperations: Bump to 0.8.2
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.17
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 dev-python/booleanOperations/Manifest | 1 +
14 .../booleanOperations-0.8.2.ebuild | 32 ++++++++++++++++++++++
15 2 files changed, 33 insertions(+)
16
17 diff --git a/dev-python/booleanOperations/Manifest b/dev-python/booleanOperations/Manifest
18 index efff79f564f..c9d9ef6a9d7 100644
19 --- a/dev-python/booleanOperations/Manifest
20 +++ b/dev-python/booleanOperations/Manifest
21 @@ -1 +1,2 @@
22 DIST booleanOperations-0.8.0.tar.gz 19914 BLAKE2B 121eb4c8587cd56717c757589cadd08334c7a3d90d878c17d24e36b232a1cbf0386a4c1090638818f0e264296796d89a8231204656d2a7432802b385e8200c80 SHA512 76eaeb6a5039f4f5ff3a066545a70c35a512b7ec20e54873cde90a14a18f6a9fc33a2ac356325f7390f206ad2f34412e178212e30065ede41d4b3fa8397eecea
23 +DIST booleanOperations-0.8.2.tar.gz 165059 BLAKE2B 978b992e84181e8ec437e236e6502a6c135ea011395f3b082881e6b9f5c849632077737064d1102164cf083edc8a7e47c6f4f43d858948d9046ed231c5ac8911 SHA512 3c369ce53bc7b1b53f4441ba79959d4853c9ab767fef17fc41f44812427dcb5ad905fcfac4cee0d616447cccd059fce6a1d168b0766054659fb29b33867d1fb9
24
25 diff --git a/dev-python/booleanOperations/booleanOperations-0.8.2.ebuild b/dev-python/booleanOperations/booleanOperations-0.8.2.ebuild
26 new file mode 100644
27 index 00000000000..3f2387ff878
28 --- /dev/null
29 +++ b/dev-python/booleanOperations/booleanOperations-0.8.2.ebuild
30 @@ -0,0 +1,32 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python2_7 python3_6 )
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Boolean operations on paths"
40 +HOMEPAGE="https://github.com/typemytype/booleanOperations"
41 +SRC_URI="https://github.com/typemytype/booleanOperations/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="MIT"
44 +SLOT="0"
45 +KEYWORDS="~amd64"
46 +IUSE=""
47 +
48 +DEPEND=""
49 +BDEPEND=""
50 +RDEPEND="${DEPEND}
51 + >=dev-python/fonttools-3.32.0[${PYTHON_USEDEP}]
52 + dev-python/pyclipper[${PYTHON_USEDEP}]
53 +"
54 +
55 +src_prepare() {
56 + export SETUPTOOLS_SCM_PRETEND_VERSION="${PV}"
57 + distutils-r1_src_prepare
58 +}
59 +
60 +python_test() {
61 + esetup.py test
62 +}