diff options
author | zhengruoqin <zhengrq.fnst@cn.fujitsu.com> | 2020-11-17 22:12:36 +0800 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2020-11-19 11:10:39 -0500 |
commit | 10a4b4fc1ef68409a550f014468c1d0279543725 (patch) | |
tree | d8f76f0bf7eb223f421326c7a95fa7e69d655df9 | |
parent | e3811c297d8b766a5fd2183640dc25f27adec399 (diff) | |
download | meta-cloud-services-10a4b4fc1ef68409a550f014468c1d0279543725.tar.gz meta-cloud-services-10a4b4fc1ef68409a550f014468c1d0279543725.tar.bz2 meta-cloud-services-10a4b4fc1ef68409a550f014468c1d0279543725.zip |
python3-glance-store: Change to python3
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r-- | meta-openstack/recipes-devtools/python/python3-glance-store_git.bb (renamed from meta-openstack/recipes-devtools/python/python-glance-store_git.bb) | 34 |
1 files changed, 18 insertions, 16 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-glance-store_git.bb b/meta-openstack/recipes-devtools/python/python3-glance-store_git.bb index 1a8c3aa..afd7818 100644 --- a/meta-openstack/recipes-devtools/python/python-glance-store_git.bb +++ b/meta-openstack/recipes-devtools/python/python3-glance-store_git.bb @@ -15,28 +15,30 @@ S = "${WORKDIR}/git" inherit setuptools3 DEPENDS += " \ - python-pip \ - python-pbr \ + python3-pip \ + python3-pbr \ " # Satisfy setup.py 'setup_requires' DEPENDS += " \ - python-pbr-native \ + python3-pbr-native \ " RDEPENDS_${PN} += " \ bash \ - python-oslo.config \ - python-oslo.i18n \ - python-oslo.serialization \ - python-oslo.utils \ - python-oslo.concurrency \ - python-stevedore \ - python-enum34 \ - python-eventlet \ - python-six \ - python-jsonschema \ - python-keystoneauth1 \ - python-keystoneclient \ - python-requests \ + python3-oslo.config \ + python3-oslo.i18n \ + python3-oslo.serialization \ + python3-oslo.utils \ + python3-oslo.concurrency \ + python3-stevedore \ + python3-eventlet \ + python3-six \ + python3-jsonschema \ + python3-keystoneauth1 \ + python3-keystoneclient \ + python3-requests \ + python3-greenlet \ + python3-monotonic \ + python3-dnspython \ " |