Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 15 Mar 2016 17:26:50 +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: r411196 - in head/net: . py-kafka-python
Message-ID:  <201603151726.u2FHQoiI012328@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: feld
Date: Tue Mar 15 17:26:50 2016
New Revision: 411196
URL: https://svnweb.freebsd.org/changeset/ports/411196

Log:
  This module provides low-level protocol support for Apache Kafka as well as
  high-level consumer and producer classes. Request batching is supported by the
  protocol as well as broker-aware request routing. Gzip and Snappy compression
  is also supported for message sets.
  
  WWW: https://github.com/mumrah/kafka-python
  
  PR:		202000
  Submitted by:	Christer Edwards <christer.edwards@gmail.com>

Added:
  head/net/py-kafka-python/
  head/net/py-kafka-python/Makefile   (contents, props changed)
  head/net/py-kafka-python/distinfo   (contents, props changed)
  head/net/py-kafka-python/pkg-descr   (contents, props changed)
Modified:
  head/net/Makefile

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Tue Mar 15 17:19:11 2016	(r411195)
+++ head/net/Makefile	Tue Mar 15 17:26:50 2016	(r411196)
@@ -943,6 +943,7 @@
     SUBDIR += py-impacket
     SUBDIR += py-ipaddress
     SUBDIR += py-iplib
+    SUBDIR += py-kafka-python
     SUBDIR += py-kombu
     SUBDIR += py-ldap
     SUBDIR += py-ldap3

Added: head/net/py-kafka-python/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-kafka-python/Makefile	Tue Mar 15 17:26:50 2016	(r411196)
@@ -0,0 +1,20 @@
+# Created by: Christer Edwards <christer.edwards@gmail.com>
+# $FreeBSD$
+
+PORTNAME=	kafka-python
+PORTVERSION=	0.9.4
+CATEGORIES=	net python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	christer.edwards@gmail.com
+COMMENT=	Pure Python client for Apache Kafka
+
+LICENSE=	APACHE20
+
+USE_PYTHON=	autoplist distutils
+USES=		python shebangfix
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}six>=0:${PORTSDIR}/devel/py-six
+
+.include <bsd.port.mk>

Added: head/net/py-kafka-python/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-kafka-python/distinfo	Tue Mar 15 17:26:50 2016	(r411196)
@@ -0,0 +1,2 @@
+SHA256 (kafka-python-0.9.4.tar.gz) = 6cd463b688d98fec1c1f602e316eb7745aef0e55dc57fe9ff2f203cf0865c8c7
+SIZE (kafka-python-0.9.4.tar.gz) = 63119

Added: head/net/py-kafka-python/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-kafka-python/pkg-descr	Tue Mar 15 17:26:50 2016	(r411196)
@@ -0,0 +1,6 @@
+This module provides low-level protocol support for Apache Kafka as well as
+high-level consumer and producer classes. Request batching is supported by the
+protocol as well as broker-aware request routing. Gzip and Snappy compression
+is also supported for message sets.
+
+WWW: https://github.com/mumrah/kafka-python



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603151726.u2FHQoiI012328>