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-policy/
Date: Sat, 17 Feb 2018 01:47:39
Message-Id: 1518831495.6bbd82c8ad6bb5971fc77d472b5392137c678140.prometheanfire@gentoo
1 commit: 6bbd82c8ad6bb5971fc77d472b5392137c678140
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 17 01:04:50 2018 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 17 01:38:15 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bbd82c8
7
8 dev-python/oslo-policy: 1.33.1 bup
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 dev-python/oslo-policy/Manifest | 1 +
13 dev-python/oslo-policy/oslo-policy-1.33.1.ebuild | 41 ++++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/dev-python/oslo-policy/Manifest b/dev-python/oslo-policy/Manifest
17 index 80323a4bb5c..084ddb9eec5 100644
18 --- a/dev-python/oslo-policy/Manifest
19 +++ b/dev-python/oslo-policy/Manifest
20 @@ -1 +1,2 @@
21 DIST oslo.policy-1.25.2.tar.gz 72984 BLAKE2B 7f2e4d48309082c1069ffcb561502c71b86e0c5508bb07cff943a1fc32fbbec8a232451937b678842909779e94b7eecdd5f2991152e0c8ca557a58b1ce137fc7 SHA512 8d66fe73d7b9d381c54997d980833e4e5d429a9ca28343adf777af20042694bf5dd878f9c1a9ed7168c075816e4b37263f9b520274bbdccbe0c6649b7cd7d213
22 +DIST oslo.policy-1.33.1.tar.gz 74314 BLAKE2B dda781284b77a6677f9a5dd55473bc239a5b482e635a8e0e808f918ad7aa6f2a8178676f9584a15c418cad373e9f34f6a24bfc462c053f06d0993786fb5ede0d SHA512 50d2c146afe04f669c0d7f3e7309a9d03883ca72fece4135e20f7d8a75b71a5a69b9b5b26e36b6afb0fd162c4ddcc5566c08cdf26dbf3bd9679f5ff75c27d722
23
24 diff --git a/dev-python/oslo-policy/oslo-policy-1.33.1.ebuild b/dev-python/oslo-policy/oslo-policy-1.33.1.ebuild
25 new file mode 100644
26 index 00000000000..16797b7c55c
27 --- /dev/null
28 +++ b/dev-python/oslo-policy/oslo-policy-1.33.1.ebuild
29 @@ -0,0 +1,41 @@
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="Support for RBAC policy enforcement across all OpenStack services"
40 +HOMEPAGE="https://pypi.python.org/pypi/oslo.policy"
41 +SRC_URI="mirror://pypi/${PN:0:1}/oslo.policy/oslo.policy-${PV}.tar.gz"
42 +
43 +LICENSE="Apache-2.0"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm64 ~x86"
46 +IUSE=""
47 +
48 +CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
49 + !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
50 +DEPEND="
51 + dev-python/setuptools[${PYTHON_USEDEP}]
52 + ${CDEPEND}"
53 +RDEPEND="
54 + ${CDEPEND}
55 + >=dev-python/requests-2.14.2[${PYTHON_USEDEP}]
56 + >=dev-python/oslo-config-5.1.0[${PYTHON_USEDEP}]
57 + >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
58 + >=dev-python/oslo-serialization-1.18.0[${PYTHON_USEDEP}]
59 + !~dev-python/oslo-serialization-1.19.1[${PYTHON_USEDEP}]
60 + >=dev-python/pyyaml-3.10.0[${PYTHON_USEDEP}]
61 + >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
62 + >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
63 +"
64 +
65 +S="${WORKDIR}/oslo.policy-${PV}"
66 +
67 +python_prepare_all() {
68 + sed -i '/^hacking/d' test-requirements.txt || die
69 + distutils-r1_python_prepare_all
70 +}