svn commit: r425175 - in head/devel: . py-streamparse

Mark Felder feld at FreeBSD.org
Wed Nov 2 23:47:17 UTC 2016


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 <feld at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	streamparse
+PORTVERSION=	3.1.1
+PORTREVISION=	0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	feld at FreeBSD.org
+COMMENT=	Python analysis of Apache Storm streams
+
+LICENSE=	APACHE20
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

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


More information about the svn-ports-all mailing list