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-context/
Date: Thu, 30 Aug 2018 17:09:23
Message-Id: 1535648946.b20b0b3b276df43d8c98e3b8f98ce026bb284cdc.prometheanfire@gentoo
1 commit: b20b0b3b276df43d8c98e3b8f98ce026bb284cdc
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 30 16:51:47 2018 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 30 17:09:06 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b20b0b3b
7
8 dev-python/oslo-context: 2.21.0 bump
9
10 Package-Manager: Portage-2.3.48, Repoman-2.3.10
11
12 dev-python/oslo-context/Manifest | 1 +
13 dev-python/oslo-context/oslo-context-2.21.0.ebuild | 45 ++++++++++++++++++++++
14 2 files changed, 46 insertions(+)
15
16 diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
17 index f723f91c4be..ce3c2b4f4cd 100644
18 --- a/dev-python/oslo-context/Manifest
19 +++ b/dev-python/oslo-context/Manifest
20 @@ -1 +1,2 @@
21 DIST oslo.context-2.20.0.tar.gz 28203 BLAKE2B cbb3cb6f30b1b16011caa6fdec36c19aae571125b88f642bfc52c5a8a63a2b17eb308628d9a5f19b8a0c3bd28fb0db54e5485abd10c90c9495de05263ac25709 SHA512 ce7bd92c7e22e02e91bdc86e9b697f746233a41081b4f3ebb9fe30fec8000c69f732f55de0d333b349b8e01e638ddc835fd3cf0d8f7a11aa3454466a1e87ad08
22 +DIST oslo.context-2.21.0.tar.gz 27605 BLAKE2B fa2be8819c3b5c46e12eacae12c665e8168c4d8ac88fe7e8b8c3454093ea14d1a5980d1ecc377eb7294d913e117cf5188571be3bf678f270712e09c5230f2f7e SHA512 af25aebd306d0a3d60032778e6e3ca10b976e758c10e5d02302ebfef6a6183c8f9a102e9b4c2c8400914d71976dff284654bbcec63c15192dcfd2605928596eb
23
24 diff --git a/dev-python/oslo-context/oslo-context-2.21.0.ebuild b/dev-python/oslo-context/oslo-context-2.21.0.ebuild
25 new file mode 100644
26 index 00000000000..4d0db0d234d
27 --- /dev/null
28 +++ b/dev-python/oslo-context/oslo-context-2.21.0.ebuild
29 @@ -0,0 +1,45 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Helpers to maintain useful information about a request context"
40 +HOMEPAGE="https://pypi.org/project/oslo.context/"
41 +SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
42 +
43 +LICENSE="Apache-2.0"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm64 ~x86"
46 +IUSE="test"
47 +
48 +CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
49 + !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
50 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
51 + ${CDEPEND}
52 + test? (
53 + >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
54 + >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
55 + >=dev-python/coverage-4.0[${PYTHON_USEDEP}]
56 + !~dev-python/coverage-4.4[${PYTHON_USEDEP}]
57 + >=dev-python/bandit-1.1.0[${PYTHON_USEDEP}]
58 + )"
59 +RDEPEND="
60 + ${CDEPEND}
61 + >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
62 +"
63 +
64 +S="${WORKDIR}/oslo.context-${PV}"
65 +
66 +python_prepare_all() {
67 + sed -i '/^hacking/d' test-requirements.txt || die
68 + distutils-r1_python_prepare_all
69 +}
70 +
71 +# This time half the doc files are missing; Do you want them?
72 +python_test() {
73 + nosetests tests/ || die "test failed under ${EPYTHON}"
74 +}