From: "William Hubbs" <williamh@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/kafka-bin/
Date: Wed, 26 Feb 2020 19:17:27 +0000 (UTC) [thread overview]
Message-ID: <1582744622.a7f1d744c65d53b721af361946c2cfadf756d36c.williamh@gentoo> (raw)
commit: a7f1d744c65d53b721af361946c2cfadf756d36c
Author: William Hubbs <william.hubbs <AT> sony <DOT> com>
AuthorDate: Wed Feb 26 19:14:29 2020 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Wed Feb 26 19:17:02 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7f1d744
net-misc/kafka-bin: 2.4.0 bump
Closes: https://bugs.gentoo.org/show_bug.cgi?id=710128
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
net-misc/kafka-bin/Manifest | 1 +
net-misc/kafka-bin/kafka-bin-2.4.0.ebuild | 59 +++++++++++++++++++++++++++++++
2 files changed, 60 insertions(+)
diff --git a/net-misc/kafka-bin/Manifest b/net-misc/kafka-bin/Manifest
index fd3a8c13cb9..161743c15db 100644
--- a/net-misc/kafka-bin/Manifest
+++ b/net-misc/kafka-bin/Manifest
@@ -5,3 +5,4 @@ DIST kafka_2.12-2.1.1.tgz 55351618 BLAKE2B a102fa24883ab5d3110aec1367e40c0ed0a43
DIST kafka_2.12-2.2.0.tgz 57028557 BLAKE2B d71a84a308961fc78ad51c9831ef3a45f95380f143df2c961ea79603ba7c2471d0b0ae15853df86904d90dfc82cd2d2a52c03371391f534a4bf10bcd05d314ba SHA512 63fdcd05b857a096d2e72804253590bd086e4f3046fbfa546f186602e48f54712ed6de2a346a5b05d5335870bf5268fcb2bfd3ef9c4f4bbea379091a79604556
DIST kafka_2.12-2.2.1.tgz 57054917 BLAKE2B fb69ef12f7480b8b47e511cc9325b622dc1fcc6a265bacfdf1ac03d34ad8f5a3b3242c41386214519423bce1e18d8a90f2e7034e26681fe637c823d0a73f69bb SHA512 b8d828f06dfe59e34c4cfa20c57c8c8b43374f1e7c09f12dfa5433534a380bfe09a6de90fb86a4403939a87ab9c665e2369143c138c71391b01bbb9b384e7ac5
DIST kafka_2.12-2.3.0.tgz 57215197 BLAKE2B 91400bed0860633523d60f4b00e47eb18b27f67abca24547d680d08213c10e0de126bf39f790ae16e704446811e9d25d78ed940cf3ae07fff8e2045cd05a89f1 SHA512 a5ed591ab304a1f16f7fd64183871e38aabf814a2c1ca86bb3d064c83e85a6463d3c55f4d707a29fc3d7994dd7ba1f790b5a6219c6dffdf472afd99cee37892e
+DIST kafka_2.12-2.4.0.tgz 62283588 BLAKE2B 3492f7a5be9941a75aa5896be0e25974b46887a66e391395a813844bae2f5f57062b636852cdb7aa3650fb4017f9d462a3b95b2166b8a0be62f403c44826b675 SHA512 53b52f86ea56c9fac62046524f03f75665a089ea2dae554aefe3a3d2694f2da88b5ba8725d8be55f198ba80695443559ed9de7c0b2a2817f7a6141008ff79f49
diff --git a/net-misc/kafka-bin/kafka-bin-2.4.0.ebuild b/net-misc/kafka-bin/kafka-bin-2.4.0.ebuild
new file mode 100644
index 00000000000..f3356290d10
--- /dev/null
+++ b/net-misc/kafka-bin/kafka-bin-2.4.0.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils user
+
+DESCRIPTION="A high-throughput distributed messaging system"
+HOMEPAGE="https://kafka.apache.org/"
+
+# pick recommended scala version
+SCALA_VERSION=2.12
+MY_PN="kafka"
+MY_P="${MY_PN}_${SCALA_VERSION}-${PV}"
+SRC_URI="mirror://apache/kafka/${PV}/${MY_P}.tgz"
+
+RESTRICT="mirror"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="internal-zookeeper"
+
+COMMON_DEPEND="acct-group/kafka
+ acct-user/kafka
+ virtual/jre:1.8"
+DEPEND="${COMMON_DEPEND}"
+RDEPEND="${COMMON_DEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+INSTALL_DIR="/opt/${MY_PN}"
+
+src_prepare() {
+ sed -i -e 's:/tmp/zookeeper:/var/lib/kafka/zookeeper:' "config/zookeeper.properties" || die
+ sed -i -e 's:/tmp/kafka-logs:/var/lib/kafka/logs:' "config/server.properties" || die
+ eapply_user
+}
+
+src_install() {
+ insinto /etc/kafka
+ doins config/zookeeper.properties config/server.properties
+ if use "internal-zookeeper"; then
+ keepdir /var/lib/kafka/zookeeper
+ newinitd "${FILESDIR}/${MY_PN}-zookeeper.init.d" "${MY_PN}-zookeeper"
+ fi
+
+ keepdir /var/lib/kafka
+ fowners -R kafka:kafka /var/lib/kafka
+
+ keepdir /var/log/kafka
+ fowners -R kafka:kafka /var/log/kafka
+
+ newinitd "${FILESDIR}/${MY_PN}.init.d.4" "${MY_PN}"
+
+ dodir "${INSTALL_DIR}"
+ cp -pRP bin config libs "${ED}/${INSTALL_DIR}" || die
+ keepdir "${INSTALL_DIR}/logs"
+ fowners -R kafka:kafka "${INSTALL_DIR}"
+}
next reply other threads:[~2020-02-26 19:17 UTC|newest]
Thread overview: 59+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-26 19:17 William Hubbs [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-19 9:33 [gentoo-commits] repo/gentoo:master commit in: net-misc/kafka-bin/ Patrick Lauer
2025-03-19 9:33 Patrick Lauer
2024-11-08 18:46 Patrick Lauer
2024-11-01 8:05 Patrick Lauer
2024-11-01 8:05 Patrick Lauer
2024-08-02 9:49 Patrick Lauer
2024-08-02 9:49 Patrick Lauer
2024-07-15 5:43 Patrick Lauer
2024-03-13 9:07 Patrick Lauer
2024-02-06 9:34 Patrick Lauer
2024-02-06 9:34 Patrick Lauer
2023-12-31 18:00 罗百科
2023-10-17 18:27 罗百科
2023-07-31 14:24 罗百科
2023-07-31 13:27 罗百科
2023-06-17 15:23 罗百科
2023-06-17 15:23 罗百科
2023-03-20 8:14 罗百科
2023-03-20 8:14 罗百科
2023-02-05 8:03 罗百科
2023-02-05 8:03 罗百科
2022-10-04 15:39 罗百科
2022-09-21 12:54 罗百科
2022-05-19 13:11 罗百科
2022-04-07 8:43 罗百科
2022-03-16 10:35 罗百科
2022-02-15 10:53 罗百科
2021-09-22 12:31 罗百科
2021-09-22 12:31 罗百科
2021-05-20 8:18 罗百科
2021-05-20 8:18 罗百科
2020-09-22 14:05 罗百科
2020-08-09 5:50 罗百科
2020-06-19 12:57 罗百科
2020-06-19 12:57 罗百科
2020-02-26 20:01 William Hubbs
2019-06-26 17:39 罗百科
2019-05-30 6:57 Patrick Lauer
2019-05-30 6:57 Patrick Lauer
2019-02-22 8:57 Patrick Lauer
2019-02-22 8:57 Patrick Lauer
2019-01-26 15:49 Patrick Lauer
2018-08-26 17:40 Michał Górny
2018-08-04 11:06 Patrick Lauer
2018-07-28 8:06 Patrick Lauer
2018-03-30 18:53 Patrick Lauer
2017-12-18 23:28 Ulrich Müller
2017-12-10 17:34 Ulrich Müller
2017-11-28 18:29 Patrick Lauer
2017-11-26 23:23 David Seifert
2017-11-02 7:35 Patrick Lauer
2017-07-04 13:43 Patrick Lauer
2017-05-02 5:50 Patrick Lauer
2017-03-09 11:13 Patrick Lauer
2016-12-28 17:10 Patrick Lauer
2016-10-28 12:43 Patrick Lauer
2016-10-20 16:49 Patrick Lauer
2016-10-01 11:18 Manuel Rüger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1582744622.a7f1d744c65d53b721af361946c2cfadf756d36c.williamh@gentoo \
--to=williamh@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox