From mboxrd@z Thu Jan 1 00:00:00 1970 From: aduskett at gmail.com Date: Sat, 3 Aug 2019 21:16:30 -0400 Subject: [Buildroot] [PATCH 07/08] package/python-channels: new package In-Reply-To: <20190804011631.86261-1-aduskett@gmail.com> References: <20190804011631.86261-1-aduskett@gmail.com> Message-ID: <20190804011631.86261-8-aduskett@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net From: Adam Duskett 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. Signed-off-by: Adam Duskett --- DEVELOPERS | 1 + package/Config.in | 1 + package/python-channels/Config.in | 14 ++++++++++++++ package/python-channels/python-channels.hash | 5 +++++ package/python-channels/python-channels.mk | 14 ++++++++++++++ 5 files changed, 35 insertions(+) create mode 100644 package/python-channels/Config.in create mode 100644 package/python-channels/python-channels.hash create mode 100644 package/python-channels/python-channels.mk diff --git a/DEVELOPERS b/DEVELOPERS index 980a2c9b35..fdd8427673 100644 --- a/DEVELOPERS +++ b/DEVELOPERS @@ -59,6 +59,7 @@ F: package/policycoreutils/ F: package/python3/ F: package/python-aioredis/ F: package/python-asgiref/ +F: package/python-channels/ F: package/python-daphne/ F: package/python-django-enumfields/ F: package/python-flask-sqlalchemy/ diff --git a/package/Config.in b/package/Config.in index 58f220a807..a63b2e41b4 100644 --- a/package/Config.in +++ b/package/Config.in @@ -851,6 +851,7 @@ menu "External python modules" source "package/python-cchardet/Config.in" source "package/python-certifi/Config.in" source "package/python-cffi/Config.in" + source "package/python-channels/Config.in" source "package/python-characteristic/Config.in" source "package/python-chardet/Config.in" source "package/python-cheetah/Config.in" diff --git a/package/python-channels/Config.in b/package/python-channels/Config.in new file mode 100644 index 0000000000..09a0a6049a --- /dev/null +++ b/package/python-channels/Config.in @@ -0,0 +1,14 @@ +config BR2_PACKAGE_PYTHON_CHANNELS + bool "python-channels" + select BR2_PACKAGE_PYTHON_DJANGO # runtime + select BR2_PACKAGE_PYTHON_ASGIREF # runtime + select BR2_PACKAGE_PYTHON_DAPHNE # 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 diff --git a/package/python-channels/python-channels.hash b/package/python-channels/python-channels.hash new file mode 100644 index 0000000000..539589e433 --- /dev/null +++ b/package/python-channels/python-channels.hash @@ -0,0 +1,5 @@ +# md5, sha256 from https://pypi.org/pypi/channels/json +md5 aec056cf4d0fa6444b3d83ccd5885fc5 channels-2.2.0.tar.gz +sha256 af7cdba9efb3f55b939917d1b15defb5d40259936013e60660e5e9aff98db4c5 channels-2.2.0.tar.gz +# Locally computed sha256 checksums +sha256 b846415d1b514e9c1dff14a22deb906d794bc546ca6129f950a18cd091e2a669 LICENSE diff --git a/package/python-channels/python-channels.mk b/package/python-channels/python-channels.mk new file mode 100644 index 0000000000..a0f4591f76 --- /dev/null +++ b/package/python-channels/python-channels.mk @@ -0,0 +1,14 @@ +################################################################################ +# +# python-channels +# +################################################################################ + +PYTHON_CHANNELS_VERSION = 2.2.0 +PYTHON_CHANNELS_SOURCE = channels-$(PYTHON_CHANNELS_VERSION).tar.gz +PYTHON_CHANNELS_SITE = https://files.pythonhosted.org/packages/26/b9/92c803f3e8e304efbfbcd0634d4a5ad2d231f515b968f1b9e7c84ee78012 +PYTHON_CHANNELS_SETUP_TYPE = setuptools +PYTHON_CHANNELS_LICENSE = BSD-3-Clause +PYTHON_CHANNELS_LICENSE_FILES = LICENSE + +$(eval $(python-package)) -- 2.21.0