Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/skia-pathops/
Date: Wed, 01 Jun 2022 11:17:36
Message-Id: 1654059766.c00bc623962ca7ca5084f841f062b70fb26fe090.andrewammerlaan@gentoo
1 commit: c00bc623962ca7ca5084f841f062b70fb26fe090
2 Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
3 AuthorDate: Wed Jun 1 02:44:49 2022 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 1 05:02:46 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c00bc623
7
8 dev-python/skia-pathops: drop 0.6.0_p2
9
10 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
11
12 dev-python/skia-pathops/Manifest | 1 -
13 .../skia-pathops/skia-pathops-0.6.0_p2.ebuild | 48 ----------------------
14 2 files changed, 49 deletions(-)
15
16 diff --git a/dev-python/skia-pathops/Manifest b/dev-python/skia-pathops/Manifest
17 index 5b4c87f54..1e4302f0f 100644
18 --- a/dev-python/skia-pathops/Manifest
19 +++ b/dev-python/skia-pathops/Manifest
20 @@ -1,2 +1 @@
21 -DIST skia-pathops-0.6.0.post2.zip 41471167 BLAKE2B b9da1ff7deade28e0b5ce4fa6590eb92b50976027fc9da805b50c9d1526a60c28661d5378ecdc4dc2de42f7d3d904dd2f768b49df716b345253ffe2475f1afe7 SHA512 3ebcf044d045a57531229841630dea6e656df434a4a9b994a9a1162c93f0c894ffb20cfb493159cefd1afbe40366e2f9742a4aeea1a693d917fa55841c887e86
22 DIST skia-pathops-0.7.2.zip 61294134 BLAKE2B 7cd7d5b9c244ee108bbf9b6c086e210fa05f65a8d2e36e7036a9ad94a1ff9ad2f8777ce74e4227ddd15e6b197afa668fad1cf8d110e5ac87e496c85b6e97c8dd SHA512 bf4c02895d08ee174f700d83753e3d5ada1f1de018a07b2e1574f01bd3283edaf71b1859c732d27a45030fc070232c34098760b3144b2a91a7bee72ff220394d
23
24 diff --git a/dev-python/skia-pathops/skia-pathops-0.6.0_p2.ebuild b/dev-python/skia-pathops/skia-pathops-0.6.0_p2.ebuild
25 deleted file mode 100644
26 index cb62b29fe..000000000
27 --- a/dev-python/skia-pathops/skia-pathops-0.6.0_p2.ebuild
28 +++ /dev/null
29 @@ -1,48 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI="7"
34 -
35 -MYP="${P/_p/.post}"
36 -PYTHON_COMPAT=( python3_{8..10} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Python bindings for the Skia Path Ops"
41 -HOMEPAGE="
42 - https://github.com/fonttools/skia-pathops
43 - https://skia.org/dev/present/pathops
44 -"
45 -SRC_URI="mirror://pypi/${MYP:0:1}/${PN}/${MYP}.zip"
46 -S="${WORKDIR}/${MYP}"
47 -LICENSE="BSD"
48 -SLOT="0"
49 -KEYWORDS="~amd64"
50 -
51 -RDEPEND="
52 - media-libs/skia
53 -"
54 -DEPEND="
55 - ${RDEPEND}
56 - test? (
57 - dev-python/pytest-cython[${PYTHON_USEDEP}]
58 - dev-python/pytest-randomly[${PYTHON_USEDEP}]
59 - dev-python/pytest-xdist[${PYTHON_USEDEP}]
60 - )
61 -"
62 -BDEPEND="
63 - app-arch/unzip
64 - dev-python/cython[${PYTHON_USEDEP}]
65 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
66 -"
67 -
68 -distutils_enable_tests pytest
69 -
70 -pkg_setup() {
71 - export BUILD_SKIA_FROM_SOURCE=0
72 -}
73 -
74 -python_test() {
75 - # assert <pathops.Path object at 0x7fe53e76cc00: 1 contours> == <pathops.Path object at 0x7fe53e76c2a0: 1 contours>
76 - epytest --deselect tests/pathops_test.py::PathTest::test_transform
77 -}