Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-i18n/
Date: Sun, 28 Jan 2018 04:13:44
Message-Id: 1517112790.cebcd46df7a381b39c1c838838b5ac1a61331935.prometheanfire@gentoo
1 commit: cebcd46df7a381b39c1c838838b5ac1a61331935
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 28 03:56:20 2018 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 28 04:13:10 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cebcd46d
7
8 dev-python/oslo-i18n: remove ocata
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 dev-python/oslo-i18n/Manifest | 1 -
13 dev-python/oslo-i18n/oslo-i18n-3.12.0.ebuild | 62 ----------------------------
14 2 files changed, 63 deletions(-)
15
16 diff --git a/dev-python/oslo-i18n/Manifest b/dev-python/oslo-i18n/Manifest
17 index 6472c8810b9..54cba0facd5 100644
18 --- a/dev-python/oslo-i18n/Manifest
19 +++ b/dev-python/oslo-i18n/Manifest
20 @@ -1,2 +1 @@
21 -DIST oslo-i18n-3.12.0.tar.gz 40514 BLAKE2B b7b0cdca21fb44d8be43dc06758e90aa1ae07feaad234e93807770a1ccdd9d9406e4d2523c23ff975b7965929e4d234c2f82839307bf4865f0e4b54cb6372e32 SHA512 a19cfec1acb1461d6373ffe5c13c275ce50c4e817e613c3cccd56b90955d99088162089753fba3b3185ee44598013e965c030d011e56140f95958dc9bfec4b61
22 DIST oslo-i18n-3.17.1.tar.gz 42660 BLAKE2B 645a8341cf2bedf18932fbfa092b608da4169993a2a62aef36b869e975dfd662b7d52008aedf046b09ac10e4641e810902904b16e450a728b0f075fdee654977 SHA512 86d244eba7a887d4b8c3327487c9dd67c8e4baa52afdc05f94a229d6c1c951b8a25fc628f490320501773bb808afb8fb3b450a8d26e11b9a36a3c22baaa64544
23
24 diff --git a/dev-python/oslo-i18n/oslo-i18n-3.12.0.ebuild b/dev-python/oslo-i18n/oslo-i18n-3.12.0.ebuild
25 deleted file mode 100644
26 index 0cf87b88975..00000000000
27 --- a/dev-python/oslo-i18n/oslo-i18n-3.12.0.ebuild
28 +++ /dev/null
29 @@ -1,62 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
36 -
37 -inherit distutils-r1 vcs-snapshot
38 -
39 -MY_PN=${PN/-/.}
40 -
41 -DESCRIPTION="Oslo i18n library"
42 -HOMEPAGE="https://launchpad.net/oslo"
43 -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
44 -
45 -LICENSE="Apache-2.0"
46 -SLOT="0"
47 -KEYWORDS="amd64 ~arm64 x86"
48 -IUSE="doc test"
49 -
50 -CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]"
51 -DEPEND="
52 - dev-python/setuptools[${PYTHON_USEDEP}]
53 - ${CDEPEND}
54 - test? (
55 - >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
56 - >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
57 - >=dev-python/coverage-4.0[${PYTHON_USEDEP}]
58 - >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
59 - >=dev-python/oslo-config-3.14.0[${PYTHON_USEDEP}]
60 - !~dev-python/oslo-config-3.18.0[${PYTHON_USEDEP}]
61 - )
62 - doc? (
63 - >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
64 - >=dev-python/oslo-sphinx-4.7.0[${PYTHON_USEDEP}]
65 - >=dev-python/sphinx-1.2.1[${PYTHON_USEDEP}]
66 - <dev-python/sphinx-1.4[${PYTHON_USEDEP}]
67 - >=dev-python/reno-1.8.0[${PYTHON_USEDEP}]
68 - )
69 -"
70 -RDEPEND="
71 - ${CDEPEND}
72 - >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}]
73 - >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
74 -"
75 -
76 -python_compile_all() {
77 - use doc && esetup.py build_sphinx
78 -}
79 -
80 -python_test() {
81 - rm -rf .testrepository || die "couldn't remove '.testrepository' under ${EPYTHON}"
82 -
83 - testr init || die "testr init failed under ${EPYTHON}"
84 - testr run || die "testr run failed under ${EPYTHON}"
85 -}
86 -
87 -python_install_all() {
88 - use doc && local HTML_DOCS=( doc/build/html/. )
89 -
90 - distutils-r1_python_install_all
91 -}