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/pyclipper/
Date: Wed, 29 Apr 2020 16:47:15
Message-Id: 1588178798.bed63307304b4ab68861b7b32dbc644802dc242b.pacho@gentoo
1 commit: bed63307304b4ab68861b7b32dbc644802dc242b
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 29 16:46:38 2020 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 29 16:46:38 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bed63307
7
8 dev-python/pyclipper: Bump to 1.1.0_p3
9
10 Closes: https://bugs.gentoo.org/719884
11 Package-Manager: Portage-2.3.96, Repoman-2.3.22
12 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
13
14 dev-python/pyclipper/Manifest | 1 +
15 dev-python/pyclipper/pyclipper-1.1.0_p3.ebuild | 35 ++++++++++++++++++++++++++
16 2 files changed, 36 insertions(+)
17
18 diff --git a/dev-python/pyclipper/Manifest b/dev-python/pyclipper/Manifest
19 index 95b30bfed2f..c92dc0f4c84 100644
20 --- a/dev-python/pyclipper/Manifest
21 +++ b/dev-python/pyclipper/Manifest
22 @@ -1 +1,2 @@
23 DIST pyclipper-1.1.0.tar.gz 53916 BLAKE2B 53b7b6609d602cdcbd8c8f4ceaed999c97e155747f7daeb630333f18fd2719040d118c8fa3d0e60a1ccd92c20aecb355ec9d4f9c22f66dc07b14a919f981f667 SHA512 53371bc2e0439f72ac4ebf96f833c4451d2b1924d7f9cddcbac79a0a6d6bd95ac1fb3fb08e3ea3fcf3ffe22cd718d31c7c528016605b275a3e80642e58546d74
24 +DIST pyclipper-1.1.0_p3.tar.gz 53353 BLAKE2B 1e510ab97ef98b83c763d4bc1154eb32f94bb035823ddcffef09fe32861c2384ccd6ffd29e5a31c0cabf71c801dd90d0176a68e93c6c2e2c9bff03c2be3fff33 SHA512 0b3c3f18593bafedaedf8a91411ba5d3d1c2ac55c949bca21e3a527ca0930eae5ea033a0f57337573a1106e2871a50dcb0176b959b98ad8ac58636c6d45f94a9
25
26 diff --git a/dev-python/pyclipper/pyclipper-1.1.0_p3.ebuild b/dev-python/pyclipper/pyclipper-1.1.0_p3.ebuild
27 new file mode 100644
28 index 00000000000..c2a389428c4
29 --- /dev/null
30 +++ b/dev-python/pyclipper/pyclipper-1.1.0_p3.ebuild
31 @@ -0,0 +1,35 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python2_7 python3_{6,7,8} )
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Cython wrapper for the C++ translation of the Angus Johnson's Clipper library"
41 +HOMEPAGE="https://github.com/fonttools/pyclipper"
42 +SRC_URI="https://github.com/fonttools/pyclipper/archive/${PV/_p/.post}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64"
47 +IUSE=""
48 +
49 +BDEPEND="
50 + dev-python/cython[${PYTHON_USEDEP}]
51 + dev-python/setuptools-git[${PYTHON_USEDEP}]
52 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
53 + dev-python/setuptools_scm_git_archive[${PYTHON_USEDEP}]
54 + test? ( dev-python/pytest-runner[${PYTHON_USEDEP}] )
55 +"
56 +RDEPEND=""
57 +DEPEND=""
58 +
59 +distutils_enable_tests pytest
60 +
61 +S="${WORKDIR}/${P/_p/.post}"
62 +
63 +src_prepare() {
64 + distutils-r1_src_prepare
65 + export SETUPTOOLS_SCM_PRETEND_VERSION="${PV}"
66 +}