commit:     b9db26936bc3692ea383a41821b06747733333ef
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 18 11:12:28 2017 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Sat Nov 18 11:18:07 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9db2693

dev-python/riak-python-client: migrate to protobuf-python

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 .../riak-python-client-2.7.0-r1.ebuild             | 39 ++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/dev-python/riak-python-client/riak-python-client-2.7.0-r1.ebuild 
b/dev-python/riak-python-client/riak-python-client-2.7.0-r1.ebuild
new file mode 100644
index 00000000000..1ddd41aaf6e
--- /dev/null
+++ b/dev-python/riak-python-client/riak-python-client-2.7.0-r1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="The Riak client for Python."
+HOMEPAGE="https://github.com/basho/riak-python-client/";
+MY_PN=${PN%%-*}
+MY_P=${MY_PN}-${PV}
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-python/basho-erlastic[${PYTHON_USEDEP}]
+       dev-python/protobuf-python[${PYTHON_USEDEP}]
+       >=dev-python/six-1.8[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+       dev-python/setuptools[${PYTHON_USEDEP}]"
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+       default
+       # delete protobuf requirements that only work for pip
+       sed '17,22d' -i setup.py || die
+       sed -e "s:'\\\\n\\\\027:b\\0:" \
+               -e "s:serialized_pb=:\\0b:" \
+               -i riak/pb/*.py || die
+}
+
+python_test() {
+       esetup.py test || die
+}

Reply via email to