svn commit: r425179 - in head/devel: . py-pystorm

Mark Felder feld at FreeBSD.org
Thu Nov 3 00:25:36 UTC 2016


Author: feld
Date: Thu Nov  3 00:25:34 2016
New Revision: 425179
URL: https://svnweb.freebsd.org/changeset/ports/425179

Log:
  Pystorm lets you run Python code against real-time streams of data via
  Apache Storm. With pystorm you can create Storm bolts and spouts in
  Python without having to write a single line of Java. It is meant to be
  used under-the-hood by Storm Python libraries that will provide the
  command-line tools for actually building/submitting the topologies
  (e.g., streamparse and pyleus).
  
  WWW: https://github.com/pystorm/pystorm

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Nov  3 00:18:13 2016	(r425178)
+++ head/devel/Makefile	Thu Nov  3 00:25:34 2016	(r425179)
@@ -4419,6 +4419,7 @@
     SUBDIR += py-pyrfc3339
     SUBDIR += py-pyro
     SUBDIR += py-pyshapelib
+    SUBDIR += py-pystorm
     SUBDIR += py-pyte
     SUBDIR += py-pytemplate
     SUBDIR += py-pytest

Added: head/devel/py-pystorm/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pystorm/Makefile	Thu Nov  3 00:25:34 2016	(r425179)
@@ -0,0 +1,24 @@
+# Created by: Mark Felder <feld at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	pystorm
+PORTVERSION=	3.0.3
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	feld at FreeBSD.org
+COMMENT=	Battle-tested Apache Storm Multi-Lang implementation for Python
+
+LICENSE=	APACHE20
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six
+RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}simplejson>0:devel/py-simplejson
+RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}msgpack-python>0:devel/py-msgpack-python
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-pystorm/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pystorm/distinfo	Thu Nov  3 00:25:34 2016	(r425179)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1478132501
+SHA256 (pystorm-3.0.3.tar.gz) = 12998cfee61c53ee18cca831fff72eccb53f08e6e0cde5c438ec464e9c969181
+SIZE (pystorm-3.0.3.tar.gz) = 23436

Added: head/devel/py-pystorm/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pystorm/pkg-descr	Thu Nov  3 00:25:34 2016	(r425179)
@@ -0,0 +1,8 @@
+Pystorm lets you run Python code against real-time streams of data via
+Apache Storm. With pystorm you can create Storm bolts and spouts in
+Python without having to write a single line of Java. It is meant to be
+used under-the-hood by Storm Python libraries that will provide the
+command-line tools for actually building/submitting the topologies
+(e.g., streamparse and pyleus).
+
+WWW: https://github.com/pystorm/pystorm


More information about the svn-ports-all mailing list