From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 13:23:10 2014 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 66AF4103; Sun, 5 Oct 2014 13:23:10 +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 487CE7AF; Sun, 5 Oct 2014 13:23:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95DNAEG089883; Sun, 5 Oct 2014 13:23:10 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95DN9sH089876; Sun, 5 Oct 2014 13:23:09 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410051323.s95DN9sH089876@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 5 Oct 2014 13:23:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370063 - in head/www: . py-gevent-websocket 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: Sun, 05 Oct 2014 13:23:10 -0000 Author: antoine Date: Sun Oct 5 13:23:08 2014 New Revision: 370063 URL: https://svnweb.freebsd.org/changeset/ports/370063 QAT: https://qat.redports.org/buildarchive/r370063/ Log: New port: www/py-gevent-websocket gevent-websocket is a WebSocket library for the gevent networking library. Features include: Integration on both socket level or using an abstract interface. RPC and PubSub framework using WAMP (WebSocket Application Messaging Protocol). Easily extendible using a simple WebSocket protocol plugin API WWW: https://bitbucket.org/Jeffrey/gevent-websocket Added: head/www/py-gevent-websocket/ head/www/py-gevent-websocket/Makefile (contents, props changed) head/www/py-gevent-websocket/distinfo (contents, props changed) head/www/py-gevent-websocket/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sun Oct 5 13:22:06 2014 (r370062) +++ head/www/Makefile Sun Oct 5 13:23:08 2014 (r370063) @@ -1536,6 +1536,7 @@ SUBDIR += py-formencode SUBDIR += py-frozen-flask SUBDIR += py-funkload + SUBDIR += py-gevent-websocket SUBDIR += py-google-api-python-client SUBDIR += py-graphite-web SUBDIR += py-grequests Added: head/www/py-gevent-websocket/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-gevent-websocket/Makefile Sun Oct 5 13:23:08 2014 (r370063) @@ -0,0 +1,21 @@ +# Created by: antoine@FreeBSD.org +# $FreeBSD$ + +PORTNAME= gevent-websocket +PORTVERSION= 0.9.3 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= antoine@FreeBSD.org +COMMENT= WebSocket library for the gevent networking library + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gevent>=0:${PORTSDIR}/devel/py-gevent + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/www/py-gevent-websocket/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-gevent-websocket/distinfo Sun Oct 5 13:23:08 2014 (r370063) @@ -0,0 +1,2 @@ +SHA256 (gevent-websocket-0.9.3.tar.gz) = 6475220340f9f8895a0f51bd2b9df3511bc7765dc055f49e997584bdaee3381f +SIZE (gevent-websocket-0.9.3.tar.gz) = 16463 Added: head/www/py-gevent-websocket/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-gevent-websocket/pkg-descr Sun Oct 5 13:23:08 2014 (r370063) @@ -0,0 +1,7 @@ +gevent-websocket is a WebSocket library for the gevent networking library. +Features include: +Integration on both socket level or using an abstract interface. +RPC and PubSub framework using WAMP (WebSocket Application Messaging Protocol). +Easily extendible using a simple WebSocket protocol plugin API + +WWW: https://bitbucket.org/Jeffrey/gevent-websocket