dev-python/os-vif: 1.15.1 bump
authorMatthew Thode <prometheanfire@gentoo.org>
Fri, 12 Apr 2019 19:23:21 +0000 (14:23 -0500)
committerMatthew Thode <prometheanfire@gentoo.org>
Fri, 12 Apr 2019 19:43:52 +0000 (14:43 -0500)
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
dev-python/os-vif/Manifest
dev-python/os-vif/os-vif-1.15.1.ebuild [new file with mode: 0644]

index 6b568b1dbdf076dc391d534db7a86cbc7ec60efe..be0d36e7e3104f3571cdce38d195f5079812fcf2 100644 (file)
@@ -1 +1,2 @@
+DIST os_vif-1.15.1.tar.gz 85731 BLAKE2B c0855be5204513fcb18c39341cae0a51ab6ad961d6a5f6d96988b14e43beddc4fa7f8c3e8a590eb5f657af8590603cc516a194af1c73234566047b8059cacfc1 SHA512 5fe7ba1bccba81e8b03884e951012f181c4b0cff433ff9211ce750868811ad4a3e5b1188396c466a286df6a9db824fd07a7abc62fda2c0c302d6d07108f419a8
 DIST os_vif-1.9.1.tar.gz 63535 BLAKE2B b4c017b129c2540794f85292341a165761d00439d24727fe2f421c96a7e5d6e79e8572a217064e01e62bb137f136fcfd1d51ff089c48026de82d91a8b9a22386 SHA512 d7aeec1bd277a91a1f4fbda69e5408f5648ad49ffac17d1ca54148ec30c31bd64639151988355395166747df91cd89cbed1863a2668a5bce89a10d2aea55c288
diff --git a/dev-python/os-vif/os-vif-1.15.1.ebuild b/dev-python/os-vif/os-vif-1.15.1.ebuild
new file mode 100644 (file)
index 0000000..4d2bb3e
--- /dev/null
@@ -0,0 +1,42 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
+
+inherit distutils-r1
+
+DESCRIPTION="OpenStack Cinder brick library for managing local volume attaches"
+HOMEPAGE="https://github.com/openstack/os-vif"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/os_vif-${PV}.tar.gz"
+S="${WORKDIR}/os_vif-${PV}"
+
+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/netaddr-0.7.18[${PYTHON_USEDEP}]
+       >=dev-python/oslo-concurrency-3.20.0[${PYTHON_USEDEP}]
+       >=dev-python/oslo-config-5.1.0[${PYTHON_USEDEP}]
+       >=dev-python/oslo-log-3.30.0[${PYTHON_USEDEP}]
+       >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
+       >=dev-python/oslo-privsep-1.23.0[${PYTHON_USEDEP}]
+       >=dev-python/oslo-versionedobjects-1.28.0[${PYTHON_USEDEP}]
+       >=dev-python/ovsdbapp-0.12.1[${PYTHON_USEDEP}]
+       >=dev-python/pyroute2-0.5.2[${PYTHON_USEDEP}]
+       >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
+       >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
+       >=dev-python/debtcollector-1.19.0[${PYTHON_USEDEP}]"
+
+python_prepare_all() {
+       sed -i '/^hacking/d' test-requirements.txt || die
+       sed -i '/^pbr/d' requirements.txt || die  # pbr should be uncapped in stable/ocata
+       distutils-r1_python_prepare_all
+}