From owner-svn-ports-all@freebsd.org Thu Feb 14 00:29:05 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B501A14DCE29; Thu, 14 Feb 2019 00:29:05 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 591C283FA8; Thu, 14 Feb 2019 00:29:05 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4CAF32EC29; Thu, 14 Feb 2019 00:29:05 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x1E0T5ki051981; Thu, 14 Feb 2019 00:29:05 GMT (envelope-from bofh@FreeBSD.org) Received: (from bofh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1E0T4Kj051974; Thu, 14 Feb 2019 00:29:04 GMT (envelope-from bofh@FreeBSD.org) Message-Id: <201902140029.x1E0T4Kj051974@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bofh set sender to bofh@FreeBSD.org using -f From: Muhammad Moinur Rahman Date: Thu, 14 Feb 2019 00:29:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r492890 - in head/net: . py-wsproto X-SVN-Group: ports-head X-SVN-Commit-Author: bofh X-SVN-Commit-Paths: in head/net: . py-wsproto X-SVN-Commit-Revision: 492890 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 591C283FA8 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.97)[-0.968,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Feb 2019 00:29:05 -0000 Author: bofh Date: Thu Feb 14 00:29:04 2019 New Revision: 492890 URL: https://svnweb.freebsd.org/changeset/ports/492890 Log: [NEW] net/py-wsproto: Sans-IO WebSocket protocol implementation A pure-Python implementation of a WebSocket protocol stack. It's written from the ground up to be embeddable in whatever program you choose to use, ensuring that you can communicate via WebSockets, as defined in RFC6455, regardless of your programming paradigm. This does not provide a parsing layer, a network layer, or any rules about concurrency. Instead, it's a purely in-memory solution, defined in terms of data actions and WebSocket frames. RFC6455 and Compression Extensions for WebSocket via RFC7692 are fully supported. WWW: https://pypi.org/project/wsproto/ WWW: https://github.com/python-hyper/wsproto/ Added: head/net/py-wsproto/ head/net/py-wsproto/Makefile (contents, props changed) head/net/py-wsproto/distinfo (contents, props changed) head/net/py-wsproto/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Thu Feb 14 00:15:34 2019 (r492889) +++ head/net/Makefile Thu Feb 14 00:29:04 2019 (r492890) @@ -1142,6 +1142,7 @@ SUBDIR += py-urllib3 SUBDIR += py-wmi-query SUBDIR += py-wolframalpha + SUBDIR += py-wsproto SUBDIR += py-xmlrpc SUBDIR += py-zeroconf SUBDIR += py-zope.proxy Added: head/net/py-wsproto/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-wsproto/Makefile Thu Feb 14 00:29:04 2019 (r492890) @@ -0,0 +1,23 @@ +# Created by: Muhammad Moinur Rahman +# $FreeBSD$ + +PORTNAME= wsproto +PORTVERSION= 0.13.0 +CATEGORIES= net python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= bofh@FreeBSD.org +COMMENT= Sans-IO WebSocket protocol implementation + +LICENSE= MIT + +RUN_DEPENDS= ${PY_ENUM34} \ + ${PYTHON_PKGNAMEPREFIX}h11>=0.8.1:net/py-h11@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/net/py-wsproto/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-wsproto/distinfo Thu Feb 14 00:29:04 2019 (r492890) @@ -0,0 +1,3 @@ +TIMESTAMP = 1550098897 +SHA256 (wsproto-0.13.0.tar.gz) = fd6020d825022247053400306448e161d8740bdd52e328e5553cd9eee089f705 +SIZE (wsproto-0.13.0.tar.gz) = 50758 Added: head/net/py-wsproto/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-wsproto/pkg-descr Thu Feb 14 00:29:04 2019 (r492890) @@ -0,0 +1,12 @@ +A pure-Python implementation of a WebSocket protocol stack. It's written from +the ground up to be embeddable in whatever program you choose to use, ensuring +that you can communicate via WebSockets, as defined in RFC6455, regardless of +your programming paradigm. + +This does not provide a parsing layer, a network layer, or any rules about +concurrency. Instead, it's a purely in-memory solution, defined in terms of data +actions and WebSocket frames. RFC6455 and Compression Extensions for WebSocket +via RFC7692 are fully supported. + +WWW: https://pypi.org/project/wsproto/ +WWW: https://github.com/python-hyper/wsproto/