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: Thu,  2 Nov 2017 07:35:11 +0000 (UTC)	[thread overview]
Message-ID: <1509603887.b615f6dcd46a08d2b96e451e6a1efc9c6f6b8322.patrick@gentoo> (raw)

commit:     b615f6dcd46a08d2b96e451e6a1efc9c6f6b8322
Author:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Thu Nov  2 06:24:47 2017 +0000
Commit:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Thu Nov  2 06:24:47 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b615f6dc

net-misc/kafka-bin: Bump

Package-Manager: Portage-2.3.13, Repoman-2.3.4

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

diff --git a/net-misc/kafka-bin/Manifest b/net-misc/kafka-bin/Manifest
index 9adbaaaa6f5..4998af97b61 100644
--- a/net-misc/kafka-bin/Manifest
+++ b/net-misc/kafka-bin/Manifest
@@ -5,3 +5,4 @@ DIST kafka_2.11-0.10.2.0.tgz 37630750 SHA256 4c9e73059dea2dcb5022135f8e7eff5f187
 DIST kafka_2.12-0.10.2.1.tgz 34046244 SHA256 e523b448b24a908202c35f12fd0caaa49ce70070305c360f7ed2270bb2c95f47 SHA512 48884838980ff182fe1bb089b5f8db91aaa190dad9f9cbf24d762ba8afb897546f66d66ce110eef87ad1541e06564e5ea455e4698a23fbd296d971e033953bbc WHIRLPOOL f6fa89a778828d84824e867db84bd3e7d40ceb389beb29bef079ef9220ab8010a2d39e51a42a12abb3446bb96bcee560bfa6966c1681185532eabfc75f065a0f
 DIST kafka_2.12-0.11.0.0.tgz 36644420 SHA256 ab6310dd0d9fce1e6e8045b51b471fb35c3e197714e6e6b03bc5864898785f2d SHA512 60b44930700ab42e4a0e3945b6eb32db422d2e62388b4fee68aef97aea939fd252ebd0be39b36a4e6149aff9dcbd5b0578095d8a8812bd75111a65299aa5af55 WHIRLPOOL 33485fab4501501b608d8709ed59e9a0531b0adaaf1cdbd54c5f5cfb1e36b6a00cb8e0cc0d1f5eb6068b00bd5ebe1d26d3aa39d5096a52cf71c498f7912fa6ae
 DIST kafka_2.12-0.11.0.1.tgz 37227486 SHA256 c776f2dbb7f4e1af6b61e32d482b513a1788bf5f39602746b005ab92601a46f2 SHA512 e85b152a0865e068309d3117b874010895389761da43ec62c87e2e4cffa5c8ea0eed6ea6beceae87d437ffabb143d6bc36408b1387985f2b90fe8b9c8201f29e WHIRLPOOL 9e06a4a9e0d2aea98b12f4fa20f7a8c9a58c7e845283ea0508ecbbe81d7f91eb7ffba054a40da47fa35fec1da777c6c6934c6ec9fbeb6cee8a0e3a05bac8872b
+DIST kafka_2.12-1.0.0.tgz 44352403 SHA256 d5b1d00752252d9c129e9284f26f8280e9899dd374167f257e29d5346eb544b3 SHA512 1b647b7f392148aa2b9d47550a1502e50be4b005c70c82dae03065b89484e66400528be40ca2d54f35eb2c0e70f35c88a04777c2b625daa5d5546caab4ed6818 WHIRLPOOL 1e8996b0324058bb62a84fa60f62d00e01448f6da803aff7251ec520c700a95d0c77b0fe41a3da562eeedf760af1c6d2b8c0b4deb861cfaa16637453a4bf7dec

diff --git a/net-misc/kafka-bin/kafka-bin-1.0.0.ebuild b/net-misc/kafka-bin/kafka-bin-1.0.0.ebuild
new file mode 100644
index 00000000000..a3d76ba672c
--- /dev/null
+++ b/net-misc/kafka-bin/kafka-bin-1.0.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+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 virtual/jre:1.7 )
+"
+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
+}
+
+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.3" "${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:[~2017-11-02  7:35 UTC|newest]

Thread overview: 54+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-02  7:35 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-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-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=1509603887.b615f6dcd46a08d2b96e451e6a1efc9c6f6b8322.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