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: Tue, 21 Dec 2021 18:54:54
Message-Id: 1640112887.a18aaefa0eea4f047981632455a62d6358fd47cb.pacho@gentoo
1 commit: a18aaefa0eea4f047981632455a62d6358fd47cb
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 21 18:33:16 2021 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 21 18:54:47 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a18aaefa
7
8 dev-python/pyclipper: Version bump
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 dev-python/pyclipper/Manifest | 1 +
14 dev-python/pyclipper/pyclipper-1.3.0_p2.ebuild | 29 ++++++++++++++++++++++++++
15 2 files changed, 30 insertions(+)
16
17 diff --git a/dev-python/pyclipper/Manifest b/dev-python/pyclipper/Manifest
18 index 6c0a5687884b..b610642b41d5 100644
19 --- a/dev-python/pyclipper/Manifest
20 +++ b/dev-python/pyclipper/Manifest
21 @@ -1 +1,2 @@
22 DIST pyclipper-1.3.0.tar.gz 51405 BLAKE2B a7a3e81452c8178d907528b7595fb92521dfb039a6ea116d7f189639ea2975d8058ac1f685a211c98be921c41a694d89f7f431264dfe366e3acc842b25d670f4 SHA512 bee6c5f835e84baa65cbca1d812219bd94272010bbeed365b3835ef3d191042129fdcccdd85ce7841f60f46cbfd52edd270d108ff81d64b0ca712c1369394d40
23 +DIST pyclipper-1.3.0_p2.tar.gz 51079 BLAKE2B e5af84c15a19bf2ac7f0df78d588d34451c6f0a0bc40fa6a28dd8ef5f697e1d62eb4e14ac184e325ce4d6ad1aab23254d6e91857e3a44636a1652f86aa1778e9 SHA512 08b7f8443b0e98ddf7230824a451b0b0023402c4cecb44c1a264e08d204a3da455aef742b2ffcc0acf44a4ec3b864302af0d7a7ec34bb6a2080340b2320797dd
24
25 diff --git a/dev-python/pyclipper/pyclipper-1.3.0_p2.ebuild b/dev-python/pyclipper/pyclipper-1.3.0_p2.ebuild
26 new file mode 100644
27 index 000000000000..1437117d8d88
28 --- /dev/null
29 +++ b/dev-python/pyclipper/pyclipper-1.3.0_p2.ebuild
30 @@ -0,0 +1,29 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Cython wrapper for the C++ translation of the Angus Johnson's Clipper library"
40 +HOMEPAGE="https://github.com/fonttools/pyclipper"
41 +SRC_URI="https://github.com/fonttools/pyclipper/archive/${PV/_p/.post}.tar.gz -> ${P}.tar.gz"
42 +S="${WORKDIR}/${P/_p/.post}"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
47 +IUSE=""
48 +
49 +BDEPEND="
50 + dev-python/cython[${PYTHON_USEDEP}]
51 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
52 +"
53 +
54 +distutils_enable_tests pytest
55 +
56 +src_prepare() {
57 + distutils-r1_src_prepare
58 + export SETUPTOOLS_SCM_PRETEND_VERSION="${PV/_p/.post}"
59 +}