Add py-websockets 7.0, implementation of the WebSocket Protocol (RFC
6455 & 7692).
This commit is contained in:
parent
c04cb844b8
commit
bb6c78a15a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=501278
4 changed files with 32 additions and 0 deletions
|
@ -5035,6 +5035,7 @@
|
|||
SUBDIR += py-wcwidth
|
||||
SUBDIR += py-weakrefmethod
|
||||
SUBDIR += py-weblib
|
||||
SUBDIR += py-websockets
|
||||
SUBDIR += py-websockify
|
||||
SUBDIR += py-wheel
|
||||
SUBDIR += py-whichcraft
|
||||
|
|
21
devel/py-websockets/Makefile
Normal file
21
devel/py-websockets/Makefile
Normal file
|
@ -0,0 +1,21 @@
|
|||
# Created by: Emanuel Haupt <ehaupt@FreeBSD.org>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= websockets
|
||||
PORTVERSION= 7.0
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= ehaupt@FreeBSD.org
|
||||
COMMENT= Implementation of the WebSocket Protocol (RFC 6455 & 7692)
|
||||
|
||||
LICENSE= BSD3CLAUSE
|
||||
|
||||
USES= python:3.4+
|
||||
USE_PYTHON= autoplist distutils
|
||||
|
||||
post-install:
|
||||
@${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/websockets/speedups.so
|
||||
|
||||
.include <bsd.port.mk>
|
3
devel/py-websockets/distinfo
Normal file
3
devel/py-websockets/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1557597822
|
||||
SHA256 (websockets-7.0.tar.gz) = 08e3c3e0535befa4f0c4443824496c03ecc25062debbcf895874f8a0b4c97c9f
|
||||
SIZE (websockets-7.0.tar.gz) = 49257
|
7
devel/py-websockets/pkg-descr
Normal file
7
devel/py-websockets/pkg-descr
Normal file
|
@ -0,0 +1,7 @@
|
|||
websockets is a library for building WebSocket servers and clients in Python
|
||||
with a focus on correctness and simplicity.
|
||||
|
||||
Built on top of asyncio, Python's standard asynchronous I/O framework, it
|
||||
provides an elegant coroutine-based API.
|
||||
|
||||
WWW: https://pypi.org/project/websockets/
|
Loading…
Reference in a new issue