diff options
author | 2020-11-16 01:00:25 +0100 | |
---|---|---|
committer | 2020-11-16 01:00:25 +0100 | |
commit | 0d51ce4b3d1a03c06abc775bb4eb9fdabdd6226d (patch) | |
tree | f52b1b341868839a9a39cd3908960e8f9fe08d1a | |
parent | dev-python/python-bugzilla: Remove old (diff) | |
download | gentoo-0d51ce4b3d1a03c06abc775bb4eb9fdabdd6226d.tar.gz gentoo-0d51ce4b3d1a03c06abc775bb4eb9fdabdd6226d.tar.bz2 gentoo-0d51ce4b3d1a03c06abc775bb4eb9fdabdd6226d.zip |
dev-python/oslotest: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | dev-python/oslotest/Manifest | 1 | ||||
-rw-r--r-- | dev-python/oslotest/oslotest-3.7.1.ebuild | 66 |
2 files changed, 0 insertions, 67 deletions
diff --git a/dev-python/oslotest/Manifest b/dev-python/oslotest/Manifest index cff8ef02abee..21137af14904 100644 --- a/dev-python/oslotest/Manifest +++ b/dev-python/oslotest/Manifest @@ -1,2 +1 @@ -DIST oslotest-3.7.1.tar.gz 38176 BLAKE2B 94924dca8384dcc8ba9e4f62220eb6d29b27b38966ffce7dddbd23d5c5e66493141ce4170565325a0516648db186a0171cd33de6d536bb8ed5cdef76161d4f94 SHA512 dfc55bc91ebd8ef448d4c69b2af51b8f2a9f2068b2ef2ec1cfbcfffc27eff7ccafb00dc2a3059730427aecbcd815f9dee2f00b8c74df154c8dbb95793aff7e78 DIST oslotest-4.4.1.tar.gz 34879 BLAKE2B dd7241793f88f31c9427e07b07c015a0f8fe39f65c59341be0874fd4f9b735d1da3b105213d77bfc8cec3ea0d7587cd770a88c2a4b59902c595e9fefa5dc4730 SHA512 e4d60ab399b4eee02d1798948f62ad3acec0d9a81e6ec3b6a8d3dca7035dec0d79a5164c05e8ca4615b0489f44b6ff0c06e6420bf3d96131d15f3458e751896d diff --git a/dev-python/oslotest/oslotest-3.7.1.ebuild b/dev-python/oslotest/oslotest-3.7.1.ebuild deleted file mode 100644 index 27baf64502ea..000000000000 --- a/dev-python/oslotest/oslotest-3.7.1.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{6,7} ) - -inherit distutils-r1 - -DESCRIPTION="Oslo test framework" -HOMEPAGE="https://launchpad.net/oslo" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" -IUSE="doc test" -RESTRICT="!test? ( test )" - -CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]" -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - ${CDEPEND} - test? ( - >=dev-python/oslo-config-5.2.0[${PYTHON_USEDEP}] - >=dev-python/stestr-2.0.0[${PYTHON_USEDEP}] - ) - doc? ( - >=dev-python/openstackdocstheme-1.18.1[${PYTHON_USEDEP}] - >=dev-python/sphinx-1.6.2[${PYTHON_USEDEP}] - !~dev-python/sphinx-1.6.6[${PYTHON_USEDEP}] - !~dev-python/sphinx-1.6.7[${PYTHON_USEDEP}] - >=dev-python/reno-2.5.0[${PYTHON_USEDEP}] - ) -" -RDEPEND=" - >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}] - >=dev-python/subunit-1.0.0[${PYTHON_USEDEP}] - >=dev-python/six-1.10.0[${PYTHON_USEDEP}] - >=dev-python/stestr-2.0.0[${PYTHON_USEDEP}] - >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}] - >=dev-python/mock-2.0.0[${PYTHON_USEDEP}] - >=dev-python/mox3-0.20.0[${PYTHON_USEDEP}] - >=dev-python/os-client-config-1.28.0[${PYTHON_USEDEP}] - >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}] -" - -python_compile_all() { - if use doc; then - esetup.py build_sphinx -b man - fi -} - -python_test() { - rm -rf .testrepository || die "couldn't remove '.testrepository' under ${EPYTHON}" - - testr init || die "testr init failed under ${EPYTHON}" - testr run || die "testr run failed under ${EPYTHON}" -} - -python_install_all() { - if use doc; then - doman doc/build/man/oslotest.1 - fi - - distutils-r1_python_install_all -} |