blob: b617904d2d3d60e87c64e65f9284e68855ca7c5a [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001DESCRIPTION = "Protocol Buffers"
2HOMEPAGE = "https://developers.google.com/protocol-buffers/"
3SECTION = "devel/python"
4
Brad Bishopd7bf8c12018-02-25 22:55:05 -05005LICENSE = "BSD-3-Clause"
6LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/BSD-3-Clause;md5=550794465ba0ec5312d6919e203a55f9"
7
8inherit pypi
9
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080010SRC_URI[md5sum] = "e2daef80e70249aa1f05363670c6b3f8"
11SRC_URI[sha256sum] = "1489b376b0f364bcc6f89519718c057eb191d7ad6f1b395ffd93d1aa45587811"
12
13# http://errors.yoctoproject.org/Errors/Details/184715/
14# Can't find required file: ../src/google/protobuf/descriptor.proto
15CLEANBROKEN = "1"
16
17UPSTREAM_CHECK_REGEX = "protobuf/(?P<pver>\d+(\.\d+)+)/"
Brad Bishop316dfdd2018-06-25 12:45:53 -040018
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"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050029
30# For usage in other recipies when compiling protobuf files (e.g. by grpcio-tools)
31BBCLASSEXTEND = "native"