View | Details | Raw Unified | Return to bug 254093 | Differences between
and this patch

Collapse All | Expand All

(-)b/net/kafkacat/Makefile (-2 / +13 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	kafkacat
4
PORTNAME=	kafkacat
5
DISTVERSION=	1.5.0
5
DISTVERSION=	1.6.0
6
CATEGORIES=	net
6
CATEGORIES=	net
7
7
8
MAINTAINER=	sergey@akhmatov.ru
8
MAINTAINER=	sergey@akhmatov.ru
Lines 18-26 USES= gmake pkgconfig Link Here
18
USE_GITHUB=	yes
18
USE_GITHUB=	yes
19
GH_ACCOUNT=	edenhill
19
GH_ACCOUNT=	edenhill
20
20
21
GNU_CONFIGURE=	yes
22
21
PLIST_FILES=	bin/kafkacat
23
PLIST_FILES=	bin/kafkacat
22
24
23
GNU_CONFIGURE=	yes
25
OPTIONS_DEFINE=	JSON AVRO
26
AVRO_DESC=	Avro/Schema-Registry support (requires libserdes)
27
JSON_DESC=	JSON support (requires libyajl2)
28
29
AVRO_LIB_DEPENDS=	libserdes.so:devel/libserdes
30
AVRO_CONFIGURE_ENABLE=	avro
31
AVRO_BROKEN=	avro support is currently broken
32
# Build with avro broken due to bug: https://github.com/apache/avro/pull/1018/commits
33
JSON_LIB_DEPENDS=	libyajl.so:devel/yajl
34
JSON_CONFIGURE_ENABLE=	json
24
35
25
post-install:
36
post-install:
26
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/kafkacat
37
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/kafkacat
(-)b/net/kafkacat/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1568414384
1
TIMESTAMP = 1595406133
2
SHA256 (edenhill-kafkacat-1.5.0_GH0.tar.gz) = 16f358fab258cbefc328cf642f72ee8b5dae1648657d508997279ca5bd0fbef0
2
SHA256 (edenhill-kafkacat-1.6.0_GH0.tar.gz) = e67aecd153659d7ea0d561469a1e65038485fe9a3203fa8c9c59a9fe02164bf0
3
SIZE (edenhill-kafkacat-1.5.0_GH0.tar.gz) = 124682
3
SIZE (edenhill-kafkacat-1.6.0_GH0.tar.gz) = 131314
(-)b/net/kafkacat/files/patch-configure (-11 lines)
Lines 1-11 Link Here
1
--- configure.orig	2015-06-18 17:24:07 UTC
2
+++ configure
3
@@ -38,7 +38,7 @@ mkl_require cc
4
 
5
 
6
 # Load application provided modules (in current directory), if any.
7
-for fname in configure.* ; do
8
+for fname in configure.kafkacat ; do
9
     if [[ $fname = 'configure.*' ]]; then
10
         continue
11
     fi

Return to bug 254093