Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-config/
Date: Thu, 09 Jan 2020 19:06:33
Message-Id: 1578596781.edab536cf32c8976be2afb5ab0cdfcb76d51d68c.prometheanfire@gentoo
1 commit: edab536cf32c8976be2afb5ab0cdfcb76d51d68c
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 9 19:00:38 2020 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 9 19:06:21 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edab536c
7
8 dev-python/oslo-config: 6.11.2 bump
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 dev-python/oslo-config/Manifest | 1 +
14 dev-python/oslo-config/oslo-config-6.11.2.ebuild | 49 ++++++++++++++++++++++++
15 2 files changed, 50 insertions(+)
16
17 diff --git a/dev-python/oslo-config/Manifest b/dev-python/oslo-config/Manifest
18 index 58dd6fd4ecb..7674635167d 100644
19 --- a/dev-python/oslo-config/Manifest
20 +++ b/dev-python/oslo-config/Manifest
21 @@ -1,2 +1,3 @@
22 +DIST oslo-config-6.11.2.tar.gz 152842 BLAKE2B 9217232e11252cd59bed9ae35ebad28fe8013f5608fe45544f7fb1d35cfb0a27c1172fd2f565f812ca3d9672d30df2962ac51de551cc50c8fefaae2266943959 SHA512 47e92c14d873a127e12fa734d975032bfa560a624111625b622d1b1896ce6e786ca661312afa894176941d4e8b13a2f6f5b44a05092e23f5fe1f8f78596498ae
23 DIST oslo-config-6.4.1.tar.gz 144762 BLAKE2B 467e139767b6afd82e1c0d39841765c93e4c23b208e676bfd4c64512a71f6c432a1431d5bf902d268152fa3011e864173f6a766bca560efaadce7a713fa919b7 SHA512 97a47931fe98c6a19ecfe38fa8aae50e91e955db879b96988560db16c0ec775ce294cf0c9b45e62aa7dea67ec43cbfebf4a77e168f0c348bb03066c832dc40a3
24 DIST oslo-config-6.8.1.tar.gz 149525 BLAKE2B 0676ac364410c5d2eb6c4d75b85c18d0cbb50cff33954a2afc96f4f779606912d46c0627b0d77fd63795f43e26baab113cfba409eb86e5a8c8353253542bdecb SHA512 d861120e35332411e7caba1ce1b37a2ad16d986ff2063d731edfa0cd6603000fd7f1abf6ebb611c7efbb6d3c4296c0ffb9ccea2c2cd6ba6bf7b18c53daa09f15
25
26 diff --git a/dev-python/oslo-config/oslo-config-6.11.2.ebuild b/dev-python/oslo-config/oslo-config-6.11.2.ebuild
27 new file mode 100644
28 index 00000000000..50fbcd8d4a9
29 --- /dev/null
30 +++ b/dev-python/oslo-config/oslo-config-6.11.2.ebuild
31 @@ -0,0 +1,49 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +PYTHON_COMPAT=( python2_7 python3_{6,7} )
37 +
38 +inherit distutils-r1
39 +
40 +MY_PN=${PN/-/.}
41 +
42 +DESCRIPTION="Oslo Configuration API"
43 +HOMEPAGE="https://launchpad.net/oslo"
44 +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
45 +S="${WORKDIR}/${MY_PN}-${PV}"
46 +
47 +LICENSE="Apache-2.0"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
50 +IUSE=""
51 +
52 +CDEPEND=">=dev-python/pbr-1.3[${PYTHON_USEDEP}]"
53 +DEPEND="
54 + dev-python/setuptools[${PYTHON_USEDEP}]
55 + ${CDEPEND}
56 +"
57 +RDEPEND="
58 + ${CDEPEND}
59 + >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
60 + >=dev-python/netaddr-0.7.18[${PYTHON_USEDEP}]
61 + >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
62 + >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
63 + >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
64 + >=dev-python/rfc3986-1.2.0[${PYTHON_USEDEP}]
65 + >=dev-python/pyyaml-3.12.0[${PYTHON_USEDEP}]
66 + virtual/python-enum34[${PYTHON_USEDEP}]
67 + >=dev-python/requests-2.18.0[${PYTHON_USEDEP}]
68 +"
69 +
70 +python_prepare_all() {
71 + sed -i '/^hacking/d' test-requirements.txt || die
72 + distutils-r1_python_prepare_all
73 +}
74 +
75 +python_test() {
76 + rm -rf .testrepository || die "could not remove '.testrepository' under ${EPTYHON}"
77 +
78 + testr init || die "testr init failed under ${EPYTHON}"
79 + testr run || die "testr run failed under ${EPYTHON}"
80 +}