Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 Dec 2015 01:24:14 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
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
Message-ID:  <201512020124.tB21OEjZ070121@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <mstucchi@ripe.net>
  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 <mstucchi@ripe.net>
+# $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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512020124.tB21OEjZ070121>