This commit is contained in:
TriForceX
2021-03-13 22:13:38 -03:00
parent c77595adbd
commit b3ecc6e32d
7043 changed files with 119377 additions and 73694 deletions

View File

@@ -0,0 +1,18 @@
config BR2_PACKAGE_PYTHON_CHANNELS_REDIS
bool "python-channels-redis"
depends on BR2_INSTALL_LIBSTDCPP # python-channels -> python-daphne
depends on BR2_PACKAGE_PYTHON3 # python-channels
select BR2_PACKAGE_PYTHON_AIOREDIS # runtime
select BR2_PACKAGE_PYTHON_ASGIREF # runtime
select BR2_PACKAGE_PYTHON_CHANNELS # runtime
select BR2_PACKAGE_PYTHON_MSGPACK # runtime
help
A Django Channels channel layer that uses Redis as its
backing store, and supports both a single-server and
sharded configurations, as well as group support.
http://github.com/django/channels_redis/
comment "python-channels-redis needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP
depends on BR2_PACKAGE_PYTHON3

View File

@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/channels-redis/json
md5 9ec9ffd467e181906f257d6c0dbabf45 channels_redis-2.4.1.tar.gz
sha256 ddfa0c067085fdce24fb80d9c0b848638cbdbf0e1167f14eb2e99d635ad216e6 channels_redis-2.4.1.tar.gz
# Locally computed sha256 checksums
sha256 b846415d1b514e9c1dff14a22deb906d794bc546ca6129f950a18cd091e2a669 LICENSE

View File

@@ -0,0 +1,14 @@
################################################################################
#
# python-channels-redis
#
################################################################################
PYTHON_CHANNELS_REDIS_VERSION = 2.4.1
PYTHON_CHANNELS_REDIS_SOURCE = channels_redis-$(PYTHON_CHANNELS_REDIS_VERSION).tar.gz
PYTHON_CHANNELS_REDIS_SITE = https://files.pythonhosted.org/packages/87/a9/8d11c32ae6bf3a2cc893185f7d1e03b80bda680131a08473c07ed1fe591d
PYTHON_CHANNELS_REDIS_SETUP_TYPE = setuptools
PYTHON_CHANNELS_REDIS_LICENSE = BSD-3-Clause
PYTHON_CHANNELS_REDIS_LICENSE_FILES = LICENSE
$(eval $(python-package))