summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-protobuf_4.25.2.bb
diff options
context:
space:
mode:
authorDerek Straka <derek@asterius.io>2024-01-12 22:09:35 +0000
committerKhem Raj <raj.khem@gmail.com>2024-01-13 09:08:37 -0800
commit243fafa0920db52237ab19529817a9655f6e6b8d (patch)
tree5ccf545b92e0b2d8803a24da703528af9e4bb7fe /meta-python/recipes-devtools/python/python3-protobuf_4.25.2.bb
parent72c56daa634803b2ab22142a84e9c0f77c101a96 (diff)
downloadmeta-openembedded-243fafa0920db52237ab19529817a9655f6e6b8d.tar.gz
python3-protobuf: update to version 4.25.1
Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-protobuf_4.25.2.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-protobuf_4.25.2.bb38
1 files changed, 38 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-protobuf_4.25.2.bb b/meta-python/recipes-devtools/python/python3-protobuf_4.25.2.bb
new file mode 100644
index 0000000000..5333d306bd
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-protobuf_4.25.2.bb
@@ -0,0 +1,38 @@
1DESCRIPTION = "Protocol Buffers"
2HOMEPAGE = "https://developers.google.com/protocol-buffers/"
3SECTION = "devel/python"
4
5LICENSE = "BSD-3-Clause"
6LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=53dbfa56f61b90215a9f8f0d527c043d"
7
8inherit pypi setuptools3
9SRC_URI[sha256sum] = "fe599e175cb347efc8ee524bcd4b902d11f7262c0e569ececcb89995c15f0a5e"
10
11# http://errors.yoctoproject.org/Errors/Details/184715/
12# Can't find required file: ../src/google/protobuf/descriptor.proto
13CLEANBROKEN = "1"
14
15UPSTREAM_CHECK_REGEX = "protobuf/(?P<pver>\d+(\.\d+)+)/"
16
17DEPENDS += "protobuf"
18
19RDEPENDS:${PN} += " \
20 ${PYTHON_PN}-datetime \
21 ${PYTHON_PN}-json \
22 ${PYTHON_PN}-logging \
23 ${PYTHON_PN}-netclient \
24 ${PYTHON_PN}-numbers \
25 ${PYTHON_PN}-pkgutil \
26 ${PYTHON_PN}-six \
27 ${PYTHON_PN}-unittest \
28"
29
30# For usage in other recipies when compiling protobuf files (e.g. by grpcio-tools)
31BBCLASSEXTEND = "native nativesdk"
32
33DISTUTILS_BUILD_ARGS += "--cpp_implementation"
34DISTUTILS_INSTALL_ARGS += "--cpp_implementation"
35
36do_compile:prepend:class-native () {
37 export KOKORO_BUILD_NUMBER="1"
38}