Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/riak-python-client/
Date: Thu, 26 Apr 2018 19:17:04
Message-Id: 1524770218.54084eda36f4594574b78873954a0c0bb54a7100.floppym@gentoo
1 commit: 54084eda36f4594574b78873954a0c0bb54a7100
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 26 19:16:43 2018 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 26 19:16:58 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54084eda
7
8 dev-python/riak-python-client: remove old
9
10 Package-Manager: Portage-2.3.31_p12, Repoman-2.3.9_p68
11
12 .../riak-python-client-2.7.0.ebuild | 37 ----------------------
13 1 file changed, 37 deletions(-)
14
15 diff --git a/dev-python/riak-python-client/riak-python-client-2.7.0.ebuild b/dev-python/riak-python-client/riak-python-client-2.7.0.ebuild
16 deleted file mode 100644
17 index dd9e09f6080..00000000000
18 --- a/dev-python/riak-python-client/riak-python-client-2.7.0.ebuild
19 +++ /dev/null
20 @@ -1,37 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
26 -
27 -inherit distutils-r1
28 -
29 -DESCRIPTION="The Riak client for Python."
30 -HOMEPAGE="https://github.com/basho/riak-python-client/"
31 -MY_PN=${PN%%-*}
32 -MY_P=${MY_PN}-${PV}
33 -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz -> ${P}.tar.gz"
34 -
35 -LICENSE="Apache-2.0"
36 -SLOT="0"
37 -KEYWORDS="~amd64 ~x86"
38 -IUSE=""
39 -
40 -RDEPEND="dev-python/basho-erlastic[${PYTHON_USEDEP}]
41 - dev-libs/protobuf[${PYTHON_USEDEP}]
42 - >=dev-python/six-1.8[${PYTHON_USEDEP}]"
43 -DEPEND="${RDEPEND}
44 - dev-python/setuptools[${PYTHON_USEDEP}]"
45 -
46 -S=${WORKDIR}/${MY_P}
47 -
48 -src_prepare() {
49 - default
50 - # delete protobuf requirements that only work for pip
51 - sed '17,22d' -i setup.py || die
52 - sed -e "s:'\\\\n\\\\027:b\\0:" -i riak/pb/*.py || die
53 -}
54 -
55 -python_test() {
56 - esetup.py test || die
57 -}