From owner-svn-ports-head@freebsd.org Wed Dec 2 01:24:16 2015 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 0713DA3E8FE; Wed, 2 Dec 2015 01:24:16 +0000 (UTC) (envelope-from miwi@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 BBEE11EF7; Wed, 2 Dec 2015 01:24:15 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB21OEvJ070125; Wed, 2 Dec 2015 01:24:14 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB21OEjZ070121; Wed, 2 Dec 2015 01:24:14 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201512020124.tB21OEjZ070121@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Wed, 2 Dec 2015 01:24:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402805 - in head/net: . py-socketio-client 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.20 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: Wed, 02 Dec 2015 01:24:16 -0000 Author: miwi Date: Wed Dec 2 01:24:14 2015 New Revision: 402805 URL: https://svnweb.freebsd.org/changeset/ports/402805 Log: Socket.io client library for Python. You can use it to write test code for your socket.io server. WWW: https://github.com/invisibleroads/socketIO-client PR: 204782 Submitted by: Massimiliano Stucchi Approved by: mat (mentor) Added: head/net/py-socketio-client/ head/net/py-socketio-client/Makefile (contents, props changed) head/net/py-socketio-client/distinfo (contents, props changed) head/net/py-socketio-client/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Wed Dec 2 00:14:04 2015 (r402804) +++ head/net/Makefile Wed Dec 2 01:24:14 2015 (r402805) @@ -976,6 +976,7 @@ SUBDIR += py-simplesoap SUBDIR += py-smbpasswd SUBDIR += py-soappy + SUBDIR += py-socketio-client SUBDIR += py-speedtest-cli SUBDIR += py-suds SUBDIR += py-terminado Added: head/net/py-socketio-client/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-socketio-client/Makefile Wed Dec 2 01:24:14 2015 (r402805) @@ -0,0 +1,23 @@ +# Created by: Massimiliano Stucchi +# $FreeBSD$ + +PORTNAME= socketio-client +PORTVERSION= 0.6.5 +CATEGORIES= net devel python +MASTER_SITES= CHEESESHOP/source/s/socketIO-client/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= socketIO_client-${PORTVERSION} + +MAINTAINER= mstucchi@ripe.net +COMMENT= Socket.io client library for Python + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>0:${PORTSDIR}/www/py-requests \ + ${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six \ + ${PYTHON_PKGNAMEPREFIX}websocket-client>0:${PORTSDIR}/www/py-websocket-client + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/net/py-socketio-client/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-socketio-client/distinfo Wed Dec 2 01:24:14 2015 (r402805) @@ -0,0 +1,2 @@ +SHA256 (socketIO_client-0.6.5.tar.gz) = 843f271074e6d2b1302ab873d2dfb37e647aea03c75d542fdd0f47b9d81085bc +SIZE (socketIO_client-0.6.5.tar.gz) = 18387 Added: head/net/py-socketio-client/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-socketio-client/pkg-descr Wed Dec 2 01:24:14 2015 (r402805) @@ -0,0 +1,4 @@ +Socket.io client library for Python. You can use it to write test code for +your socket.io server. + +WWW: https://github.com/invisibleroads/socketIO-client