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 | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 10 | SRC_URI[md5sum] = "e2daef80e70249aa1f05363670c6b3f8" |
| 11 | SRC_URI[sha256sum] = "1489b376b0f364bcc6f89519718c057eb191d7ad6f1b395ffd93d1aa45587811" |
| 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) |
| 31 | BBCLASSEXTEND = "native" |