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" |
Brad Bishop | 0f291cc | 2019-09-01 15:16:57 -0400 | [diff] [blame] | 6 | LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=19e8f490f9526b1de84f8d949cfcfd4e" |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 7 | |
| 8 | inherit pypi |
| 9 | |
Brad Bishop | 779d0ac | 2019-09-27 08:23:48 -0400 | [diff] [blame] | 10 | SRC_URI[md5sum] = "d634666c898148e4565ac62f3ba4a2ca" |
| 11 | SRC_URI[sha256sum] = "843f498e98ad1469ad54ecb4a7ccf48605a1c5d2bd26ae799c7a2cddab4a37ec" |
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 | |