Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cairocffi/
Date: Sat, 06 Nov 2021 19:59:36
Message-Id: 1636228759.c9eab9311f19c17b197ef3836223baf128414e9b.arthurzam@gentoo
1 commit: c9eab9311f19c17b197ef3836223baf128414e9b
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 6 19:58:10 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 6 19:59:19 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9eab931
7
8 dev-python/cairocffi: drop 1.2.0
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/cairocffi/Manifest | 1 -
13 dev-python/cairocffi/cairocffi-1.2.0.ebuild | 41 -----------------------------
14 2 files changed, 42 deletions(-)
15
16 diff --git a/dev-python/cairocffi/Manifest b/dev-python/cairocffi/Manifest
17 index 107da076235..b9dae2d62c3 100644
18 --- a/dev-python/cairocffi/Manifest
19 +++ b/dev-python/cairocffi/Manifest
20 @@ -1,2 +1 @@
21 -DIST cairocffi-1.2.0.tar.gz 70393 BLAKE2B b5cc69ec2805524e8f66a6234c4e19502181fad18c754379d91b05c2d2a88c82742f2b2057afcaac93f4d23ee64b41b2e84f029b6cb4ce2e7b3fa81ae0e8a485 SHA512 0f5b58ae85b2cc880bfb8ede6cbfe4905737211dab5b080815eb59f7cdd9c580367b9e00e7216d68ea9cbb84bda3f21ddcbccb2e744b86d6da8b991cffb96caf
22 DIST cairocffi-1.3.0.tar.gz 88784 BLAKE2B 022634825febd3d70a0115f0632e9b146719a2ab802583e0f57ebbd36c65c9e73f4547dbc5ea3651b8b38a043d519f000e908c34b77f3bf49e2ed5ded1a0ca02 SHA512 be459a5f4c1986cf339b7b15fdb7d3ac52476c8c31ff663b4708917ce8abd6fc66860d1966744b69aebf7aebca4415b32166df79505ad42f315ffd76d7163d7e
23
24 diff --git a/dev-python/cairocffi/cairocffi-1.2.0.ebuild b/dev-python/cairocffi/cairocffi-1.2.0.ebuild
25 deleted file mode 100644
26 index 1170ff57163..00000000000
27 --- a/dev-python/cairocffi/cairocffi-1.2.0.ebuild
28 +++ /dev/null
29 @@ -1,41 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI="7"
34 -
35 -PYTHON_COMPAT=( python3_{8..10} )
36 -
37 -inherit distutils-r1 virtualx
38 -
39 -DESCRIPTION="CFFI-based drop-in replacement for Pycairo"
40 -HOMEPAGE="https://github.com/Kozea/cairocffi"
41 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="BSD"
44 -SLOT="0"
45 -KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
46 -
47 -RDEPEND="
48 - $(python_gen_cond_dep '
49 - >=dev-python/cffi-1.1.0:=[${PYTHON_USEDEP}]
50 - ' 'python*')
51 - >=dev-python/xcffib-0.3.2[${PYTHON_USEDEP}]
52 - x11-libs/cairo:0=[X,xcb(+)]
53 - x11-libs/gdk-pixbuf[jpeg]"
54 -BDEPEND="
55 - test? ( dev-python/numpy[${PYTHON_USEDEP}] )"
56 -
57 -distutils_enable_tests pytest
58 -
59 -PATCHES=(
60 - "${FILESDIR}"/${PN}-0.8.0-tests.patch
61 -)
62 -
63 -src_prepare() {
64 - sed -i -e '/pytest-/d' -e '/addopts/d' setup.cfg || die
65 - distutils-r1_src_prepare
66 -}
67 -
68 -python_test() {
69 - virtx pytest -vv --pyargs cairocffi
70 -}