diff options
author | 2020-06-02 11:54:20 -0700 | |
---|---|---|
committer | 2020-06-05 15:29:21 -0400 | |
commit | 934bb43c25a36804c6332874c889b47692efc74f (patch) | |
tree | 76f1037b8147d4f75c66b5ed76d4e02958f2f4f2 | |
parent | 126792daabe2413561a506e9ea186e403b1c57a1 (diff) | |
download | meta-cloud-services-934bb43c25a36804c6332874c889b47692efc74f.tar.gz meta-cloud-services-934bb43c25a36804c6332874c889b47692efc74f.tar.bz2 meta-cloud-services-934bb43c25a36804c6332874c889b47692efc74f.zip |
python-oslotest: 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-oslotest_git.bb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-oslotest_git.bb b/meta-openstack/recipes-devtools/python/python-oslotest_git.bb index 20c0b53e..2956e599 100644 --- a/meta-openstack/recipes-devtools/python/python-oslotest_git.bb +++ b/meta-openstack/recipes-devtools/python/python-oslotest_git.bb @@ -20,6 +20,11 @@ DEPENDS += "\ python-pbr \ " +# Satisfy setup.py 'setup_requires' +DEPENDS += " \ + python-pbr-native \ + " + RDEPENDS_${PN} = "python-fixtures \ python-subunit \ python-six \ @@ -31,4 +36,4 @@ RDEPENDS_${PN} = "python-fixtures \ python-debtcollector \ bash \ " -
\ No newline at end of file + |