diff options
author | Matthew Thode <prometheanfire@gentoo.org> | 2015-09-18 23:14:01 -0500 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2015-09-18 23:14:39 -0500 |
commit | 7fa9f98d4f91db1be34afae3306337158c8df28c (patch) | |
tree | add194c5cee578c64bf3b926c3c664cd0856061f /dev-python/python-troveclient/python-troveclient-1.3.0.ebuild | |
parent | media-tv/kodi: enable texturepacker again and depend on giflib #558678 (diff) | |
download | gentoo-7fa9f98d4f91db1be34afae3306337158c8df28c.tar.gz gentoo-7fa9f98d4f91db1be34afae3306337158c8df28c.tar.bz2 gentoo-7fa9f98d4f91db1be34afae3306337158c8df28c.zip |
dev-python/python-troveclient: bup for bug 560754
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'dev-python/python-troveclient/python-troveclient-1.3.0.ebuild')
-rw-r--r-- | dev-python/python-troveclient/python-troveclient-1.3.0.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/dev-python/python-troveclient/python-troveclient-1.3.0.ebuild b/dev-python/python-troveclient/python-troveclient-1.3.0.ebuild new file mode 100644 index 000000000000..94b3bd7286ac --- /dev/null +++ b/dev-python/python-troveclient/python-troveclient-1.3.0.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="This is a client for the OpenStack Trove API, a scalable relational database service" +HOMEPAGE="https://github.com/openstack/python-troveclient" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}] + <dev-python/pbr-2.0[${PYTHON_USEDEP}]" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + ${CDEPEND} + test? ( + >=dev-python/coverage-3.6[${PYTHON_USEDEP}] + >=dev-python/oslo-sphinx-2.5.0[${PYTHON_USEDEP}] + >=dev-python/requests-mock-0.6.0[${PYTHON_USEDEP}] + >=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}] + !~dev-python/sphinx-1.2[${PYTHON_USEDEP}] + <dev-python/sphinx-1.3[${PYTHON_USEDEP}] + >=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}] + >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}] + >=dev-python/testtools-1.4.0[${PYTHON_USEDEP}] + >=dev-python/mock-1.2[${PYTHON_USEDEP}] + >=dev-python/httplib2-0.7.5[${PYTHON_USEDEP}] + )" +RDEPEND=" + >=dev-python/prettytable-0.7[${PYTHON_USEDEP}] + <dev-python/prettytable-0.8[${PYTHON_USEDEP}] + >=dev-python/requests-2.5.2[${PYTHON_USEDEP}] + >=dev-python/simplejson-2.2.0[${PYTHON_USEDEP}] + >=dev-python/oslo-utils-2.0.0[${PYTHON_USEDEP}] + >=dev-python/python-keystoneclient-1.6.0[${PYTHON_USEDEP}] + >=dev-python/Babel-1.3[${PYTHON_USEDEP}] + >=dev-python/six-1.9.0[${PYTHON_USEDEP}]" + +python_prepare_all() { + sed -i '/^argparse/d' requirements.txt || die + sed -i '/^hacking/d' test-requirements.txt || die + distutils-r1_python_prepare_all +} + +python_test() { + testr init + testr run --parallel || die "testsuite failed under python2.7" +} |