summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBabak Sarashki <babak.sarashki@windriver.com>2020-06-02 11:54:14 -0700
committerBruce Ashfield <bruce.ashfield@gmail.com>2020-06-05 15:29:21 -0400
commitb5bda54dfb4bc054d8964bd79b1f42c34d1d5a1c (patch)
tree89e1a3d92667ffffc4c198be175bcc398f840a86
parentc88c76725f05b153f685186cc42bb98d5ca9e474 (diff)
downloadmeta-cloud-services-b5bda54dfb4bc054d8964bd79b1f42c34d1d5a1c.tar.gz
python-os-vif: satisfy setup.py setup_requires
Commit 8fdbb0381d disallows fetch of code during do_compile task. This commits extends DEPENDS to python-pbr-native. Signed-off-by: Babak Sarashki <Babak.SarAshki@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r--meta-openstack/recipes-devtools/python/python-os-vif_git.bb7
1 files changed, 6 insertions, 1 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
index 52fa05e..594b6bd 100644
--- a/meta-openstack/recipes-devtools/python/python-os-vif_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-os-vif_git.bb
@@ -18,6 +18,11 @@ DEPENDS += " \
18 python-pbr \ 18 python-pbr \
19 " 19 "
20 20
21# Satisfy setup.py 'setup_requires'
22DEPENDS += " \
23 python-pbr-native \
24 "
25
21RDEPENDS_${PN} += " \ 26RDEPENDS_${PN} += " \
22 python-pbr \ 27 python-pbr \
23 python-netaddr \ 28 python-netaddr \
@@ -30,4 +35,4 @@ RDEPENDS_${PN} += " \
30 python-six \ 35 python-six \
31 python-stevedore \ 36 python-stevedore \
32 " 37 "
33 \ No newline at end of file 38