[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,6 @@
config BR2_PACKAGE_PYTHON_REDIS
bool "python-redis"
help
Python client for Redis key-value store.
https://github.com/andymccurdy/redis-py

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

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))