From owner-svn-ports-head@freebsd.org Sun Mar 4 22:05:20 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BA02AF37E82; Sun, 4 Mar 2018 22:05:20 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 64D0572B31; Sun, 4 Mar 2018 22:05:20 +0000 (UTC) (envelope-from yuri@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5C8381B335; Sun, 4 Mar 2018 22:05:20 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w24M5KGl003384; Sun, 4 Mar 2018 22:05:20 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w24M5Jv5003380; Sun, 4 Mar 2018 22:05:19 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201803042205.w24M5Jv5003380@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 4 Mar 2018 22:05:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r463602 - in head/www: . py-sseclient X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/www: . py-sseclient X-SVN-Commit-Revision: 463602 X-SVN-Commit-Repository: ports 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.25 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, 04 Mar 2018 22:05:21 -0000 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 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