Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/avro-c/, net-misc/kafkacat/
Date: Fri, 31 Jan 2020 17:59:16
Message-Id: 1580493527.a320e572d2448c70e896a1d9860d01b62024004c.williamh@gentoo
1 commit: a320e572d2448c70e896a1d9860d01b62024004c
2 Author: William Hubbs <william.hubbs <AT> sony <DOT> com>
3 AuthorDate: Fri Jan 31 17:56:44 2020 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 31 17:58:47 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a320e572
7
8 dev-libs/avro-c: c library for apache avro data serialization system
9
10 Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
11
12 dev-libs/avro-c/avro-c-1.9.1.ebuild | 23 +++++++++++++++++++++++
13 net-misc/kafkacat/kafkacat-1.5.0.ebuild | 4 +++-
14 2 files changed, 26 insertions(+), 1 deletion(-)
15
16 diff --git a/dev-libs/avro-c/avro-c-1.9.1.ebuild b/dev-libs/avro-c/avro-c-1.9.1.ebuild
17 new file mode 100644
18 index 00000000000..3d47fc238ea
19 --- /dev/null
20 +++ b/dev-libs/avro-c/avro-c-1.9.1.ebuild
21 @@ -0,0 +1,23 @@
22 +# Copyright 2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +inherit cmake
27 +
28 +DESCRIPTION="c library for the apache avro data serialization system"
29 +HOMEPAGE="https://avro.apache.org/"
30 +SRC_URI="http://archive.apache.org/dist/avro/avro-${PV}/c/avro-c-${PV}.tar.gz"
31 +
32 +LICENSE="Apache-2.0"
33 +SLOT="0"
34 +KEYWORDS="~amd64"
35 +
36 +DEPEND="
37 + app-arch/snappy
38 + >=dev-libs/jansson-2.3
39 + sys-libs/zlib"
40 + RDEPEND="${DEPEND}"
41 +
42 +PATCHES=(
43 + "${FILESDIR}/${P}-fix-libdir.patch"
44 +)
45
46 diff --git a/net-misc/kafkacat/kafkacat-1.5.0.ebuild b/net-misc/kafkacat/kafkacat-1.5.0.ebuild
47 index 911a01bcf83..5782d2eaa92 100644
48 --- a/net-misc/kafkacat/kafkacat-1.5.0.ebuild
49 +++ b/net-misc/kafkacat/kafkacat-1.5.0.ebuild
50 @@ -12,9 +12,11 @@ SRC_URI="https://github.com/edenhill/kafkacat/archive/${PV}.tar.gz -> ${P}.tar.g
51 LICENSE="BSD-2"
52 SLOT="0"
53 KEYWORDS="~amd64"
54 -IUSE="+json"
55 +IUSE="avro +json"
56
57 DEPEND=">=dev-libs/librdkafka-0.9.4
58 + avro? (
59 + )
60 json? ( dev-libs/yajl )"
61 RDEPEND="${DEPEND}"