summaryrefslogtreecommitdiffstats
path: root/meta-python
diff options
context:
space:
mode:
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>2023-05-31 10:22:42 +0200
committerKhem Raj <raj.khem@gmail.com>2023-06-06 23:07:58 -0700
commit4d1dbcbacd9107cde6b8fc59796f57aaf7fcee88 (patch)
treea8a410dc8cf90c72a94cad0ed98b5d193f5aa458 /meta-python
parentccccf35281cff4ddcb9ff28109fe7e2eb232d3c3 (diff)
downloadmeta-openembedded-4d1dbcbacd9107cde6b8fc59796f57aaf7fcee88.tar.gz
python3-thrift: don't use PYTHON_PN and improve coding style
We no longer support python2. Drop PYTHON_PN and use python3 explicitly. While at it: make indentation consistent. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python')
-rw-r--r--meta-python/recipes-connectivity/python-thrift/python3-thrift_0.16.0.bb8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta-python/recipes-connectivity/python-thrift/python3-thrift_0.16.0.bb b/meta-python/recipes-connectivity/python-thrift/python3-thrift_0.16.0.bb
index 6eb896d1d..93b225348 100644
--- a/meta-python/recipes-connectivity/python-thrift/python3-thrift_0.16.0.bb
+++ b/meta-python/recipes-connectivity/python-thrift/python3-thrift_0.16.0.bb
@@ -10,10 +10,10 @@ inherit pypi setuptools3
10PYPI_SRC_URI:append = ";downloadfilename=${BP}.${PYPI_PACKAGE_EXT}" 10PYPI_SRC_URI:append = ";downloadfilename=${BP}.${PYPI_PACKAGE_EXT}"
11 11
12RDEPENDS:${PN} += "\ 12RDEPENDS:${PN} += "\
13 ${PYTHON_PN}-logging \ 13 python3-logging \
14 ${PYTHON_PN}-six \ 14 python3-six \
15 ${PYTHON_PN}-stringold \ 15 python3-stringold \
16 ${PYTHON_PN}-threading \ 16 python3-threading \
17" 17"
18 18
19BBCLASSEXTEND = "native nativesdk" 19BBCLASSEXTEND = "native nativesdk"