diff options
author | Matthew Thode <prometheanfire@gentoo.org> | 2016-12-07 09:16:19 -0600 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2016-12-07 09:16:19 -0600 |
commit | 3bdc115ba501d20dfac694463c5f3b18136b2878 (patch) | |
tree | de61c45a7c0d1e170eeb0b2c4b7ff151b895e3c7 /dev-python/python-mistralclient | |
parent | dev-php/pecl-stomp: Drop old (diff) | |
download | gentoo-3bdc115ba501d20dfac694463c5f3b18136b2878.tar.gz gentoo-3bdc115ba501d20dfac694463c5f3b18136b2878.tar.bz2 gentoo-3bdc115ba501d20dfac694463c5f3b18136b2878.zip |
dev-python/python-mistralclient: bup
Package-Manager: portage-2.3.0
Diffstat (limited to 'dev-python/python-mistralclient')
-rw-r--r-- | dev-python/python-mistralclient/Manifest | 1 | ||||
-rw-r--r-- | dev-python/python-mistralclient/python-mistralclient-2.1.2.ebuild | 39 |
2 files changed, 40 insertions, 0 deletions
diff --git a/dev-python/python-mistralclient/Manifest b/dev-python/python-mistralclient/Manifest index a9b760745168..e3743fc2b7da 100644 --- a/dev-python/python-mistralclient/Manifest +++ b/dev-python/python-mistralclient/Manifest @@ -1 +1,2 @@ DIST python-mistralclient-2.1.1.tar.gz 94287 SHA256 6c3d8b2d4c81490e12663e0152d92b850496403c29c232cb05095b8ea22f8984 SHA512 7f2e6ab7297faa1832fe9e46ed9bfc651597107579dd5dfa6e5b1c7c1741ee989ce2dab0797f689dcfdd7bb4955d79cef13dc2e8b24d3694c8e9b9c43f3a4db4 WHIRLPOOL c66d2923184e10bb8e1c25a9bd19220ff11f510ff0f8cdaafefdd49b149fa69f9a87948dc3a39bd4c82a008297243e673815345b810ff09e21c91eef4e626c10 +DIST python-mistralclient-2.1.2.tar.gz 94945 SHA256 0cb7cfa63eeaec320616a8ae068777e05415b431de270b05b97a24bbf3830166 SHA512 32c7bde09b3dad816c71d5d2347c50c0af07354c3badbc3c85678826b0176c08211b1d9d6bf3255544e14d85c3c7c0a17bbcab5dc611bbe23dc5821ba90d9bd3 WHIRLPOOL eb50aa4290dbeda8e91b776380a95146feb6f0acc6959881f250bc6d8ab33fc975edb68bd2ca18d5899bc16aaca09700e496cc8165818d23c88703823f81c4c1 diff --git a/dev-python/python-mistralclient/python-mistralclient-2.1.2.ebuild b/dev-python/python-mistralclient/python-mistralclient-2.1.2.ebuild new file mode 100644 index 000000000000..2f320415f2b6 --- /dev/null +++ b/dev-python/python-mistralclient/python-mistralclient-2.1.2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_4 python3_5 ) + +inherit distutils-r1 + +DESCRIPTION="A client for the OpenStack Mistral API" +HOMEPAGE="https://github.com/openstack/python-mistralclient" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" + +CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + ${CDEPEND}" +RDEPEND=" + ${CDEPEND} + >=dev-python/cliff-1.15.0[${PYTHON_USEDEP}] + !~dev-python/cliff-1.16.0[${PYTHON_USEDEP}] + !~dev-python/cliff-1.17.0[${PYTHON_USEDEP}] + >=dev-python/osc-lib-1.0.2[${PYTHON_USEDEP}] + >=dev-python/oslo-utils-3.16.0[${PYTHON_USEDEP}] + >=dev-python/python-keystoneclient-2.0.0[${PYTHON_USEDEP}] + !~dev-python/python-keystoneclient-2.1.0[${PYTHON_USEDEP}] + >=dev-python/pyyaml-3.1.0[${PYTHON_USEDEP}] + >=dev-python/requests-2.10.0[${PYTHON_USEDEP}] + >=dev-python/six-1.9.0[${PYTHON_USEDEP}] +" + +python_prepare_all() { + # built in... + sed -i '/^hacking/d' test-requirements.txt || die + distutils-r1_python_prepare_all +} |