From owner-svn-ports-head@freebsd.org Wed Nov 2 23:47:17 2016 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 4884BC2C45D; Wed, 2 Nov 2016 23:47:17 +0000 (UTC) (envelope-from feld@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 D96A7111B; Wed, 2 Nov 2016 23:47:16 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA2NlGQx061053; Wed, 2 Nov 2016 23:47:16 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA2NlFND061049; Wed, 2 Nov 2016 23:47:15 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201611022347.uA2NlFND061049@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 2 Nov 2016 23:47:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425175 - in head/devel: . py-streamparse 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.23 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 Nov 2016 23:47:17 -0000 Author: feld Date: Wed Nov 2 23:47:15 2016 New Revision: 425175 URL: https://svnweb.freebsd.org/changeset/ports/425175 Log: Streamparse lets you run Python code against real-time streams of data via Apache Storm. With streamparse you can create Storm bolts and spouts in Python without having to write a single line of Java. It also provides handy CLI utilities for managing Storm clusters and projects. WWW: https://github.com/Parsely/streamparse Added: head/devel/py-streamparse/ head/devel/py-streamparse/Makefile (contents, props changed) head/devel/py-streamparse/distinfo (contents, props changed) head/devel/py-streamparse/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Nov 2 22:45:14 2016 (r425174) +++ head/devel/Makefile Wed Nov 2 23:47:15 2016 (r425175) @@ -4547,6 +4547,7 @@ SUBDIR += py-stdnum SUBDIR += py-stevedore SUBDIR += py-stopit + SUBDIR += py-streamparse SUBDIR += py-structlog SUBDIR += py-stsci.distutils SUBDIR += py-subversion Added: head/devel/py-streamparse/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-streamparse/Makefile Wed Nov 2 23:47:15 2016 (r425175) @@ -0,0 +1,19 @@ +# Created by: Mark Felder +# $FreeBSD$ + +PORTNAME= streamparse +PORTVERSION= 3.1.1 +PORTREVISION= 0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= feld@FreeBSD.org +COMMENT= Python analysis of Apache Storm streams + +LICENSE= APACHE20 + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-streamparse/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-streamparse/distinfo Wed Nov 2 23:47:15 2016 (r425175) @@ -0,0 +1,3 @@ +TIMESTAMP = 1478130361 +SHA256 (streamparse-3.1.1.tar.gz) = 602c2f8beff569492e6b5f188850ef39678f70ede293de1dbac1712810c36163 +SIZE (streamparse-3.1.1.tar.gz) = 147640 Added: head/devel/py-streamparse/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-streamparse/pkg-descr Wed Nov 2 23:47:15 2016 (r425175) @@ -0,0 +1,6 @@ +Streamparse lets you run Python code against real-time streams of data +via Apache Storm. With streamparse you can create Storm bolts and spouts +in Python without having to write a single line of Java. It also +provides handy CLI utilities for managing Storm clusters and projects. + +WWW: https://github.com/Parsely/streamparse