Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cairocffi/
Date: Fri, 25 Sep 2015 18:45:22
Message-Id: 1443206532.3b193e465096601eeb5751dfa5f0ac4b51299b41.jlec@gentoo
1 commit: 3b193e465096601eeb5751dfa5f0ac4b51299b41
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 25 18:42:12 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 25 18:42:12 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b193e46
7
8 dev-python/cairocffi: Drop old
9
10 Package-Manager: portage-2.2.21
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/cairocffi/Manifest | 1 -
14 dev-python/cairocffi/cairocffi-0.6.ebuild | 49 -------------------------------
15 2 files changed, 50 deletions(-)
16
17 diff --git a/dev-python/cairocffi/Manifest b/dev-python/cairocffi/Manifest
18 index 4359105..856aeab 100644
19 --- a/dev-python/cairocffi/Manifest
20 +++ b/dev-python/cairocffi/Manifest
21 @@ -1,2 +1 @@
22 -DIST cairocffi-0.6.tar.gz 75183 SHA256 d14ea9daed510259717209ed9e2f68503fcbcbcf00c2c4f31b446b001ae109c0 SHA512 c27b443261db4c68e73d3da55a640ac2689dcefda6aa384d7c3e23acdc705f79e07524f8df9ecbe379cfd9f8855d50ad7dfe7392ad7a36d5a63d0124e483e5ec WHIRLPOOL d94edc81ae8638758b93f2cb1804943a8160b4f8e1d507ce36c5ec7a835ea6f4b96a06a31cbf687335029391a9ee3a099c707a64d02490caa2b30bc91d260d24
23 DIST cairocffi-0.7.2.tar.gz 75337 SHA256 e42b4256d27bd960cbf3b91a6c55d602defcdbc2a73f7317849c80279feeb975 SHA512 a4b5798ee713a8847ebd21ef328b3e0a94403ce1e80ac108f6d8e4abffbf96551542bb5c848550d82bcebb3d9f645c90ea87fc3eb254bd8e9d57b6a55db76de1 WHIRLPOOL e907633b46dce856df4777598250e40da7a39ee4b6621376d30698237fb0a463d7f8bdf8e8838aa104d0751de62b6172057a0f8d1f53ce8315b419d3b3f64c5c
24
25 diff --git a/dev-python/cairocffi/cairocffi-0.6.ebuild b/dev-python/cairocffi/cairocffi-0.6.ebuild
26 deleted file mode 100644
27 index bf66655..0000000
28 --- a/dev-python/cairocffi/cairocffi-0.6.ebuild
29 +++ /dev/null
30 @@ -1,49 +0,0 @@
31 -# Copyright 1999-2015 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -# $Id$
34 -
35 -EAPI="5"
36 -
37 -PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="CFFI-based drop-in replacement for Pycairo"
42 -MY_PN="${PN}"
43 -MY_P="${MY_PN}-${PV}"
44 -SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
45 -HOMEPAGE="https://github.com/SimonSapin/cairocffi"
46 -
47 -LICENSE="BSD"
48 -SLOT="0"
49 -KEYWORDS="amd64 x86"
50 -IUSE="doc test"
51 -
52 -# xcffib is an optional extra excpet that the testsuite has it a hard coded unconditional component
53 -RDEPEND="
54 - $(python_gen_cond_dep '>=dev-python/cffi-0.6:=[${PYTHON_USEDEP}]' 'python*')
55 - x11-libs/cairo:0=
56 - <dev-python/xcffib-0.3[${PYTHON_USEDEP}]"
57 -
58 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
59 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
60 - test? ( ${RDEPEND}
61 - dev-python/pytest[${PYTHON_USEDEP}] )"
62 -
63 -# Intersphinx cause the usual d'loading of objects.inv from TWO online sites
64 -PATCHES=( "${FILESDIR}"/mapping.patch )
65 -
66 -S="${WORKDIR}/${MY_P}"
67 -
68 -python_compile_all() {
69 - use doc && esetup.py build_sphinx
70 -}
71 -
72 -python_test() {
73 - py.test ${PN}/ || die "testsuite failed under ${EPYTHON}"
74 -}
75 -
76 -python_install_all() {
77 - use doc && HTML_DOCS=( docs/_build/html/. )
78 - distutils-r1_python_install_all
79 -}