# Copyright 1999-2018 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="Oslo VMware library for OpenStack projects" HOMEPAGE="https://pypi.org/project/oslo.vmware/" SRC_URI="mirror://pypi/${PN:0:1}/oslo.vmware/oslo.vmware-${PV}.tar.gz" S="${WORKDIR}/oslo.vmware-${PV}" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="amd64 ~arm64 x86" IUSE="test" CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] !~dev-python/pbr-2.1.0" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] ${CDEPEND} test? ( >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}] >=dev-python/mock-2.0.0[${PYTHON_USEDEP}] >=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}] >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}] >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}] >=dev-python/coverage-4.0[${PYTHON_USEDEP}] !~dev-python/coverage-4.4[${PYTHON_USEDEP}] >=dev-python/openstackdocstheme-1.17.0[${PYTHON_USEDEP}] >=dev-python/sphinx-1.6.2[${PYTHON_USEDEP}] >=dev-python/reno-2.5.0[${PYTHON_USEDEP}] >=dev-python/bandit-1.1.0[${PYTHON_USEDEP}] >=dev-python/ddt-1.0.1[${PYTHON_USEDEP}] dev-python/nose[${PYTHON_USEDEP}] )" RDEPEND=" ${CDEPEND} >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}] >=dev-python/netaddr-0.7.18[${PYTHON_USEDEP}] >=dev-python/six-1.10.0[${PYTHON_USEDEP}] >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}] >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}] >=dev-python/pyyaml-3.10.0[${PYTHON_USEDEP}] >=dev-python/lxml-2.4.1[${PYTHON_USEDEP}] !~dev-python/lxml-3.7.0[${PYTHON_USEDEP}] >=dev-python/suds-0.6[${PYTHON_USEDEP}] >=dev-python/eventlet-0.18.4[${PYTHON_USEDEP}] !~dev-python/eventlet-0.20.1[${PYTHON_USEDEP}] =dev-python/requests-2.14.2[${PYTHON_USEDEP}] >=dev-python/urllib3-1.21.1[${PYTHON_USEDEP}] >=dev-python/oslo-concurrency-3.20.0[${PYTHON_USEDEP}] " python_prepare() { sed -i '/^suds-jurko/d' requirements.txt || die sed -i '/^hacking/d' test-requirements.txt || die } python_test() { nosetests tests/ || die "test failed under ${EPYTHON}" }