Date: Thu, 3 Nov 2016 00:25:34 +0000 (UTC) From: Mark Felder <feld@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425179 - in head/devel: . py-pystorm Message-ID: <201611030025.uA30PYhP076891@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= pystorm +PORTVERSION= 3.0.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= feld@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201611030025.uA30PYhP076891>