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: Fri, 22 Feb 2019 08:57:37 +0000 (UTC)	[thread overview]
Message-ID: <1550825840.42bcdf6efd1364a049adc97512f04e839a5743a0.patrick@gentoo> (raw)

commit:     42bcdf6efd1364a049adc97512f04e839a5743a0
Author:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 22 08:56:12 2019 +0000
Commit:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Fri Feb 22 08:57:20 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42bcdf6e

net-misc/kafka-bin: Bump

Package-Manager: Portage-2.3.62, Repoman-2.3.12
X-Autogenerated-SOB: Yes
Signed-off-by: Patrick Lauer <patrick <AT> gentoo.org>

 net-misc/kafka-bin/Manifest               |  1 +
 net-misc/kafka-bin/kafka-bin-2.1.1.ebuild | 61 +++++++++++++++++++++++++++++++
 2 files changed, 62 insertions(+)

diff --git a/net-misc/kafka-bin/Manifest b/net-misc/kafka-bin/Manifest
index e7d15df5326..d3da1042801 100644
--- a/net-misc/kafka-bin/Manifest
+++ b/net-misc/kafka-bin/Manifest
@@ -7,3 +7,4 @@ DIST kafka_2.12-1.1.1.tgz 50602117 BLAKE2B acef2456e70278e09fe2a686205829d0c699a
 DIST kafka_2.12-2.0.0.tgz 49405896 BLAKE2B 601ea97c3007e2d09b1520baa86bf9ed7e740ba6e1aaac675cb158dad3e079a253e032ba7e1034526fa04d7f8088043747800b37db59232b45e729b944029f6c SHA512 b28e81705e30528f1abb6766e22dfe9dae50b1e1e93330c880928ff7a08e6b38ee71cbfc96ec14369b2dfd24293938702cab422173c8e01955a9d1746ae43f98
 DIST kafka_2.12-2.0.1.tgz 49446678 BLAKE2B 6d4aa6bd015cb42492364893c3f8ee01b2ce0408097ce5cdf0d3074c1096d30c8eec9926cad6dab31d3b2f26e16ae06173ee25554a8f901632bfde27270a70d3 SHA512 9773a85ef2898b4bae20481df4cfd5488bd195fffd700fcc874a9fa55065f6873f2ee12f46d2f6a6ccb5d5a93ddb7dec19227aef5d39d4f72b545ec63b24bb2f
 DIST kafka_2.12-2.1.0.tgz 55201623 BLAKE2B 3c0b0ce65b65dc005fe4e0e8a3c03d9047e9028fcbcdb840bcddbbabf59d02589057c250073836f779f335523e701f2c4c48d50e3580e5168fb5be1ad730ea83 SHA512 05a07e928c439b1084a6b3f6835f067f9636ac47f9473dcaaf7040d339cbd0a4561b7478531b237aa69e27f50fe3a2e7f4d0f2ba99a6422592a89ecf1187fa25
+DIST kafka_2.12-2.1.1.tgz 55351618 BLAKE2B a102fa24883ab5d3110aec1367e40c0ed0a437ca776e2532dbddb8a79c6288b8334c30b48072da8b58c693fc765106b6dcd03b6baebf66708021305a2dff2acf SHA512 a2e8168e8de6b45e8fca1f2883f0744d3c5a939b70d8a47a5428b72188501d4c2fc11bc35759f2392680d4e8ecf2fa9d0e518e77fd28393afba22194ad018b10

diff --git a/net-misc/kafka-bin/kafka-bin-2.1.1.ebuild b/net-misc/kafka-bin/kafka-bin-2.1.1.ebuild
new file mode 100644
index 00000000000..0f799f94c22
--- /dev/null
+++ b/net-misc/kafka-bin/kafka-bin-2.1.1.ebuild
@@ -0,0 +1,61 @@
+# 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="http://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"
+
+RDEPEND="virtual/jre:1.8"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+INSTALL_DIR="/opt/${MY_PN}"
+
+pkg_setup() {
+	enewgroup kafka
+	enewuser kafka -1 /bin/sh /var/lib/kafka kafka
+}
+
+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}"
+}


             reply	other threads:[~2019-02-22  8:57 UTC|newest]

Thread overview: 54+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-02-22  8:57 Patrick Lauer [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 罗百科
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-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=1550825840.42bcdf6efd1364a049adc97512f04e839a5743a0.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