add py-unicorn

This commit is contained in:
ziggi
2020-07-23 08:20:28 +00:00
parent adf7c51a96
commit 034a8cc18f
20 changed files with 198 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
# Created by: Emanuel Haupt <ehaupt@FreeBSD.org>
# $FreeBSD: head/devel/py-websockets/Makefile 510414 2019-08-31 20:07:10Z ehaupt $
PORTNAME= websockets
PORTVERSION= 8.0.2
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= ehaupt@FreeBSD.org
COMMENT= Implementation of the WebSocket Protocol (RFC 6455 & 7692)
USES= python:3.4+
USE_PYTHON= autoplist distutils
post-install:
@${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/websockets/speedups.so
.include <bsd.port.mk>

View File

@@ -0,0 +1,3 @@
TIMESTAMP = 1567236868
SHA256 (websockets-8.0.2.tar.gz) = 882a7266fa867a2ebb2c0baaa0f9159cabf131cf18c1b4270d79ad42f9208dc5
SIZE (websockets-8.0.2.tar.gz) = 57316

View 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/