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
+6
View File
@@ -0,0 +1,6 @@
config BR2_PACKAGE_PYTHON_REDIS
bool "python-redis"
help
Python client for Redis key-value store.
https://github.com/andymccurdy/redis-py
+5
View File
@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/redis/json
md5 7a00d4540374f34e152a33faa1fcee5f redis-3.5.3.tar.gz
sha256 0e7e0cfca8660dea8b7d5cd8c4f6c5e29e11f31158c0b0ae91a397f00e5a05a2 redis-3.5.3.tar.gz
# Locally computed sha256 checksums
sha256 790148d8c12f8a38b2707a74be2343316bad126995ff54801a181b8b231ba124 LICENSE
+14
View File
@@ -0,0 +1,14 @@
################################################################################
#
# python-redis
#
################################################################################
PYTHON_REDIS_VERSION = 3.5.3
PYTHON_REDIS_SOURCE = redis-$(PYTHON_REDIS_VERSION).tar.gz
PYTHON_REDIS_SITE = https://files.pythonhosted.org/packages/b3/17/1e567ff78c83854e16b98694411fe6e08c3426af866ad11397cddceb80d3
PYTHON_REDIS_SETUP_TYPE = setuptools
PYTHON_REDIS_LICENSE = MIT
PYTHON_REDIS_LICENSE_FILES = LICENSE
$(eval $(python-package))