diff options
author | Leon Anavi <leon.anavi@konsulko.com> | 2020-06-15 15:38:48 +0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-06-17 08:57:34 -0700 |
commit | 491eaf90ddd9d31ccf6bcd893805b982490c99ac (patch) | |
tree | 31a1933d518dd639c0196c8e423b169f840bc4ec /meta-python/recipes-devtools/python/python-protobuf.inc | |
parent | fbc457f68799b56e1d37f55d857083d7075ae207 (diff) | |
download | meta-openembedded-491eaf90ddd9d31ccf6bcd893805b982490c99ac.tar.gz |
python3-protobuf: Consolidate in a single file
Consolidate inc and bb files into a single bb file.
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python-protobuf.inc')
-rw-r--r-- | meta-python/recipes-devtools/python/python-protobuf.inc | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/meta-python/recipes-devtools/python/python-protobuf.inc b/meta-python/recipes-devtools/python/python-protobuf.inc deleted file mode 100644 index 5716894f31..0000000000 --- a/meta-python/recipes-devtools/python/python-protobuf.inc +++ /dev/null | |||
@@ -1,32 +0,0 @@ | |||
1 | DESCRIPTION = "Protocol Buffers" | ||
2 | HOMEPAGE = "https://developers.google.com/protocol-buffers/" | ||
3 | SECTION = "devel/python" | ||
4 | |||
5 | LICENSE = "BSD-3-Clause" | ||
6 | LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=19e8f490f9526b1de84f8d949cfcfd4e" | ||
7 | |||
8 | inherit pypi | ||
9 | |||
10 | SRC_URI[md5sum] = "eeda7dea65fc94e560fc9a8180eb1872" | ||
11 | SRC_URI[sha256sum] = "c77c974d1dadf246d789f6dad1c24426137c9091e930dbf50e0a29c1fcf00b1f" | ||
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+)+)/" | ||
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 | " | ||
29 | |||
30 | # For usage in other recipies when compiling protobuf files (e.g. by grpcio-tools) | ||
31 | BBCLASSEXTEND = "native nativesdk" | ||
32 | |||