Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/zeppelin-bin/
Date: Thu, 28 Nov 2019 22:10:47
Message-Id: 1574979030.c1e6ffef9523c3ed8745a8967facd7175426ea44.monsieurp@gentoo
1 commit: c1e6ffef9523c3ed8745a8967facd7175426ea44
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 28 22:10:30 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 28 22:10:30 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1e6ffef
7
8 www-apps/zeppelin-bin: version bump.
9
10 Package-Manager: Portage-2.3.79, Repoman-2.3.16
11 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
12
13 www-apps/zeppelin-bin/Manifest | 1 +
14 www-apps/zeppelin-bin/zeppelin-bin-0.8.2.ebuild | 40 +++++++++++++++++++++++++
15 2 files changed, 41 insertions(+)
16
17 diff --git a/www-apps/zeppelin-bin/Manifest b/www-apps/zeppelin-bin/Manifest
18 index ae449ef71b1..1c242e0db07 100644
19 --- a/www-apps/zeppelin-bin/Manifest
20 +++ b/www-apps/zeppelin-bin/Manifest
21 @@ -1 +1,2 @@
22 DIST zeppelin-bin-0.8.1.tgz 992975720 BLAKE2B 13bae89054a5be0570d0550cfc875d989de66dcdc6fe2aa3c8b71b452782d8cf2c8f6cf030b47f1b9050899912f75136cef7d9ef1b80c8957ad8a260fc7050c5 SHA512 b8302b36acc5cc8859f4341329bcb4d038bbb91d4493be191606df94da08a2fa37940958ceae507e6cdbe22fc338111ac9bee580cb41ee74198911469552df02
23 +DIST zeppelin-bin-0.8.2.tgz 998508624 BLAKE2B cccfa95426d8d0407d7a226f5d71c15ca55da8893a7fff9e3a612c63034ab1838f8f7d5a529bb393b825c6c3bd19e197f4e913c2c5b8dd04fb282affc43788ab SHA512 91a785153bc47b087f90fac0f83066fdede041d5193506b231af1b6855b150307873c92cea462c6dd48ef6d38caa37934591a08542199ac4b02d9493298fbd43
24
25 diff --git a/www-apps/zeppelin-bin/zeppelin-bin-0.8.2.ebuild b/www-apps/zeppelin-bin/zeppelin-bin-0.8.2.ebuild
26 new file mode 100644
27 index 00000000000..8423abc2db7
28 --- /dev/null
29 +++ b/www-apps/zeppelin-bin/zeppelin-bin-0.8.2.ebuild
30 @@ -0,0 +1,40 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit java-pkg-2 user
37 +
38 +MY_PN="zeppelin"
39 +MY_P="${MY_PN}-${PV}-bin-all"
40 +
41 +DESCRIPTION="Web-based interactive data analytics notebook launcher"
42 +HOMEPAGE="https://zeppelin.apache.org"
43 +SRC_URI="mirror://apache/zeppelin/${MY_PN}-${PV}/${MY_P}.tgz -> ${P}.tgz"
44 +LICENSE="Apache-2.0"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +
48 +DEPEND=">=virtual/jdk-1.8"
49 +RDEPEND=">=virtual/jre-1.8"
50 +
51 +S="${WORKDIR}/${MY_P}"
52 +
53 +INSTALL_DIR="/opt/${P}"
54 +
55 +pkg_setup() {
56 + enewgroup zeppelin
57 + enewuser zeppelin -1 /bin/sh /home/zeppelin zeppelin
58 +}
59 +
60 +src_install() {
61 + keepdir /var/log/zeppelin
62 + fowners -R zeppelin:zeppelin /var/log/zeppelin
63 +
64 + newinitd "${FILESDIR}/zeppelin.init.d" zeppelin
65 +
66 + dodir "${INSTALL_DIR}"
67 + cp -pRP * "${ED}/${INSTALL_DIR}" || die
68 + dosym "${P}" /opt/zeppelin
69 + fowners -R zeppelin:zeppelin "${INSTALL_DIR}"
70 +}