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/python-blazarclient/
Date: Thu, 30 Aug 2018 23:12:58
Message-Id: 1535670739.701f8a54e7196c0a0077aeed7e6a716dbe39bd3c.prometheanfire@gentoo
1 commit: 701f8a54e7196c0a0077aeed7e6a716dbe39bd3c
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 30 23:09:32 2018 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 30 23:12:19 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=701f8a54
7
8 dev-python/python-blazarclient: initial add for heat rocky
9
10 Package-Manager: Portage-2.3.48, Repoman-2.3.10
11
12 dev-python/python-blazarclient/Manifest | 1 +
13 dev-python/python-blazarclient/metadata.xml | 14 +++++++++
14 .../python-blazarclient-2.0.0.ebuild | 35 ++++++++++++++++++++++
15 3 files changed, 50 insertions(+)
16
17 diff --git a/dev-python/python-blazarclient/Manifest b/dev-python/python-blazarclient/Manifest
18 new file mode 100644
19 index 00000000000..c84d2464ed5
20 --- /dev/null
21 +++ b/dev-python/python-blazarclient/Manifest
22 @@ -0,0 +1 @@
23 +DIST python-blazarclient-2.0.0.tar.gz 32078 BLAKE2B a8f7359485889d41c8e6a36f90f6279a366210d29e3080353fe32e6ee6929784c954c86f0e645d4cefe104132b557648ce27a59873a8248c68d02a0c954490c3 SHA512 af57b7a9d914ed216fe53f6e102ade25654fcf9cc0d4a422c912b2129f5905f47272ea959fab38f0ac23678e719c8b5807fa5e852b22f5f7418c72a17d25412a
24
25 diff --git a/dev-python/python-blazarclient/metadata.xml b/dev-python/python-blazarclient/metadata.xml
26 new file mode 100644
27 index 00000000000..5791a0bcc69
28 --- /dev/null
29 +++ b/dev-python/python-blazarclient/metadata.xml
30 @@ -0,0 +1,14 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="project">
35 + <email>python@g.o</email>
36 + </maintainer>
37 + <maintainer type="person">
38 + <email>prometheanfire@g.o</email>
39 + <name>Matthew Thode</name>
40 + </maintainer>
41 + <longdescription lang="en">
42 + This is a client for the OpenStack Blazar API.
43 + </longdescription>
44 +</pkgmetadata>
45
46 diff --git a/dev-python/python-blazarclient/python-blazarclient-2.0.0.ebuild b/dev-python/python-blazarclient/python-blazarclient-2.0.0.ebuild
47 new file mode 100644
48 index 00000000000..f03a38f9d41
49 --- /dev/null
50 +++ b/dev-python/python-blazarclient/python-blazarclient-2.0.0.ebuild
51 @@ -0,0 +1,35 @@
52 +# Copyright 1999-2018 Gentoo Foundation
53 +# Distributed under the terms of the GNU General Public License v2
54 +
55 +EAPI=6
56 +
57 +PYTHON_COMPAT=( python2_7 python3_4 python3_5 python3_6 )
58 +inherit distutils-r1
59 +
60 +DESCRIPTION="This is a client for the OpenStack Blazar API"
61 +HOMEPAGE="https://github.com/openstack/python-blazarclient"
62 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
63 +
64 +LICENSE="Apache-2.0"
65 +SLOT="0"
66 +KEYWORDS="~amd64 ~arm64 ~x86"
67 +IUSE=""
68 +
69 +CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
70 + !~dev-python/pbr-2.1.0"
71 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
72 + ${CDEPEND}"
73 +RDEPEND="
74 + ${CDEPEND}
75 + >=dev-python/cliff-2.8.0[${PYTHON_USEDEP}]
76 + !~dev-python/cliff-2.9.0[${PYTHON_USEDEP}]
77 + >=dev-python/prettytable-0.7.2[${PYTHON_USEDEP}]
78 + <dev-python/prettytable-0.8[${PYTHON_USEDEP}]
79 + >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
80 + >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}]
81 + !~dev-python/Babel-2.4.0[${PYTHON_USEDEP}]
82 + >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
83 + >=dev-python/oslo-log-3.36.0[${PYTHON_USEDEP}]
84 + >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
85 + >=dev-python/keystoneauth-3.4.0[${PYTHON_USEDEP}]
86 +"