blob: b13f10e3677e58e05f6565e751d38646e4c7f1eb [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 Bishop26bdd442019-08-16 17:08:17 -040010SRC_URI[md5sum] = "4ec7b2d49a5d1460591e520b54153c87"
11SRC_URI[sha256sum] = "b3452bbda12b1cbe2187d416779de07b2ab4c497d83a050e43c344778763721d"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080012
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)
Brad Bishop19323692019-04-05 15:28:33 -040031BBCLASSEXTEND = "native nativesdk"
32