From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
Date: Thu, 16 Jul 2020 14:39:06 +0000 (UTC) [thread overview]
Message-ID: <1594910322.9c182e63b5cb2e159edd60c2ebaebfefe46504d9.juippis@gentoo> (raw)
commit: 9c182e63b5cb2e159edd60c2ebaebfefe46504d9
Author: Alec Ten Harmsel <alec <AT> alectenharmsel <DOT> com>
AuthorDate: Tue Jun 23 10:39:15 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Jul 16 14:38:42 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c182e63
sys-cluster/spark-bin: Bump to 2.4.6
2.4.5 and earlier are insecure (see CVE-2020-9480).
Bug: https://bugs.gentoo.org/729222
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alec Ten Harmsel <alec <AT> alectenharmsel.com>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
sys-cluster/spark-bin/Manifest | 1 +
sys-cluster/spark-bin/spark-bin-2.4.6.ebuild | 61 ++++++++++++++++++++++++++++
2 files changed, 62 insertions(+)
diff --git a/sys-cluster/spark-bin/Manifest b/sys-cluster/spark-bin/Manifest
index 37e8dc7558b..50733043239 100644
--- a/sys-cluster/spark-bin/Manifest
+++ b/sys-cluster/spark-bin/Manifest
@@ -1,2 +1,3 @@
DIST spark-bin-2.3.1.tgz 225883783 BLAKE2B d89e83a54aaabd39c5fa0d9c51a1bb5635f60ded4869672a387d13d87fffbb48385d4fbf67b55a96e709f27348f73a089624a0563c98eaba31f93d74bf4548ee SHA512 dc3a97f3d99791d363e4f70a622b84d6e313bd852f6fdbc777d31eab44cbc112ceeaa20f7bf835492fb654f48ae57e9969f93d3b0e6ec92076d1c5e1b40b4696
DIST spark-bin-2.4.5.tgz 232530699 BLAKE2B e67d728af9e40417afb09e342d515021146bebef9a27df12cab2b64f1eb3ed134bbb8eecd731b2e30c9c4c6042f6fb9d076da5ac5c654c9066d2f9c3ecd0c24c SHA512 2426a20c548bdfc07df288cd1d18d1da6b3189d0b78dee76fa034c52a4e02895f0ad460720c526f163ba63a17efae4764c46a1cd8f9b04c60f9937a554db85d2
+DIST spark-bin-2.4.6.tgz 233215067 BLAKE2B f2208a59822c98d90be3df95ffb7593ffe4faa74e233771b467732bfc3e01c65866488c74ee5f14c341790308537153f895f14f56beb0194a088a68b52f4fda1 SHA512 3a9f401eda9b5749cdafd246b1d14219229c26387017791c345a23a65782fb8b25a302bf4ac1ed7c16a1fe83108e94e55dad9639a51c751d81c8c0534a4a9641
diff --git a/sys-cluster/spark-bin/spark-bin-2.4.6.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.6.ebuild
new file mode 100644
index 00000000000..c178519a3a7
--- /dev/null
+++ b/sys-cluster/spark-bin/spark-bin-2.4.6.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit java-pkg-2
+
+DESCRIPTION="Lightning-fast unified analytics engine"
+HOMEPAGE="https://spark.apache.org"
+SRC_URI="mirror://apache/spark/spark-${PV}/spark-${PV}-bin-hadoop2.7.tgz -> ${P}.tgz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+ >=virtual/jre-1.8"
+
+DEPEND="
+ >=virtual/jdk-1.8"
+
+S="${WORKDIR}/spark-${PV}-bin-hadoop2.7"
+
+DOCS=( LICENSE NOTICE README.md RELEASE )
+
+# Nothing to compile here.
+src_compile() { :; }
+
+src_install() {
+ dodir usr/lib/spark
+ into usr/lib/spark
+
+ dobin bin/beeline \
+ bin/find-spark-home \
+ bin/pyspark \
+ bin/spark-class \
+ bin/spark-shell \
+ bin/spark-sql \
+ bin/spark-submit
+
+ insinto usr/lib/spark/bin
+ doins bin/load-spark-env.sh
+
+ insinto usr/lib/spark
+ doins -r conf
+ doins -r jars
+ doins -r python
+ doins -r sbin
+ doins -r yarn
+
+ dosym ../lib/spark/bin/beeline /usr/bin/beeline
+ dosym ../lib/spark/bin/find-spark-home /usr/bin/find-spark-home
+ dosym ../lib/spark/bin/pyspark /usr/bin/pyspark
+ dosym ../lib/spark/bin/spark-class /usr/bin/spark-class
+ dosym ../lib/spark/bin/spark-shell /usr/bin/spark-shell
+ dosym ../lib/spark/bin/spark-sql /usr/bin/spark-sql
+ dosym ../lib/spark/bin/spark-submit /usr/bin/spark-submit
+
+ doenvd "${FILESDIR}"/99spark
+ einstalldocs
+}
next reply other threads:[~2020-07-16 14:39 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-16 14:39 Joonas Niilola [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-26 15:19 [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/ Miroslav Šulc
2024-11-14 9:21 Miroslav Šulc
2024-08-15 13:43 Miroslav Šulc
2021-09-21 7:03 Joonas Niilola
2020-12-15 9:14 Patrice Clement
2020-12-10 17:50 Patrice Clement
2020-12-10 16:45 Patrice Clement
2020-11-26 15:55 Patrice Clement
2020-11-26 15:55 Patrice Clement
2020-11-26 15:55 Patrice Clement
2020-11-26 15:55 Patrice Clement
2020-11-26 15:55 Patrice Clement
2020-11-26 15:55 Patrice Clement
2020-11-26 14:10 Patrice Clement
2020-11-26 14:06 Patrice Clement
2020-11-26 14:06 Patrice Clement
2020-11-26 11:10 Patrice Clement
2020-11-26 11:10 Patrice Clement
2020-11-24 16:27 Patrice Clement
2020-11-24 16:27 Patrice Clement
2020-10-02 7:32 Joonas Niilola
2020-07-16 14:39 Joonas Niilola
2020-07-16 14:39 Joonas Niilola
2020-04-17 8:08 Joonas Niilola
2020-04-16 8:11 Joonas Niilola
2020-04-16 8:11 Joonas Niilola
2019-11-13 15:05 Joonas Niilola
2019-11-13 15:05 Joonas Niilola
2019-10-16 5:22 Joonas Niilola
2019-10-16 5:22 Joonas Niilola
2019-05-17 16:36 Patrice Clement
2018-11-05 22:47 Patrice Clement
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=1594910322.9c182e63b5cb2e159edd60c2ebaebfefe46504d9.juippis@gentoo \
--to=juippis@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