From owner-svn-ports-head@FreeBSD.ORG Sat Feb 14 07:23:49 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D5B43D6A; Sat, 14 Feb 2015 07:23:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 A6E99C64; Sat, 14 Feb 2015 07:23:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1E7Nnet086160; Sat, 14 Feb 2015 07:23:49 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1E7NmlX086156; Sat, 14 Feb 2015 07:23:48 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201502140723.t1E7NmlX086156@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sat, 14 Feb 2015 07:23:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r378950 - in head/www: . py-wsaccel 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.18-1 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: Sat, 14 Feb 2015 07:23:49 -0000 Author: koobs Date: Sat Feb 14 07:23:47 2015 New Revision: 378950 URL: https://svnweb.freebsd.org/changeset/ports/378950 QAT: https://qat.redports.org/buildarchive/r378950/ Log: [NEW] www/py-wsaccel: WebSocket Accelerator for ws4py and AutobahnPython WSAccell is WebSocket accelerator for AutobahnPython, ws4py and Tornado. WSAccell replaces per-byte process in them with Cython version. WWW: https://github.com/methane/wsaccel Added: head/www/py-wsaccel/ head/www/py-wsaccel/Makefile (contents, props changed) head/www/py-wsaccel/distinfo (contents, props changed) head/www/py-wsaccel/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sat Feb 14 07:07:48 2015 (r378949) +++ head/www/Makefile Sat Feb 14 07:23:47 2015 (r378950) @@ -1720,6 +1720,7 @@ SUBDIR += py-webware-component SUBDIR += py-werkzeug SUBDIR += py-wikitools + SUBDIR += py-wsaccel SUBDIR += py-ws4py SUBDIR += py-wsgiauth SUBDIR += py-wsgidav Added: head/www/py-wsaccel/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-wsaccel/Makefile Sat Feb 14 07:23:47 2015 (r378950) @@ -0,0 +1,22 @@ +# Created by: Kubilay Kocak +# $FreeBSD$ + +PORTNAME= wsaccel +PORTVERSION= 0.6.2 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= koobs@FreeBSD.org +COMMENT= WebSocket Accelerator for ws4py and AutobahnPython + +LICENSE= APACHE20 + +USES= python +USE_PYTHON= autoplist distutils + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/${PORTNAME}/utf8validator.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/${PORTNAME}/xormask.so + +.include Added: head/www/py-wsaccel/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-wsaccel/distinfo Sat Feb 14 07:23:47 2015 (r378950) @@ -0,0 +1,2 @@ +SHA256 (wsaccel-0.6.2.tar.gz) = 425706acf0724d2f6bfa391ec37b4ef121d3432c956029de3cea4e101c218e0c +SIZE (wsaccel-0.6.2.tar.gz) = 35773 Added: head/www/py-wsaccel/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-wsaccel/pkg-descr Sat Feb 14 07:23:47 2015 (r378950) @@ -0,0 +1,5 @@ +WSAccell is WebSocket accelerator for AutobahnPython, ws4py and Tornado. + +WSAccell replaces per-byte process in them with Cython version. + +WWW: https://github.com/methane/wsaccel