[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,8 @@
config BR2_PACKAGE_PYTHON_AIOREDIS
bool "python-aioredis"
select BR2_PACKAGE_PYTHON_ASYNC_TIMEOUT # runtime
select BR2_PACKAGE_PYTHON_HIREDIS # runtime
help
Provides simple and clear interface to Redis based on asyncio.
https://github.com/aio-libs/aioredis

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/aioredis/json
md5 8f3547af83ef4b863b18c19f23166a9d aioredis-2.0.1.tar.gz
sha256 eaa51aaf993f2d71f54b70527c440437ba65340588afeb786cd87c55c89cd98e aioredis-2.0.1.tar.gz
# Locally computed sha256 checksums
sha256 183b21f240e41af611c951d01d4f36793d470a82d5fd79efc21f25ae4cf68543 LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-aioredis
#
################################################################################
PYTHON_AIOREDIS_VERSION = 2.0.1
PYTHON_AIOREDIS_SOURCE = aioredis-$(PYTHON_AIOREDIS_VERSION).tar.gz
PYTHON_AIOREDIS_SITE = https://files.pythonhosted.org/packages/2e/cf/9eb144a0b05809ffc5d29045c4b51039000ea275bc1268d0351c9e7dfc06
PYTHON_AIOREDIS_SETUP_TYPE = setuptools
PYTHON_AIOREDIS_LICENSE = MIT
PYTHON_AIOREDIS_LICENSE_FILES = LICENSE
$(eval $(python-package))