summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzangrc <zangrc.fnst@cn.fujitsu.com>2020-09-29 22:58:19 +0800
committerBruce Ashfield <bruce.ashfield@gmail.com>2020-10-01 23:10:36 -0400
commit40e6f4b4540c5f689cdc58c70f337282da9dd15e (patch)
tree210db335fbc927dba640ef70aa37d717d9bfa8b6
parentba7ecb1f62a452baf6040f8521bcd629468241d0 (diff)
downloadmeta-cloud-services-40e6f4b4540c5f689cdc58c70f337282da9dd15e.tar.gz
python3-oslo.cache: change to python3
Because python2 is no longer maintained, bb file is changed to python3 version. Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r--meta-openstack/recipes-devtools/python/python3-oslo.cache_git.bb (renamed from meta-openstack/recipes-devtools/python/python-oslo.cache_git.bb)24
1 files changed, 12 insertions, 12 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-oslo.cache_git.bb b/meta-openstack/recipes-devtools/python/python3-oslo.cache_git.bb
index f109b8a..604abca 100644
--- a/meta-openstack/recipes-devtools/python/python-oslo.cache_git.bb
+++ b/meta-openstack/recipes-devtools/python/python3-oslo.cache_git.bb
@@ -4,11 +4,11 @@ SECTION = "devel/python"
4LICENSE = "Apache-2.0" 4LICENSE = "Apache-2.0"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2" 5LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
6 6
7PV = "1.14.0+git${SRCPV}" 7PV = "2.6.1+git${SRCPV}"
8SRCREV = "f5b6ddf7d18a7e06e19712ca7a2509d658a08c4d" 8SRCREV = "df075b2465195de53e42897e7d9be6c6c375ce5e"
9 9
10SRCNAME = "oslo.cache" 10SRCNAME = "oslo.cache"
11SRC_URI = "git://github.com/openstack/${SRCNAME}.git;branch=stable/pike" 11SRC_URI = "git://github.com/openstack/${SRCNAME}.git"
12 12
13S = "${WORKDIR}/git" 13S = "${WORKDIR}/git"
14 14
@@ -17,21 +17,21 @@ inherit setuptools3
17# DEPENDS_default: python-pip 17# DEPENDS_default: python-pip
18 18
19DEPENDS += " \ 19DEPENDS += " \
20 python-pip \ 20 python3-pip \
21 python-pbr \ 21 python3-pbr \
22 " 22 "
23 23
24# Satisfy setup.py 'setup_requires' 24# Satisfy setup.py 'setup_requires'
25DEPENDS += " \ 25DEPENDS += " \
26 python-pbr-native \ 26 python3-pbr-native \
27 " 27 "
28 28
29# RDEPENDS_default: 29# RDEPENDS_default:
30RDEPENDS_${PN} += " \ 30RDEPENDS_${PN} += " \
31 python-dogpile.cache \ 31 python3-dogpile.cache \
32 python-six \ 32 python3-six \
33 python-oslo.config \ 33 python3-oslo.config \
34 python-oslo.i18n \ 34 python3-oslo.i18n \
35 python-oslo.log \ 35 python3-oslo.log \
36 python-oslo.utils \ 36 python3-oslo.utils \
37 " 37 "