dev-python/os-brick: bup for mitaka
authorMatthew Thode <prometheanfire@gentoo.org>
Fri, 25 Mar 2016 23:12:53 +0000 (18:12 -0500)
committerMatthew Thode <prometheanfire@gentoo.org>
Fri, 25 Mar 2016 23:12:53 +0000 (18:12 -0500)
Package-Manager: portage-2.2.26

dev-python/os-brick/Manifest
dev-python/os-brick/os-brick-1.1.0.ebuild [new file with mode: 0644]

index ff70c92b8cf7aff3954a761f7f111a72ae64be1f..9719cf457e35ecfab177ee37efd9e378b49285cb 100644 (file)
@@ -1 +1,2 @@
 DIST os-brick-0.5.0.tar.gz 63340 SHA256 a63e761c74ecd0214ea5dad67cefb1e9b67bac74706ccd3338443505cbf405e0 SHA512 07fbcba60c53a8f5b123770bb7df5336ed92c7e668898e1c893989928492d76e1aada434fa7c9d8ac8e21f2cc22a4e2fa1e7792067f092ef1183724077183a05 WHIRLPOOL 4241dba5bf45608d1aaa321bce39ff5b960b81c8678bdefeac6692a4d6cf344cbd54fdfdd4b55d4ff6bfa8afba6e0d882497fb6f2a50241dc79352d551357433
+DIST os-brick-1.1.0.tar.gz 89877 SHA256 a4ef50e7977f778994ab0914fbb68c5e04f730d3d429495337e980bfc962f512 SHA512 8c7d264f60114a4330d9fd8bf84f7075f9b9811861645310fa85e98bafd44f216912ca73938458716deb5f9d21cb5a3c29a5d3f1d9e48d48f01d2efda11d8c2b WHIRLPOOL 19fa3380523af182b1b0dc17fea8035dae3d42ad59d90248b1e0bd6c217a362e3a081868a4c4e44405211d27d8d9ebd9a2f9b78d0f3e7217182a4eb9238d1130
diff --git a/dev-python/os-brick/os-brick-1.1.0.ebuild b/dev-python/os-brick/os-brick-1.1.0.ebuild
new file mode 100644 (file)
index 0000000..2cff5cc
--- /dev/null
@@ -0,0 +1,42 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 python3_3 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-1.8[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+       ${CDEPEND}"
+RDEPEND="
+       ${CDEPEND}
+       >=dev-python/Babel-1.3[${PYTHON_USEDEP}]
+       >=dev-python/eventlet-0.18.4[${PYTHON_USEDEP}]
+       >=dev-python/oslo-concurrency-2.3.0[${PYTHON_USEDEP}]
+       >=dev-python/oslo-log-1.14.0[${PYTHON_USEDEP}]
+       >=dev-python/oslo-serialization-1.10.0[${PYTHON_USEDEP}]
+       >=dev-python/oslo-i18n-2.1.0[${PYTHON_USEDEP}]
+       >=dev-python/oslo-service-1.0.0[${PYTHON_USEDEP}]
+       >=dev-python/oslo-utils-3.5.0[${PYTHON_USEDEP}]
+       >=dev-python/requests-2.8.1[${PYTHON_USEDEP}]
+       !~dev-python/requests-2.9.0[${PYTHON_USEDEP}]
+       >=dev-python/retrying-1.2.3[${PYTHON_USEDEP}]
+       !~dev-python/retrying-1.3.0[${PYTHON_USEDEP}]
+       >=dev-python/six-1.9.0[${PYTHON_USEDEP}]"
+
+python_prepare_all() {
+       sed -i '/^hacking/d' test-requirements.txt || die
+       distutils-r1_python_prepare_all
+}