2013-01-02 00:22:39 +04:00
|
|
|
# Copyright 1999-2013 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2013-11-10 03:01:32 +04:00
|
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/python-keystoneclient/python-keystoneclient-9999.ebuild,v 1.8 2013/11/09 08:52:41 idella4 Exp $
|
2013-01-02 00:22:39 +04:00
|
|
|
|
|
|
|
EAPI=5
|
|
|
|
#restricted due to packages missing and bad depends in the test ==webob-1.0.8
|
|
|
|
RESTRICT="test"
|
2013-09-14 19:24:11 +04:00
|
|
|
#PYTHON_COMPAT=( python2_5 python2_6 python2_7 )
|
2013-03-12 00:44:33 +04:00
|
|
|
PYTHON_COMPAT=( python2_7 )
|
2013-01-02 00:22:39 +04:00
|
|
|
|
2013-09-14 19:24:11 +04:00
|
|
|
inherit distutils-r1 git-2
|
2013-01-02 00:22:39 +04:00
|
|
|
|
2013-01-12 19:23:10 +04:00
|
|
|
DESCRIPTION="A client for the OpenStack Keystone API"
|
2013-01-02 00:22:39 +04:00
|
|
|
HOMEPAGE="https://github.com/openstack/python-keystoneclient"
|
|
|
|
EGIT_REPO_URI="https://github.com/openstack/python-keystoneclient.git"
|
|
|
|
|
|
|
|
LICENSE="Apache-2.0"
|
|
|
|
SLOT="0"
|
2013-09-27 22:53:11 +04:00
|
|
|
KEYWORDS=""
|
2013-03-12 00:44:33 +04:00
|
|
|
IUSE="test"
|
2013-01-02 00:22:39 +04:00
|
|
|
|
2013-03-12 00:44:33 +04:00
|
|
|
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
|
|
|
|
test? ( dev-python/Babel[${PYTHON_USEDEP}]
|
|
|
|
dev-python/coverage[${PYTHON_USEDEP}]
|
|
|
|
dev-python/fixtures[${PYTHON_USEDEP}]
|
|
|
|
dev-python/keyring[${PYTHON_USEDEP}]
|
|
|
|
dev-python/mock[${PYTHON_USEDEP}]
|
|
|
|
dev-python/mox[${PYTHON_USEDEP}]
|
|
|
|
dev-python/nose[${PYTHON_USEDEP}]
|
|
|
|
dev-python/nose-exclude[${PYTHON_USEDEP}]
|
|
|
|
dev-python/nosehtmloutput[${PYTHON_USEDEP}]
|
|
|
|
dev-python/openstack-nose-plugin[${PYTHON_USEDEP}]
|
2013-09-14 19:24:11 +04:00
|
|
|
=dev-python/pep8-1.4.5[${PYTHON_USEDEP}]
|
2013-03-12 00:44:33 +04:00
|
|
|
>=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}]
|
|
|
|
>=dev-python/testtools-0.9.22[${PYTHON_USEDEP}]
|
|
|
|
dev-python/unittest2[${PYTHON_USEDEP}]
|
2013-09-14 19:24:11 +04:00
|
|
|
>=dev-python/webob-1.0.8[${PYTHON_USEDEP}] )"
|
|
|
|
RDEPEND=">=dev-python/d2to1-0.2.10[${PYTHON_USEDEP}]
|
|
|
|
<dev-python/d2to1-0.3[${PYTHON_USEDEP}]
|
|
|
|
>=dev-python/iso8601-0.1.4[${PYTHON_USEDEP}]
|
2013-09-27 22:53:11 +04:00
|
|
|
>=dev-python/oslo-config-1.2.0[${PYTHON_USEDEP}]
|
2013-09-14 19:24:11 +04:00
|
|
|
>=dev-python/pbr-0.5[${PYTHON_USEDEP}]
|
|
|
|
<dev-python/pbr-0.6[${PYTHON_USEDEP}]
|
|
|
|
>=dev-python/prettytable-0.6[${PYTHON_USEDEP}]
|
|
|
|
<dev-python/prettytable-0.8[${PYTHON_USEDEP}]
|
|
|
|
>=dev-python/requests-0.8.8[${PYTHON_USEDEP}]
|
2013-01-12 19:23:10 +04:00
|
|
|
dev-python/simplejson[${PYTHON_USEDEP}]
|
2013-09-14 19:24:11 +04:00
|
|
|
dev-python/six[${PYTHON_USEDEP}]
|
2013-01-12 19:23:10 +04:00
|
|
|
virtual/python-argparse[${PYTHON_USEDEP}]"
|
2013-03-12 00:44:33 +04:00
|
|
|
|
2013-09-14 19:24:11 +04:00
|
|
|
PATCHES=(
|
|
|
|
)
|
|
|
|
# "${FILESDIR}/0.2.3-CVE-2013-2104.patch"
|
|
|
|
|
2013-03-12 00:44:33 +04:00
|
|
|
python_test() {
|
2013-11-10 03:01:32 +04:00
|
|
|
nosetests || die "testsuite failed"
|
2013-03-12 00:44:33 +04:00
|
|
|
}
|