public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Patrick Lauer" <patrick@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/kafka-bin/
Date: Mon, 26 May 2025 09:36:52 +0000 (UTC)	[thread overview]
Message-ID: <1748252191.e7e664e5cf6d9a9d5f2396f859595d2c5913c220.patrick@gentoo> (raw)

commit:     e7e664e5cf6d9a9d5f2396f859595d2c5913c220
Author:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Mon May 26 09:36:31 2025 +0000
Commit:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Mon May 26 09:36:31 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7e664e5

net-misc/kafka-bin: add 3.9.1

Signed-off-by: Patrick Lauer <patrick <AT> gentoo.org>

 net-misc/kafka-bin/Manifest               |  1 +
 net-misc/kafka-bin/kafka-bin-3.9.1.ebuild | 69 +++++++++++++++++++++++++++++++
 2 files changed, 70 insertions(+)

diff --git a/net-misc/kafka-bin/Manifest b/net-misc/kafka-bin/Manifest
index dc2a3fa6350d..64ed06d66343 100644
--- a/net-misc/kafka-bin/Manifest
+++ b/net-misc/kafka-bin/Manifest
@@ -1,2 +1,3 @@
 DIST kafka_2.13-3.9.0.tgz 122037770 BLAKE2B 4c398a47cf007de7df3d9d0acacc8ac23004b68a1dec48535f5b7941bff7e70bb07e768976571107974fdd44e9d0cf03e5132b518f7303f6a644d35bbcfda978 SHA512 5324c1f44d4c84ea469712c2cc3d2d15545c3716edbb5353722df9c661fcc78b031fcf07d1c4f0309c5fdb32686665dfb0cffe55210cd3a1fe2a370538cb4e6d
+DIST kafka_2.13-3.9.1.tgz 122110298 BLAKE2B 44e5f5ac0962f03d113718be94ae12ed0824c9f824916814c56c76a4c5516a739b8c810602825404907a003067ccad33be60fc80600a5b75cd156151027c7ab7 SHA512 1ea204ba73411737a275429ca976d440f007ff0957b90b19be41dc5a4bae52617267769be9f0b5791714d0b3c4c760605bd426faea39edd90763585523fa2cfe
 DIST kafka_2.13-4.0.0.tgz 132045169 BLAKE2B 3990051ff3bba3ff48dfca425591293f2d7a7a51419ee99472357b3f869abdc5ac127fb05e56160203db58d9c7dc4a6109e3e9b1aac102651de5de07f11b92a0 SHA512 00722ab0a6b954e0006994b8d589dcd8f26e1827c47f70b6e820fb45aa35945c19163b0f188caf0caf976c11f7ab005fd368c54e5851e899d2de687a804a5eb9

diff --git a/net-misc/kafka-bin/kafka-bin-3.9.1.ebuild b/net-misc/kafka-bin/kafka-bin-3.9.1.ebuild
new file mode 100644
index 000000000000..1edc3302df1c
--- /dev/null
+++ b/net-misc/kafka-bin/kafka-bin-3.9.1.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="A high-throughput distributed messaging system"
+HOMEPAGE="https://kafka.apache.org/"
+
+# pick recommended scala version
+SCALA_VERSION=2.13
+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 connect"
+
+COMMON_DEPEND="acct-group/kafka
+	acct-user/kafka
+	virtual/jre:="
+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
+	sed -i -e 's:/tmp/connect.offsets:/var/lib/kafka/connect.offsets:' "config/connect-standalone.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"
+
+		ewarn "Zookeeper owner has been changed to kafka:kafka"
+		ewarn "you might want to run chown -R kafka:kafka /var/lib/kafka/zookeeper"
+		ewarn "or set COMMAND_USER=\"root:root\" in /etc/conf.d/kafka-zookeeper"
+		ewarn "to keep the previous behavior."
+		ewarn "All logs files have been move to /var/log/kafka/"
+	fi
+
+	if use "connect"; then
+		doins config/connect-distributed.properties config/connect-standalone.properties
+		newinitd "${FILESDIR}/${MY_PN}-connect-distributed.init.d" "${MY_PN}-connect-distributed"
+	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.5" "${MY_PN}"
+
+	dodir "${INSTALL_DIR}"
+	cp -pRP bin config libs "${ED}/${INSTALL_DIR}" || die
+	keepdir "${INSTALL_DIR}/logs"
+	fowners -R kafka:kafka "${INSTALL_DIR}"
+}


             reply	other threads:[~2025-05-26  9:36 UTC|newest]

Thread overview: 64+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-26  9:36 Patrick Lauer [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-09-11  5:55 [gentoo-commits] repo/gentoo:master commit in: net-misc/kafka-bin/ Eli Schwartz
2025-09-08  8:46 Patrick Lauer
2025-06-04  2:32 Sam James
2025-05-26  9:36 Patrick Lauer
2025-03-19  9:33 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
2020-02-26 19:17 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=1748252191.e7e664e5cf6d9a9d5f2396f859595d2c5913c220.patrick@gentoo \
    --to=patrick@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