summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-openstack/recipes-devtools/python/python-os-vif_git.bb32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-os-vif_git.bb b/meta-openstack/recipes-devtools/python/python-os-vif_git.bb
new file mode 100644
index 0000000..371f20e
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-os-vif_git.bb
@@ -0,0 +1,32 @@
1DESCRIPTION = "A library for plugging and unplugging virtual interfaces in OpenStack"
2HOMEPAGE = "https://github.com/openstack/os-vif"
3SECTION = "devel/python"
4LICENSE = "Apache-2.0"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
6
7SRCNAME = "os-vif"
8SRC_URI = "\
9 git://github.com/openstack/${SRCNAME}.git;branch=stable/newton \
10 "
11
12PV = "1.2.1+git${SRCPV}"
13SRCREV = "ac8c8376249fde6a226f57c49c370d197602fb6a"
14S = "${WORKDIR}/git"
15
16inherit setuptools
17
18DEPENDS += " \
19 python-pbr \
20 "
21
22RDEPENDS_${PN} += " \
23 python-netaddr \
24 python-oslo.config \
25 python-oslo.i18n \
26 python-oslo.log \
27 python-oslo.privsep \
28 python-oslo.versionedobjects \
29 python-pbr \
30 python-six \
31 python-stevedore \
32 "