Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/oslotest/
Date: Fri, 05 Jan 2018 13:26:29
Message-Id: 1515158762.1adc4ba7ea26030316252933d41ecad2c9422bb2.mgorny@gentoo
1 commit: 1adc4ba7ea26030316252933d41ecad2c9422bb2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 5 09:58:04 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 5 13:26:02 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1adc4ba7
7
8 dev-python/oslotest: Clean old up
9
10 dev-python/oslotest/Manifest | 1 -
11 dev-python/oslotest/oslotest-2.4.0.ebuild | 62 -------------------------------
12 2 files changed, 63 deletions(-)
13
14 diff --git a/dev-python/oslotest/Manifest b/dev-python/oslotest/Manifest
15 index 723c3413c88..d817bc4d986 100644
16 --- a/dev-python/oslotest/Manifest
17 +++ b/dev-python/oslotest/Manifest
18 @@ -1,2 +1 @@
19 DIST oslotest-2.17.1.tar.gz 32166 BLAKE2B 49922cedc32bebda867c6633118cbd8258a08048c510333d04e0b2f8f5efd4e5dde802bfb8910936dffca76823771d3e83e78528b5fd045ae4380e02f92cf809 SHA512 558d2c220a6b1235112022b495c77881f52895cb720d67090ad096576b4e81044b228bd95b8303779bf8cca2e1205ef912b1fedd1916a34130f4c68ef69fcc0d
20 -DIST oslotest-2.4.0.tar.gz 26392 BLAKE2B b34d478f9d18cf6582544499555c6daae5cd47e47731b17c835833b7cbbb65c652602c6642c0c682b0690dde495f5014b454a3c9e0a56b2f69b278935ebadd7c SHA512 20dfbf555741e72cd9ba41c0432e8c8af01ae7c07a9a740f71055f900a994790b420aa062313a59cdfddf4c80b7ca2aa0ee9ae2ee645ad525cbafeae3db68886
21
22 diff --git a/dev-python/oslotest/oslotest-2.4.0.ebuild b/dev-python/oslotest/oslotest-2.4.0.ebuild
23 deleted file mode 100644
24 index 615478411aa..00000000000
25 --- a/dev-python/oslotest/oslotest-2.4.0.ebuild
26 +++ /dev/null
27 @@ -1,62 +0,0 @@
28 -# Copyright 1999-2017 Gentoo Foundation
29 -# Distributed under the terms of the GNU General Public License v2
30 -
31 -EAPI=5
32 -
33 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
34 -
35 -inherit distutils-r1
36 -
37 -DESCRIPTION="Oslo test framework"
38 -HOMEPAGE="https://launchpad.net/oslo"
39 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
40 -
41 -LICENSE="Apache-2.0"
42 -SLOT="0"
43 -KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
44 -IUSE="doc test"
45 -
46 -CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]"
47 -DEPEND="
48 - dev-python/setuptools[${PYTHON_USEDEP}]
49 - ${CDEPEND}
50 - test? ( >=dev-python/oslo-config-3.7.0[${PYTHON_USEDEP}] )
51 - >=dev-python/oslo-sphinx-2.5.0[${PYTHON_USEDEP}]
52 - >=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}]
53 - !~dev-python/sphinx-1.2.0[${PYTHON_USEDEP}]
54 - <dev-python/sphinx-1.3[${PYTHON_USEDEP}]
55 -"
56 -RDEPEND="
57 - >=dev-python/fixtures-1.3.1[${PYTHON_USEDEP}]
58 - >=dev-python/subunit-0.0.18[${PYTHON_USEDEP}]
59 - >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
60 - >=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}]
61 - >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
62 - >=dev-python/testtools-1.4.0[${PYTHON_USEDEP}]
63 - >=dev-python/mock-1.2[${PYTHON_USEDEP}]
64 - >=dev-python/mox3-0.7.0[${PYTHON_USEDEP}]
65 - >=dev-python/os-client-config-1.13.1[${PYTHON_USEDEP}]
66 - >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
67 -"
68 -
69 -python_compile_all() {
70 - if use doc; then
71 - esetup.py build_sphinx
72 - else
73 - esetup.py build_sphinx -b man
74 - fi
75 -}
76 -
77 -python_test() {
78 - rm -rf .testrepository || die "couldn't remove '.testrepository' under ${EPYTHON}"
79 -
80 - testr init || die "testr init failed under ${EPYTHON}"
81 - testr run || die "testr run failed under ${EPYTHON}"
82 -}
83 -
84 -python_install_all() {
85 - doman doc/build/man/oslotest.1
86 - use doc && local HTML_DOCS=( doc/build/html/. )
87 -
88 - distutils-r1_python_install_all
89 -}