[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

View File

@ -0,0 +1,13 @@
config BR2_PACKAGE_PYTHON_PROTOBUF
bool "python-protobuf"
# host-protobuf only builds on certain architectures
depends on BR2_PACKAGE_HOST_PROTOBUF_ARCH_SUPPORTS
select BR2_PACKAGE_PYTHON_SIX # runtime
help
Python implementation of the Google Protocol Buffers.
Protocol buffers are Google's language-neutral,
platform-neutral, extensible mechanism for serializing
structured data.
https://developers.google.com/protocol-buffers

View File

@ -0,0 +1,3 @@
# Locally calculated
sha256 4b384ad2bc6832ede8703b4567c47498bccf104cb79fd20d2d2e3069066ae245 protobuf-python-4.21.5.tar.gz
sha256 6e5e117324afd944dcf67f36cf329843bc1a92229a8cd9bb573d7a83130fea7d LICENSE

View File

@ -0,0 +1,16 @@
################################################################################
#
# python-protobuf
#
################################################################################
PYTHON_PROTOBUF_VERSION = $(PROTOBUF_VERSION)
PYTHON_PROTOBUF_SOURCE = protobuf-python-4.$(PYTHON_PROTOBUF_VERSION).tar.gz
PYTHON_PROTOBUF_SITE = $(PROTOBUF_SITE)
PYTHON_PROTOBUF_LICENSE = BSD-3-Clause
PYTHON_PROTOBUF_LICENSE_FILES = LICENSE
PYTHON_PROTOBUF_DEPENDENCIES = host-protobuf
PYTHON_PROTOBUF_SETUP_TYPE = setuptools
PYTHON_PROTOBUF_SUBDIR = python
$(eval $(python-package))