Date: Sat, 11 May 2019 18:19:39 +0000 (UTC) From: Emanuel Haupt <ehaupt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r501278 - in head/devel: . py-websockets Message-ID: <201905111819.x4BIJd2p099695@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ehaupt Date: Sat May 11 18:19:39 2019 New Revision: 501278 URL: https://svnweb.freebsd.org/changeset/ports/501278 Log: Add py-websockets 7.0, implementation of the WebSocket Protocol (RFC 6455 & 7692). Added: head/devel/py-websockets/ head/devel/py-websockets/Makefile (contents, props changed) head/devel/py-websockets/distinfo (contents, props changed) head/devel/py-websockets/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat May 11 18:17:47 2019 (r501277) +++ head/devel/Makefile Sat May 11 18:19:39 2019 (r501278) @@ -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 Added: head/devel/py-websockets/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-websockets/Makefile Sat May 11 18:19:39 2019 (r501278) @@ -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> Added: head/devel/py-websockets/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-websockets/distinfo Sat May 11 18:19:39 2019 (r501278) @@ -0,0 +1,3 @@ +TIMESTAMP = 1557597822 +SHA256 (websockets-7.0.tar.gz) = 08e3c3e0535befa4f0c4443824496c03ecc25062debbcf895874f8a0b4c97c9f +SIZE (websockets-7.0.tar.gz) = 49257 Added: head/devel/py-websockets/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-websockets/pkg-descr Sat May 11 18:19:39 2019 (r501278) @@ -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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905111819.x4BIJd2p099695>