sys-cluster/spark-bin: Remove 2.4.5

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@alectenharmsel.com>
Closes: https://github.com/gentoo/gentoo/pull/16383
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
This commit is contained in:
Alec Ten Harmsel
2020-06-23 06:43:02 -04:00
committed by Joonas Niilola
parent c51cf076b9
commit 517a73e1a5
2 changed files with 0 additions and 62 deletions

View File

@@ -1,2 +1 @@
DIST spark-bin-2.4.5.tgz 232530699 BLAKE2B e67d728af9e40417afb09e342d515021146bebef9a27df12cab2b64f1eb3ed134bbb8eecd731b2e30c9c4c6042f6fb9d076da5ac5c654c9066d2f9c3ecd0c24c SHA512 2426a20c548bdfc07df288cd1d18d1da6b3189d0b78dee76fa034c52a4e02895f0ad460720c526f163ba63a17efae4764c46a1cd8f9b04c60f9937a554db85d2
DIST spark-bin-2.4.6.tgz 233215067 BLAKE2B f2208a59822c98d90be3df95ffb7593ffe4faa74e233771b467732bfc3e01c65866488c74ee5f14c341790308537153f895f14f56beb0194a088a68b52f4fda1 SHA512 3a9f401eda9b5749cdafd246b1d14219229c26387017791c345a23a65782fb8b25a302bf4ac1ed7c16a1fe83108e94e55dad9639a51c751d81c8c0534a4a9641

View File

@@ -1,61 +0,0 @@
# 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
}