public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "罗百科" <patrick@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/kafka-bin/
Date: Thu, 20 May 2021 08:18:31 +0000 (UTC)	[thread overview]
Message-ID: <1621498709.b62e0e8c6405b57098a432c57073f5e8531dc1b5.patrick@gentoo> (raw)

commit:     b62e0e8c6405b57098a432c57073f5e8531dc1b5
Author:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Thu May 20 08:17:35 2021 +0000
Commit:     罗百科 <patrick <AT> gentoo <DOT> org>
CommitDate: Thu May 20 08:18:29 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b62e0e8c

net-misc/kafka-bin: Bump to 2.8.0

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Patrick Lauer <patrick <AT> gentoo.org>

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

diff --git a/net-misc/kafka-bin/Manifest b/net-misc/kafka-bin/Manifest
index 3a389412542..18c2790f36c 100644
--- a/net-misc/kafka-bin/Manifest
+++ b/net-misc/kafka-bin/Manifest
@@ -9,3 +9,4 @@ DIST kafka_2.12-2.5.1.tgz 61709988 BLAKE2B 4e6943058fe25da0cc9285e1e8dbe2be2ad2b
 DIST kafka_2.13-2.6.0.tgz 65537909 BLAKE2B 883bc22f53ae7882ff2e27a3b9b62967f4718718f8e2ee222debd5f5b36636e00b35ceb60c3fd6924905b88ef96442439198255bb8329cee1cc722364ff0810f SHA512 d884e4df7d85b4fff54ca9cd987811c58506ad7871b9ed7114bbafa6fee2e79f43d04c550eea471f508b08ea34b4316ea1e529996066fd9b93fcf912f41f6165
 DIST kafka_2.13-2.6.1.tgz 65585925 BLAKE2B 639cc9ec9a3b630d01387b1fe4aa12f5e6ba66b751689d48f17af3759fbfc079616a21534eb72bb647cfee0d14ff86757d73e2ee0733d0f69548efceb90be3e3 SHA512 09ec7a39d0e11494ede7d92cf7dfec5b95c6b0218e3b096b731d85ee8c442469e66aaf369a9c6750399719e515ee1bd372d609d6b232e3358e18aa2b57c90e29
 DIST kafka_2.13-2.7.0.tgz 68583422 BLAKE2B 68925221e025c2f380808da672f9ac08c19c21eaf4d3fe732051e02143dbc735082fce55cd40388b980159bfbe8b06666922852492564927c5fcc237bb3f74dc SHA512 f3dd1fd88766d9150d3d395b285bfa75f5b89a835822381490c8428e6e568889054ddb5fada1eb63613a6441989151bc7c7d6cde16a871c6674b909c4edd4e28
+DIST kafka_2.13-2.8.0.tgz 71403603 BLAKE2B 5aae0b9c3bbe26af093c00fb971ebdac2a7ee28e10ba52732dd816d343ae79dad08502f766efb3465ab5d43ee51e3573b240dfbb511330af74d8010aef107eb7 SHA512 3c49dca1147a0a249dd88e089f40af31a67b8207ed2d9e2294fa9a6d41f5ed0b006943cd60d8e30d7e69d760d398f299cafcd68b6ed7bedf9f93d1b7a9e8c487

diff --git a/net-misc/kafka-bin/kafka-bin-2.8.0.ebuild b/net-misc/kafka-bin/kafka-bin-2.8.0.ebuild
new file mode 100644
index 00000000000..fb42f54f96d
--- /dev/null
+++ b/net-misc/kafka-bin/kafka-bin-2.8.0.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+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: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
+	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:[~2021-05-20  8:18 UTC|newest]

Thread overview: 54+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-20  8:18 罗百科 [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-08-02  9:49 [gentoo-commits] repo/gentoo:master commit in: net-misc/kafka-bin/ 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 罗百科
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=1621498709.b62e0e8c6405b57098a432c57073f5e8531dc1b5.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