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-manilaclient/
Date: Mon, 27 Feb 2017 06:43:34
Message-Id: 1488177775.1ce4a354e07f70fdc443ca0b2672114efaa5c554.prometheanfire@gentoo
1 commit: 1ce4a354e07f70fdc443ca0b2672114efaa5c554
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 27 06:23:53 2017 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 27 06:42:55 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ce4a354
7
8 dev-python/python-manilaclient: bup
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-python/python-manilaclient/Manifest | 1 +
13 .../python-manilaclient-1.14.0.ebuild | 42 ++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/dev-python/python-manilaclient/Manifest b/dev-python/python-manilaclient/Manifest
17 index 6a9cfae858..c375cc5314 100644
18 --- a/dev-python/python-manilaclient/Manifest
19 +++ b/dev-python/python-manilaclient/Manifest
20 @@ -1 +1,2 @@
21 DIST python-manilaclient-1.11.0.tar.gz 167117 SHA256 5a6aa5002be88bf7d3af0d4439fab54b7288165cd17ccbd855c622184ea8b8fc SHA512 7427b3a54d75ad014d3b859a51d9693ab964a1a5376a64e396f16b308619f23183f610299ced2a76aeab2eddf47310435c7c654dec662dad9e13089d93e284b3 WHIRLPOOL d546d55739525eb3e30c217eaa2b7d5a3065299ac710bdabe99cb56980ba66b86ed8dd4048adf7b422811365f0eebe4417bfcb3ea010e034ed0add816afb0fba
22 +DIST python-manilaclient-1.14.0.tar.gz 193535 SHA256 21b5c2a0b2b74815db653cf3447fa3fd7cb9b8f221fcf46d5f692e79a5add4bd SHA512 9cfeffa8919af788b50b2753d722ee5472b45332a8e8dcfd290719344d1d6e7c7880ba0166ccc1c39b1eb15adaa1d8b012d923a04f4ba5b3a2a9774af981bb6a WHIRLPOOL 1492f8d38ece6e731f75d7437ad9a37f14cf4824025bbd18bc8411ed46cb86fde9483302b272c9e7fd8cae9588a7b295ab001897979b9a162bbfd92a69648fc2
23
24 diff --git a/dev-python/python-manilaclient/python-manilaclient-1.14.0.ebuild b/dev-python/python-manilaclient/python-manilaclient-1.14.0.ebuild
25 new file mode 100644
26 index 0000000000..cd487b0ec2
27 --- /dev/null
28 +++ b/dev-python/python-manilaclient/python-manilaclient-1.14.0.ebuild
29 @@ -0,0 +1,42 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +PYTHON_COMPAT=( python2_7 python3_4 python3_5 )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="A client for the OpenStack Manila API"
40 +HOMEPAGE="https://github.com/openstack/python-manilaclient"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="Apache-2.0"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
46 +
47 +CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]"
48 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
49 + ${CDEPEND}"
50 +RDEPEND="
51 + ${CDEPEND}
52 + >=dev-python/oslo-config-3.14.0[${PYTHON_USEDEP}]
53 + !~dev-python/oslo-config-3.18.0[${PYTHON_USEDEP}]
54 + >=dev-python/oslo-log-3.11.0[${PYTHON_USEDEP}]
55 + >=dev-python/oslo-serialization-1.10.0[${PYTHON_USEDEP}]
56 + >=dev-python/oslo-utils-3.18.0[${PYTHON_USEDEP}]
57 + >=dev-python/prettytable-0.7.1[${PYTHON_USEDEP}]
58 + <dev-python/prettytable-0.8[${PYTHON_USEDEP}]
59 + >=dev-python/requests-2.10.0[${PYTHON_USEDEP}]
60 + !~dev-python/requests-2.12.2[${PYTHON_USEDEP}]
61 + >=dev-python/simplejson-2.2.0[${PYTHON_USEDEP}]
62 + >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}]
63 + >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
64 + >=dev-python/python-keystoneclient-3.8.0[${PYTHON_USEDEP}]
65 +"
66 +
67 +python_prepare_all() {
68 + # built in...
69 + sed -i '/^hacking/d' test-requirements.txt || die
70 + distutils-r1_python_prepare_all
71 +}