diff options
author | 2020-06-02 11:54:14 -0700 | |
---|---|---|
committer | 2020-06-05 15:29:21 -0400 | |
commit | b5bda54dfb4bc054d8964bd79b1f42c34d1d5a1c (patch) | |
tree | 89e1a3d92667ffffc4c198be175bcc398f840a86 | |
parent | c88c76725f05b153f685186cc42bb98d5ca9e474 (diff) | |
download | meta-cloud-services-b5bda54dfb4bc054d8964bd79b1f42c34d1d5a1c.tar.gz meta-cloud-services-b5bda54dfb4bc054d8964bd79b1f42c34d1d5a1c.tar.bz2 meta-cloud-services-b5bda54dfb4bc054d8964bd79b1f42c34d1d5a1c.zip |
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.bb | 7 |
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 52fa05e9..594b6bd1 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 += " \ python-pbr \ " +# Satisfy setup.py 'setup_requires' +DEPENDS += " \ + python-pbr-native \ + " + RDEPENDS_${PN} += " \ python-pbr \ python-netaddr \ @@ -30,4 +35,4 @@ RDEPENDS_${PN} += " \ python-six \ python-stevedore \ " -
\ No newline at end of file + |