Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 1 | DESCRIPTION = "Protocol Buffers" |
| 2 | HOMEPAGE = "https://developers.google.com/protocol-buffers/" |
| 3 | SECTION = "devel/python" |
| 4 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 5 | LICENSE = "BSD-3-Clause" |
| 6 | LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/BSD-3-Clause;md5=550794465ba0ec5312d6919e203a55f9" |
| 7 | |
| 8 | inherit pypi |
| 9 | |
Brad Bishop | 26bdd44 | 2019-08-16 17:08:17 -0400 | [diff] [blame^] | 10 | SRC_URI[md5sum] = "4ec7b2d49a5d1460591e520b54153c87" |
| 11 | SRC_URI[sha256sum] = "b3452bbda12b1cbe2187d416779de07b2ab4c497d83a050e43c344778763721d" |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 12 | |
| 13 | # http://errors.yoctoproject.org/Errors/Details/184715/ |
| 14 | # Can't find required file: ../src/google/protobuf/descriptor.proto |
| 15 | CLEANBROKEN = "1" |
| 16 | |
| 17 | UPSTREAM_CHECK_REGEX = "protobuf/(?P<pver>\d+(\.\d+)+)/" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 18 | |
| 19 | RDEPENDS_${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 Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 29 | |
| 30 | # For usage in other recipies when compiling protobuf files (e.g. by grpcio-tools) |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 31 | BBCLASSEXTEND = "native nativesdk" |
| 32 | |