[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,55 @@
From dfe6f65b7078315c32cebb727e9c47ead7603475 Mon Sep 17 00:00:00 2001
From: Asaf Kahlon <asafka7@gmail.com>
Date: Sun, 13 Oct 2019 16:44:44 +0300
Subject: [PATCH] Adjust ws4py for Python 3.7 syntax
Since Python 3.7, "async" has become a keyword and cannot be used.
Thus, instead of asyncio.async we will use asyncio.ensure_future.
There's also a pull request with this change:
https://github.com/Lawouach/WebSocket-for-Python/pull/245
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
---
ws4py/async_websocket.py | 4 ++--
ws4py/server/tulipserver.py | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/ws4py/async_websocket.py b/ws4py/async_websocket.py
index 9e2a4c7..ea296b4 100644
--- a/ws4py/async_websocket.py
+++ b/ws4py/async_websocket.py
@@ -84,7 +84,7 @@ class WebSocket(_WebSocket):
def closeit():
yield from self.proto.writer.drain()
self.proto.writer.close()
- asyncio.async(closeit())
+ asyncio.ensure_future(closeit())
def _write(self, data):
"""
@@ -94,7 +94,7 @@ class WebSocket(_WebSocket):
def sendit(data):
self.proto.writer.write(data)
yield from self.proto.writer.drain()
- asyncio.async(sendit(data))
+ asyncio.ensure_future(sendit(data))
@asyncio.coroutine
def run(self):
diff --git a/ws4py/server/tulipserver.py b/ws4py/server/tulipserver.py
index 2786c16..85312a2 100644
--- a/ws4py/server/tulipserver.py
+++ b/ws4py/server/tulipserver.py
@@ -40,7 +40,7 @@ class WebSocketProtocol(asyncio.StreamReaderProtocol):
#self.stream.set_transport(transport)
asyncio.StreamReaderProtocol.connection_made(self, transport)
# Let make it concurrent for others to tag along
- f = asyncio.async(self.handle_initial_handshake())
+ f = asyncio.ensure_future(self.handle_initial_handshake())
f.add_done_callback(self.terminated)
@property
--
2.20.1

View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_PYTHON_WS4PY
bool "python-ws4py"
help
ws4py is a Python package implementing the WebSocket protocol
as defined in RFC 6455.
https://ws4py.readthedocs.org

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/ws4py/json
md5 68e0cfae9659dd059ff7e7a8218af548 ws4py-0.5.1.tar.gz
sha256 29d073d7f2e006373e6a848b1d00951a1107eb81f3742952be905429dc5a5483 ws4py-0.5.1.tar.gz
# Locally computed sha256 checksums
sha256 3c98d9e820de01b1ae3be846419700ab9cefa22b09aa0ef441b3bfd5613c3ba1 LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-ws4py
#
################################################################################
PYTHON_WS4PY_VERSION = 0.5.1
PYTHON_WS4PY_SOURCE = ws4py-$(PYTHON_WS4PY_VERSION).tar.gz
PYTHON_WS4PY_SITE = https://files.pythonhosted.org/packages/53/20/4019a739b2eefe9282d3822ef6a225250af964b117356971bd55e274193c
PYTHON_WS4PY_SETUP_TYPE = setuptools
PYTHON_WS4PY_LICENSE = BSD-3-Clause
PYTHON_WS4PY_LICENSE_FILES = LICENSE
$(eval $(python-package))