diff options
author | Lei Maohui <leimaohui@cn.fujitsu.com> | 2018-05-11 10:03:08 -0700 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2018-05-24 16:08:35 -0400 |
commit | 548bc65a8e0cba2914a087dd14884f70c1df75e7 (patch) | |
tree | 07ae11097d57d11e572647a09c8d847b58839349 | |
parent | de1508df8b686182888925a4cec63280ea2bb1a5 (diff) | |
download | meta-cloud-services-548bc65a8e0cba2914a087dd14884f70c1df75e7.tar.gz |
python-oslo.concurrency: Fix build error as following:
"distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('pbr>=2.0.0')"
Signed-off-by: Lei Maohui <leimaohui@cn.fujitsu.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r-- | meta-openstack/recipes-devtools/python/python-oslo.concurrency_git.bb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-oslo.concurrency_git.bb b/meta-openstack/recipes-devtools/python/python-oslo.concurrency_git.bb index 16ebc89..fe095d0 100644 --- a/meta-openstack/recipes-devtools/python/python-oslo.concurrency_git.bb +++ b/meta-openstack/recipes-devtools/python/python-oslo.concurrency_git.bb | |||
@@ -21,6 +21,11 @@ DEPENDS += " \ | |||
21 | python-pbr \ | 21 | python-pbr \ |
22 | " | 22 | " |
23 | 23 | ||
24 | # Satisfy setup.py 'setup_requires' | ||
25 | DEPENDS += " \ | ||
26 | python-pbr-native \ | ||
27 | " | ||
28 | |||
24 | # RDEPENDS_default: | 29 | # RDEPENDS_default: |
25 | RDEPENDS_${PN} += " \ | 30 | RDEPENDS_${PN} += " \ |
26 | python-pbr \ | 31 | python-pbr \ |