diff options
author | Matthew Thode <prometheanfire@gentoo.org> | 2018-02-18 18:37:39 -0600 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2018-02-18 18:54:14 -0600 |
commit | ea4ca7c108334b2e12abbfd84e46510ff1493dd9 (patch) | |
tree | 1016e1867f63d5ef9ed0a9d16a210238ba521fcc /dev-python/os-brick | |
parent | dev-python/os-win: 3.0.0 bup (diff) | |
download | gentoo-ea4ca7c108334b2e12abbfd84e46510ff1493dd9.tar.gz gentoo-ea4ca7c108334b2e12abbfd84e46510ff1493dd9.tar.bz2 gentoo-ea4ca7c108334b2e12abbfd84e46510ff1493dd9.zip |
dev-python/os-brick: 2.3.0 bup
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'dev-python/os-brick')
-rw-r--r-- | dev-python/os-brick/Manifest | 1 | ||||
-rw-r--r-- | dev-python/os-brick/os-brick-2.3.0.ebuild | 44 |
2 files changed, 45 insertions, 0 deletions
diff --git a/dev-python/os-brick/Manifest b/dev-python/os-brick/Manifest index 2d3e3b25f819..81eff649bb1d 100644 --- a/dev-python/os-brick/Manifest +++ b/dev-python/os-brick/Manifest @@ -1 +1,2 @@ DIST os-brick-1.15.5.tar.gz 161371 BLAKE2B 0fdfb5978cb1d1ca635d64f98b75210b03353c033affd9834294c4d505a0d9e580f0f829a5e5c96fdb53f1cf2a29ba63ded6fbba4ae662a5dad0d20fdf98356b SHA512 c73c0f227e68aeba80b6b5687fc876e7dfe3ba36a800b7241ed08a0f189e0a57adfdf3b3e1f63230514ddac848be84e1f05e6be6aa0f50412695c6d37124717d +DIST os-brick-2.3.0.tar.gz 166100 BLAKE2B 073aa9f27ba75776f693b99b69e4abc73900d0d13560666335e3af0ca368dcc7ff1ef5ea4ea95e9e9aa8ba56808c3cbd78ac07d3fad82f3eae4601e0df5c398c SHA512 ab40e16ba3362a8ad5b5778bd8ea73c3a8adf831f504533d1566d563513df232747bd94ed3888fdfa7d1f519f7f50cb5022db7040afe6d8fc9c6fe43fa5d01af diff --git a/dev-python/os-brick/os-brick-2.3.0.ebuild b/dev-python/os-brick/os-brick-2.3.0.ebuild new file mode 100644 index 000000000000..0214d7f04231 --- /dev/null +++ b/dev-python/os-brick/os-brick-2.3.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_4 python3_5 ) + +inherit distutils-r1 + +DESCRIPTION="OpenStack Cinder brick library for managing local volume attaches" +HOMEPAGE="https://github.com/openstack/cinder" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="" + +CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] + !~dev-python/pbr-2.1.0" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + ${CDEPEND}" +RDEPEND=" + ${CDEPEND} + >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}] + !~dev-python/Babel-2.4.0[${PYTHON_USEDEP}] + >=dev-python/eventlet-0.18.4[${PYTHON_USEDEP}] + !~dev-python/eventlet-0.20.1[${PYTHON_USEDEP}] + >=dev-python/oslo-concurrency-3.25.0[${PYTHON_USEDEP}] + >=dev-python/oslo-log-3.26.0[${PYTHON_USEDEP}] + >=dev-python/oslo-i18n-3.15.3.0[${PYTHON_USEDEP}] + >=dev-python/oslo-privsep-1.23.0[${PYTHON_USEDEP}] + >=dev-python/oslo-service-1.24.0[${PYTHON_USEDEP}] + !~dev-python/oslo-service-1.28.1[${PYTHON_USEDEP}] + >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}] + >=dev-python/requests-2.14.2[${PYTHON_USEDEP}] + >=dev-python/retrying-1.2.3[${PYTHON_USEDEP}] + !~dev-python/retrying-1.3.0[${PYTHON_USEDEP}] + >=dev-python/six-1.10.0[${PYTHON_USEDEP}] + >=dev-python/os-win-2.0.0[${PYTHON_USEDEP}]" + +python_prepare_all() { + sed -i '/^hacking/d' test-requirements.txt || die + distutils-r1_python_prepare_all +} |