Gentoo Archives: gentoo-commits

From: Theo Anderson <telans@××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/skia-pathops/
Date: Sat, 09 Oct 2021 09:30:46
Message-Id: 1633771809.e97cc50ed3349a6314f79bd6b818999bb88de5c9.telans@gentoo
1 commit: e97cc50ed3349a6314f79bd6b818999bb88de5c9
2 Author: James Beddek <telans <AT> posteo <DOT> de>
3 AuthorDate: Sat Oct 9 09:26:16 2021 +0000
4 Commit: Theo Anderson <telans <AT> posteo <DOT> de>
5 CommitDate: Sat Oct 9 09:30:09 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e97cc50e
7
8 dev-python/skia-pathops: drop 0.4.1
9
10 Signed-off-by: James Beddek <telans <AT> posteo.de>
11
12 dev-python/skia-pathops/Manifest | 1 -
13 dev-python/skia-pathops/skia-pathops-0.4.1.ebuild | 52 -----------------------
14 2 files changed, 53 deletions(-)
15
16 diff --git a/dev-python/skia-pathops/Manifest b/dev-python/skia-pathops/Manifest
17 index d26dbc8f3..badb54668 100644
18 --- a/dev-python/skia-pathops/Manifest
19 +++ b/dev-python/skia-pathops/Manifest
20 @@ -1,2 +1 @@
21 -DIST skia-pathops-0.4.1.zip 41254623 BLAKE2B 8d47da77c6389419cdf229085c58e692a218f400458b3bd6633307316c0d127c05990438a739633ae1622aa394da95414f86eb23338c1ef28f69283608c4ee7a SHA512 62cef669a8518643c4aefe2860f4c2207d602a531fe3f2ff1ae700b092d6f60cd2c47190926c0d00c709995e519f5538722ed1c0f4b6881c5af5aeb2a5b43e3b
22 DIST skia-pathops-0.6.0.post2.zip 41471167 BLAKE2B b9da1ff7deade28e0b5ce4fa6590eb92b50976027fc9da805b50c9d1526a60c28661d5378ecdc4dc2de42f7d3d904dd2f768b49df716b345253ffe2475f1afe7 SHA512 3ebcf044d045a57531229841630dea6e656df434a4a9b994a9a1162c93f0c894ffb20cfb493159cefd1afbe40366e2f9742a4aeea1a693d917fa55841c887e86
23
24 diff --git a/dev-python/skia-pathops/skia-pathops-0.4.1.ebuild b/dev-python/skia-pathops/skia-pathops-0.4.1.ebuild
25 deleted file mode 100644
26 index 7c12d6353..000000000
27 --- a/dev-python/skia-pathops/skia-pathops-0.4.1.ebuild
28 +++ /dev/null
29 @@ -1,52 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI="7"
34 -
35 -PYTHON_COMPAT=( python3_8 )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Python bindings for the Skia Path Ops"
40 -HOMEPAGE="
41 - https://github.com/fonttools/skia-pathops
42 - https://skia.org/dev/present/pathops
43 -"
44 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.zip"
45 -
46 -KEYWORDS="~amd64"
47 -LICENSE="BSD"
48 -SLOT="0"
49 -
50 -RDEPEND="
51 - ~media-libs/skia-80_p20191220:=
52 -"
53 -DEPEND="
54 - ${RDEPEND}
55 - test? (
56 - dev-python/pytest-cython[${PYTHON_USEDEP}]
57 - dev-python/pytest-randomly[${PYTHON_USEDEP}]
58 - dev-python/pytest-xdist[${PYTHON_USEDEP}]
59 - )
60 -"
61 -BDEPEND="
62 - app-arch/unzip
63 - dev-python/cython[${PYTHON_USEDEP}]
64 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
65 -"
66 -
67 -distutils_enable_tests pytest
68 -
69 -pkg_setup() {
70 - export BUILD_SKIA_FROM_SOURCE=0
71 -}
72 -
73 -python_prepare_all() {
74 - sed -e '/doctest-cython/d' -i tox.ini
75 -
76 - # assert <pathops.Path object at 0x7fe53e76cc00: 1 contours> == <pathops.Path object at 0x7fe53e76c2a0: 1 contours>
77 - sed -i -e 's:test_transform:_&:' \
78 - tests/pathops_test.py || die
79 -
80 - distutils-r1_python_prepare_all
81 -}