From owner-svn-ports-head@freebsd.org Mon Jan 28 19:09:39 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1725414BC622; Mon, 28 Jan 2019 19:09:39 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B27E97348C; Mon, 28 Jan 2019 19:09:38 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8C9DA23F23; Mon, 28 Jan 2019 19:09:38 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x0SJ9cEG070242; Mon, 28 Jan 2019 19:09:38 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x0SJ9bZY070238; Mon, 28 Jan 2019 19:09:37 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201901281909.x0SJ9bZY070238@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Mon, 28 Jan 2019 19:09:37 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/net: . py-confluent-kafka X-SVN-Commit-Revision: 491512 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B27E97348C X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.978,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jan 2019 19:09:39 -0000 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 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