From owner-svn-ports-head@freebsd.org Sun Nov 27 11:47:52 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 720C4C58A20; Sun, 27 Nov 2016 11:47:52 +0000 (UTC) (envelope-from novel@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 mx1.freebsd.org (Postfix) with ESMTPS id 2785EF80; Sun, 27 Nov 2016 11:47:52 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uARBlpwJ059770; Sun, 27 Nov 2016 11:47:51 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uARBlon6059764; Sun, 27 Nov 2016 11:47:50 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201611271147.uARBlon6059764@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Sun, 27 Nov 2016 11:47:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r427224 - in head/devel: . py-websockify X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Nov 2016 11:47:52 -0000 Author: novel Date: Sun Nov 27 11:47:50 2016 New Revision: 427224 URL: https://svnweb.freebsd.org/changeset/ports/427224 Log: Add py-websockify 0.8.0, webSocket to TCP proxy/bridge. PR: 214743 Submitted by: Alexander Nusov Added: head/devel/py-websockify/ head/devel/py-websockify/Makefile (contents, props changed) head/devel/py-websockify/distinfo (contents, props changed) head/devel/py-websockify/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Nov 27 11:43:27 2016 (r427223) +++ head/devel/Makefile Sun Nov 27 11:47:50 2016 (r427224) @@ -4679,6 +4679,7 @@ SUBDIR += py-wcwidth SUBDIR += py-weakrefmethod SUBDIR += py-weblib + SUBDIR += py-websockify SUBDIR += py-wheel SUBDIR += py-wrapt SUBDIR += py-wsgi_xmlrpc Added: head/devel/py-websockify/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-websockify/Makefile Sun Nov 27 11:47:50 2016 (r427224) @@ -0,0 +1,20 @@ +# Created by: Alexander Nusov +# $FreeBSD$ + +PORTNAME= websockify +PORTVERSION= 0.8.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= alexander.nusov@nfvexpress.com +COMMENT= WebSocket to TCP proxy/bridge + +LICENSE= LGPL3 + +NO_ARCH= yes + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-websockify/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-websockify/distinfo Sun Nov 27 11:47:50 2016 (r427224) @@ -0,0 +1,3 @@ +TIMESTAMP = 1478983467 +SHA256 (websockify-0.8.0.tar.gz) = 547d3d98c5081f2dc2872a2e4a3aef33e0ee5141d5f6209204aab2f4a41548d2 +SIZE (websockify-0.8.0.tar.gz) = 234450 Added: head/devel/py-websockify/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-websockify/pkg-descr Sun Nov 27 11:47:50 2016 (r427224) @@ -0,0 +1,8 @@ +Websockify was formerly named wsproxy and was part of the noVNC project. + +At the most basic level, websockify just translates WebSockets traffic +to normal socket traffic. Websockify accepts the WebSockets handshake, +parses it, and then begins forwarding traffic between the client and +the target in both directions. + +WWW: http://pypi.python.org/pypi/websockify