blob: 5058d4bd317d994b7b00aae63865cc52254d8eeb [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"
Brad Bishop0f291cc2019-09-01 15:16:57 -04006LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=19e8f490f9526b1de84f8d949cfcfd4e"
Brad Bishopd7bf8c12018-02-25 22:55:05 -05007
8inherit pypi
9
Brad Bishop665fd022019-08-26 01:32:28 -040010SRC_URI[md5sum] = "ca881f18795e024a2b935d5bae9b1ebe"
11SRC_URI[sha256sum] = "d831b047bd69becaf64019a47179eb22118a50dd008340655266a906c69c6417"
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