diff options
author | 2020-12-15 15:22:14 +0800 | |
---|---|---|
committer | 2020-12-21 17:16:13 -0500 | |
commit | 4f8e0170364f07c39afba459b4d70515267aa870 (patch) | |
tree | cf77912ef891dc1b2453178a71a0c7ef057db218 | |
parent | 4a907e91e8e81e4c5505e784037a78b7872bc4ed (diff) | |
download | meta-cloud-services-4f8e0170364f07c39afba459b4d70515267aa870.tar.gz meta-cloud-services-4f8e0170364f07c39afba459b4d70515267aa870.tar.bz2 meta-cloud-services-4f8e0170364f07c39afba459b4d70515267aa870.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) | 33 |
1 files changed, 17 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 1a8c3aab..50799580 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,29 @@ 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-monotonic \ + python3-dnspython \ " |