initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
config BR2_PACKAGE_PYTHON_MSGPACK
bool "python-msgpack"
help
MessagePack (http://msgpack.org/) is a fast, compact binary
serialization format, suitable for similar data to JSON.
This package provides a pure python library for reading
and writing MessagePack data.
https://pypi.python.org/pypi/msgpack-python/
@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/msgpack/json
md5 68d5804254642905ba87ede509e68970 msgpack-1.0.2.tar.gz
sha256 fae04496f5bc150eefad4e9571d1a76c55d021325dcd484ce45065ebbdd00984 msgpack-1.0.2.tar.gz
# Locally computed sha256 checksums
sha256 492dedba85da5872f78e6091bcd1fea474d660d35acb4dee964b8aab3f007427 COPYING
+14
View File
@@ -0,0 +1,14 @@
################################################################################
#
# python-msgpack
#
################################################################################
PYTHON_MSGPACK_VERSION = 1.0.2
PYTHON_MSGPACK_SOURCE = msgpack-$(PYTHON_MSGPACK_VERSION).tar.gz
PYTHON_MSGPACK_SITE = https://files.pythonhosted.org/packages/59/04/87fc6708659c2ed3b0b6d4954f270b6e931def707b227c4554f99bd5401e
PYTHON_MSGPACK_LICENSE = Apache-2.0
PYTHON_MSGPACK_LICENSE_FILES = COPYING
PYTHON_MSGPACK_SETUP_TYPE = setuptools
$(eval $(python-package))