svn commit: r501278 - in head/devel: . py-websockets

Emanuel Haupt ehaupt at FreeBSD.org
Sat May 11 18:19:41 UTC 2019


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 at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	websockets
+PORTVERSION=	7.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	ehaupt at 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/


More information about the svn-ports-all mailing list