Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 28 Jan 2019 19:09:37 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r491512 - in head/net: . py-confluent-kafka
Message-ID:  <201901281909.x0SJ9bZY070238@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tobik
Date: Mon Jan 28 19:09:37 2019
New Revision: 491512
URL: https://svnweb.freebsd.org/changeset/ports/491512

Log:
  New port: net/py-confluent-kafka
  
  Confluent-kafka-python is a lightweight wrapper around librdkafka,
  a finely tuned C client.  The Python bindings provides a high-level
  Producer and Consumer with support for the balanced consumer groups
  of Apache Kafka.
  
  WWW: https://github.com/confluentinc/confluent-kafka-python
  
  PR:		233403
  Submitted by:	sergey@akhmatov.ru
  Reviewed by:	koobs

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

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Mon Jan 28 19:03:41 2019	(r491511)
+++ head/net/Makefile	Mon Jan 28 19:09:37 2019	(r491512)
@@ -1023,6 +1023,7 @@
     SUBDIR += py-cjdns
     SUBDIR += py-cloudflare-scrape
     SUBDIR += py-coherence
+    SUBDIR += py-confluent-kafka
     SUBDIR += py-cymruwhois
     SUBDIR += py-dpkt
     SUBDIR += py-dugong

Added: head/net/py-confluent-kafka/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-confluent-kafka/Makefile	Mon Jan 28 19:09:37 2019	(r491512)
@@ -0,0 +1,25 @@
+# $FreeBSD$
+
+PORTNAME=	confluent-kafka
+DISTVERSION=	0.11.6
+CATEGORIES=	net python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sergey@akhmatov.ru
+COMMENT=	Confluent Apache Kafka Python client
+
+LICENSE=	APACHE20
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+LIB_DEPENDS=	librdkafka.so:net/librdkafka
+RUN_DEPENDS=	${PY_ENUM34} \
+		${PY_FUTURES}
+
+USES=		localbase python
+USE_PYTHON=	autoplist distutils
+
+post-install:
+	${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/confluent_kafka/cimpl.so
+
+.include <bsd.port.mk>

Added: head/net/py-confluent-kafka/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-confluent-kafka/distinfo	Mon Jan 28 19:09:37 2019	(r491512)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1542818934
+SHA256 (confluent-kafka-0.11.6.tar.gz) = 2746f7796b3c15dabd07a7750ff2cb3cb9a1e97aab6881c6b1e091fc9ca27fb7
+SIZE (confluent-kafka-0.11.6.tar.gz) = 72996

Added: head/net/py-confluent-kafka/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-confluent-kafka/pkg-descr	Mon Jan 28 19:09:37 2019	(r491512)
@@ -0,0 +1,6 @@
+Confluent-kafka-python is a lightweight wrapper around librdkafka,
+a finely tuned C client.  The Python bindings provides a high-level
+Producer and Consumer with support for the balanced consumer groups
+of Apache Kafka.
+
+WWW: https://github.com/confluentinc/confluent-kafka-python



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