Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 4 Mar 2018 22:05:19 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r463602 - in head/www: . py-sseclient
Message-ID:  <201803042205.w24M5Jv5003380@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Sun Mar  4 22:05:19 2018
New Revision: 463602
URL: https://svnweb.freebsd.org/changeset/ports/463602

Log:
  New port: www/py-sseclient: Python client library for reading Server Sent Event streams
  
  Approved by:	tcberner (mentor, implicit)

Added:
  head/www/py-sseclient/
  head/www/py-sseclient/Makefile   (contents, props changed)
  head/www/py-sseclient/distinfo   (contents, props changed)
  head/www/py-sseclient/pkg-descr   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Sun Mar  4 21:57:54 2018	(r463601)
+++ head/www/Makefile	Sun Mar  4 22:05:19 2018	(r463602)
@@ -1867,6 +1867,7 @@
     SUBDIR += py-sockjs-tornado
     SUBDIR += py-splinter
     SUBDIR += py-spyne
+    SUBDIR += py-sseclient
     SUBDIR += py-surl
     SUBDIR += py-textile
     SUBDIR += py-tmdb3

Added: head/www/py-sseclient/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-sseclient/Makefile	Sun Mar  4 22:05:19 2018	(r463602)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	sseclient
+DISTVERSION=	0.0.18
+CATEGORIES=	www python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	Python client library for reading Server Sent Event streams
+
+LICENSE=	MIT
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${FLAVOR}
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/www/py-sseclient/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-sseclient/distinfo	Sun Mar  4 22:05:19 2018	(r463602)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1520200425
+SHA256 (sseclient-0.0.18.tar.gz) = 1760af17b8c35d815a908040e6f9258f7c531c7522ce08f6112ffe99711e2ed9
+SIZE (sseclient-0.0.18.tar.gz) = 4402

Added: head/www/py-sseclient/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-sseclient/pkg-descr	Sun Mar  4 22:05:19 2018	(r463602)
@@ -0,0 +1,6 @@
+A Python client library for iterating over http Server Sent Event (SSE) streams
+(also known as EventSource, after the name of the Javascript interface inside
+browsers). The SSEClient class accepts a url on init, and is then an iterator
+over messages coming from the server.
+
+WWW: https://github.com/btubbs/sseclient



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