Gentoo Archives: gentoo-commits

From: Patrick Lauer <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/zookeeper-bin/
Date: Sun, 29 Apr 2018 18:40:19
Message-Id: 1525027208.dd3aa29d3fd993d809a1d8dcb4dfca2397a1689d.patrick@gentoo
1 commit: dd3aa29d3fd993d809a1d8dcb4dfca2397a1689d
2 Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 29 18:09:30 2018 +0000
4 Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 29 18:40:08 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd3aa29d
7
8 sys-cluster/zookeeper-bin: Bump
9
10 Package-Manager: Portage-2.3.31, Repoman-2.3.9
11
12 sys-cluster/zookeeper-bin/Manifest | 1 +
13 .../zookeeper-bin/zookeeper-bin-3.4.12.ebuild | 90 ++++++++++++++++++++++
14 2 files changed, 91 insertions(+)
15
16 diff --git a/sys-cluster/zookeeper-bin/Manifest b/sys-cluster/zookeeper-bin/Manifest
17 index 2542dd98ecd..32d110f8b5e 100644
18 --- a/sys-cluster/zookeeper-bin/Manifest
19 +++ b/sys-cluster/zookeeper-bin/Manifest
20 @@ -1,2 +1,3 @@
21 DIST zookeeper-3.4.10.tar.gz 35042811 BLAKE2B c17100d2179688665cfc9efededd378543492e2a839df9da7ab72097b954200c527375cadae1d7b30d83c511c21c1470d0b86a4a19df5abe0c82980920cad92f SHA512 4c54e40ac8d0b267db4a188a30e39ed0ac2c3e8a8fadaf244be45ff5adee956df28f6cb9f1eb56f175e924fa3629b64f98286a090c46764c91c017613c80a51b
22 DIST zookeeper-3.4.11.tar.gz 36668066 BLAKE2B 4bf963d41280bd6227b4e81721576bf1f973a765c7049e78c5fae4d9dbc7e4d034304208af0f68b894bd4624e1945c9e4492b3217ff7f0e05d9b822c1843d96d SHA512 1ed2df11dbff2fbbb70d992d02427c4f694ccb4fe493db10a087b04d934b132b970956099edbdf1c2c636d5eb248bca1528846fcb449ae8bee4b9a82f7936f9e
23 +DIST zookeeper-3.4.12.tar.gz 36667596 BLAKE2B e4aac98f86fc4fcc576ecfb55381fd37efe3fa56cebc1632abda59b6ba71fecca17ace29124ef9f59ca0de627ff463f9d6fc7ff7fbbe77c2bbf30ae25a9f99f8 SHA512 026c7feb4a660bf8d99b1b719fec2b7e4603c3c46f2b77bac372df15ed0ceb4d971aa9c954082d61d73929ef8dc38c31693604ae75244f746cafb4eb6e67320c
24
25 diff --git a/sys-cluster/zookeeper-bin/zookeeper-bin-3.4.12.ebuild b/sys-cluster/zookeeper-bin/zookeeper-bin-3.4.12.ebuild
26 new file mode 100644
27 index 00000000000..a35bfb4d98d
28 --- /dev/null
29 +++ b/sys-cluster/zookeeper-bin/zookeeper-bin-3.4.12.ebuild
30 @@ -0,0 +1,90 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=5
35 +PYTHON_COMPAT=( python2_7 )
36 +
37 +inherit distutils-r1 eutils java-utils-2 user
38 +
39 +MY_P="zookeeper"
40 +MY_PN=${MY_P}-${PV}
41 +
42 +DESCRIPTION="A high-performance coordination service for distributed applications."
43 +HOMEPAGE="http://zookeeper.apache.org/"
44 +SRC_URI="mirror://apache/${MY_P}/${MY_PN}/${MY_PN}.tar.gz"
45 +
46 +LICENSE="Apache-2.0"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86"
49 +RESTRICT="mirror binchecks"
50 +IUSE=""
51 +
52 +DEPEND=""
53 +RDEPEND=">=virtual/jre-1.7"
54 +
55 +S=${WORKDIR}/${MY_PN}
56 +
57 +INSTALL_DIR=/opt/${PN}
58 +export CONFIG_PROTECT="${CONFIG_PROTECT} ${INSTALL_DIR}/conf"
59 +
60 +pkg_setup() {
61 + enewgroup zookeeper
62 + enewuser zookeeper -1 /bin/sh /var/lib/zookeeper zookeeper
63 +}
64 +
65 +src_prepare() {
66 + # python
67 + sed -e "s|src/c/zookeeper.c|zookeeper.c|g" \
68 + -e "s|../../../|${S}|g" \
69 + -i contrib/zkpython/src/python/setup.py || die
70 +}
71 +
72 +src_configure() {
73 + cd "${S}"/src/c || die
74 + econf
75 +}
76 +
77 +src_compile() {
78 + cd "${S}"/src/c || die
79 + emake
80 +}
81 +
82 +src_install() {
83 + local DATA_DIR=/var/lib/${MY_P}
84 +
85 + # python
86 + cd "${S}"/contrib/zkpython/ || die
87 + mv src/python/setup.py .
88 + mv src/c/* .
89 + python_foreach_impl distutils-r1_src_install
90 + cd "${S}" || die
91 +
92 + # cleanup sources
93 + rm -rf src/ || die
94 + rm bin/*.cmd || die
95 +
96 + keepdir "${DATA_DIR}"
97 + sed "s:^dataDir=.*:dataDir=${DATA_DIR}:" conf/zoo_sample.cfg > conf/zoo.cfg || die "sed failed"
98 + cp "${FILESDIR}"/log4j.properties conf/ || die "cp log4j conf failed"
99 +
100 + dodir "${INSTALL_DIR}"
101 + cp -a "${S}"/* "${D}${INSTALL_DIR}" || die "install failed"
102 +
103 + # data dir perms
104 + fowners zookeeper:zookeeper "${DATA_DIR}"
105 +
106 + # log dir
107 + keepdir /var/log/zookeeper
108 + fowners zookeeper:zookeeper /var/log/zookeeper
109 +
110 + # init script
111 + newinitd "${FILESDIR}"/zookeeper.initd zookeeper
112 + newconfd "${FILESDIR}"/zookeeper.confd zookeeper
113 +
114 + # env file
115 + cat > 99"${PN}" <<-EOF
116 + PATH=${INSTALL_DIR}/bin
117 + CONFIG_PROTECT=${INSTALL_DIR}/conf
118 + EOF
119 + doenvd 99"${PN}" || die "doenvd failed"
120 +}