[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,16 @@
config BR2_PACKAGE_PYTHON_CHANNELS
bool "python-channels"
# python-daphne -> python-autobahn -> python-cryptography
depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS
select BR2_PACKAGE_PYTHON_ASGIREF # runtime
select BR2_PACKAGE_PYTHON_DAPHNE # runtime
select BR2_PACKAGE_PYTHON_DJANGO # runtime
help
Channels augments Django to bring WebSocket, long-poll
HTTP, task offloading and other async support to your
code, using familiar Django design patterns and a
flexible underlying framework that lets you not only
customize behaviours but also write support for your
own protocols and needs.
http://github.com/django/channels

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/channels/json
md5 6f3fb75828b681a69372934a09ac3f32 channels-2.3.1.tar.gz
sha256 6b8ebd93fe0041a23e31c9f4130d92fadb9c0040c0eb377a004540631325a31d channels-2.3.1.tar.gz
# Locally computed sha256 checksums
sha256 b846415d1b514e9c1dff14a22deb906d794bc546ca6129f950a18cd091e2a669 LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-channels
#
################################################################################
PYTHON_CHANNELS_VERSION = 2.3.1
PYTHON_CHANNELS_SOURCE = channels-$(PYTHON_CHANNELS_VERSION).tar.gz
PYTHON_CHANNELS_SITE = https://files.pythonhosted.org/packages/75/53/2db9662a52dcedb02a25f87d8efc5e630059967790e4c10887dbd2db2073
PYTHON_CHANNELS_SETUP_TYPE = setuptools
PYTHON_CHANNELS_LICENSE = BSD-3-Clause
PYTHON_CHANNELS_LICENSE_FILES = LICENSE
$(eval $(python-package))