mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-24 20:48:31 -07:00
dev-python/riak-python-client: new package
Package-Manager: Portage-2.3.10, Repoman-2.3.3
This commit is contained in:
1
dev-python/riak-python-client/Manifest
Normal file
1
dev-python/riak-python-client/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST riak-python-client-2.7.0.tar.gz 194141 SHA256 1c676b90fef357f60adc135ccd180ac28945b61b1367198a2a63df86e9bac1ca SHA512 d63d031fb4b3598176480a3f1419158437ea814b46623a9a69e9105ced4172a1609d731bd163dd258c9301fa3b3c406a81f4c1068460b0ea397046fa6a1863e8 WHIRLPOOL b794eb6b5c7472bd487934b3b40ea38fe7b4886e5d209e16344852b3ed8d9041774b4932465ba247bad2999fd4cf5e296198716964b59c75f853ed54322db625
|
||||
11
dev-python/riak-python-client/metadata.xml
Normal file
11
dev-python/riak-python-client/metadata.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<upstream>
|
||||
<remote-id type="pypi">riak</remote-id>
|
||||
<remote-id type="github">basho/riak-python-client</remote-id>
|
||||
</upstream>
|
||||
<maintainer type="person">
|
||||
<email>zmedico@gentoo.org</email>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
@@ -0,0 +1,37 @@
|
||||
# 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-libs/protobuf[${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:" -i riak/pb/*.py || die
|
||||
}
|
||||
|
||||
python_test() {
|
||||
esetup.py test || die
|
||||
}
|
||||
Reference in New Issue
Block a user