public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2019-11-13 15:05 Joonas Niilola
  0 siblings, 0 replies; 31+ messages in thread
From: Joonas Niilola @ 2019-11-13 15:05 UTC (permalink / raw
  To: gentoo-commits

commit:     600a367b138080090e5fb955ca8e297f5bbaa1aa
Author:     Alec Ten Harmsel <alec <AT> alectenharmsel <DOT> com>
AuthorDate: Mon Nov 11 21:02:16 2019 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Nov 13 15:04:55 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=600a367b

sys-cluster/spark-bin: Remove ${ED} from dosym

Relative links are preferred over using ${ED} in symlink paths

Signed-off-by: Alec Ten Harmsel <alec <AT> alectenharmsel.com>
Closes: https://bugs.gentoo.org/699504
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 sys-cluster/spark-bin/spark-bin-2.3.1-r1.ebuild | 61 +++++++++++++++++++++++++
 sys-cluster/spark-bin/spark-bin-2.4.4-r1.ebuild | 61 +++++++++++++++++++++++++
 2 files changed, 122 insertions(+)

diff --git a/sys-cluster/spark-bin/spark-bin-2.3.1-r1.ebuild b/sys-cluster/spark-bin/spark-bin-2.3.1-r1.ebuild
new file mode 100644
index 00000000000..b459784e997
--- /dev/null
+++ b/sys-cluster/spark-bin/spark-bin-2.3.1-r1.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+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
+}

diff --git a/sys-cluster/spark-bin/spark-bin-2.4.4-r1.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.4-r1.ebuild
new file mode 100644
index 00000000000..63bb7e0eeb4
--- /dev/null
+++ b/sys-cluster/spark-bin/spark-bin-2.4.4-r1.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2019 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
+}


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2024-08-15 13:43 Miroslav Šulc
  0 siblings, 0 replies; 31+ messages in thread
From: Miroslav Šulc @ 2024-08-15 13:43 UTC (permalink / raw
  To: gentoo-commits

commit:     c521d996f397d9b53b7b85103e344fede2c7d52e
Author:     Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
AuthorDate: Wed Aug 14 15:22:40 2024 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Thu Aug 15 13:43:01 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c521d996

sys-cluster/spark-bin: drop 2.4.3, 3.0.1-r2

Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/38147
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 sys-cluster/spark-bin/Manifest                  |  3 -
 sys-cluster/spark-bin/spark-bin-2.4.3.ebuild    | 82 -------------------------
 sys-cluster/spark-bin/spark-bin-3.0.1-r2.ebuild | 71 ---------------------
 3 files changed, 156 deletions(-)

diff --git a/sys-cluster/spark-bin/Manifest b/sys-cluster/spark-bin/Manifest
index 34d3a6ebefb2..99f45c5ffc9b 100644
--- a/sys-cluster/spark-bin/Manifest
+++ b/sys-cluster/spark-bin/Manifest
@@ -1,6 +1,3 @@
-DIST spark-bin-2.4.3-nohadoop-scala211.tgz 163128705 BLAKE2B 806964eb226aac2b4a63691b2644fc8e8cb6a7574eb4fbd8770a62c7974435b24c19253569c214b0d1a608b4de53eb351d16c4b14d3c83c91326883a795d59a8 SHA512 d1f87d46725e9feb5edf3df0c78daea263ad3e57e1a8a7069766f8e010fd673f0a99af2f69911f1319e9b6f864795e0e5291ee7c0c574434e92a458999374d85
-DIST spark-bin-2.4.3-nohadoop-scala212.tgz 141465231 BLAKE2B e29b534076b981e340833da0b6d93b8f2708a7919abfcd06f057ced6e7bb56f1140fab9d82ca157b4c7bd3aac9004d51fdfc0f8446cd9231e64e26236c2fb793 SHA512 e9651dfad8b6be162f800de987981e1b027d372e4391340589cdc23c7e579a8ec28cb950aa4aad7797ecfc330f0375844cc769a6ad5b35bac36b8cf404805c08
 DIST spark-bin-2.4.7-nohadoop-scala211.tgz 168360525 BLAKE2B 9a8728a1c7450166d4d9635ff1be6a65d57df1832945672e92044e0fc88ef152e7e870d02ec590378ea97a47d4a68568da73e6a1e92f8eaaaa06f495ed9939ad SHA512 ff75e6db3c4ca5cece2a8a26ad7bd8a2c1c46b4f93e8f2922a31e6a8d98274bedc66bef3e469e862d249c5439355ccca83687a20d536a8400f2c058be553df57
 DIST spark-bin-2.4.7-nohadoop-scala212.tgz 146775712 BLAKE2B f0381e6aebeae90990d5ad19d8db923efd01e9b215ddfe34e34a8272942e57fe7ec6a53208146006ba5c4e76f8e44d202e0715f63b559cc8749b523710b92a5f SHA512 708a702af5c754dba0137c88e3c7055d7759593f013798755468638b6fdc583a707aae4c2a4e14648f91c16b963f9bba9f8c44d28341c08c4512590a425f70a8
-DIST spark-bin-3.0.1-nohadoop.tgz 156390722 BLAKE2B 9ac4645759ca0ec6d1501dfa79d149b9cbf49dee1c4b9dcf38f62490d3ad91db01ad61d9d6b1ef4dd7bcb81a868cb58b9251575dded823c8415801d10571afee SHA512 07fc6df224f303ef53189e6082004400d51cd6c2244d1851d90eabbe58404a69ff980bffe147a5259a34190e1e1c974c72d02470d10a783d2d87f43a8da0850b
 DIST spark-bin-3.1.2-hadoop.tgz 228834641 BLAKE2B 7b0191a15414146a96394abc489940a5e572cea66749b6201f234878935c6591ff809f551dae7d6c7c996baefd551cd27c5c967e2f06184ffe2bf972f901f1ba SHA512 2385cb772f21b014ce2abd6b8f5e815721580d6e8bc42a26d70bbcdda8d303d886a6f12b36d40f6971b5547b70fae62b5a96146f0421cb93d4e51491308ef5d5

diff --git a/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild
deleted file mode 100644
index 363bc8a43f06..000000000000
--- a/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild
+++ /dev/null
@@ -1,82 +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="
-	!scala212? ( scala211? ( mirror://apache/spark/spark-${PV}/spark-${PV}-bin-without-hadoop.tgz -> ${P}-nohadoop-scala211.tgz ) )
-	!scala211? ( scala212? ( mirror://apache/spark/spark-${PV}/spark-${PV}-bin-without-hadoop-scala-2.12.tgz -> ${P}-nohadoop-scala212.tgz ) )
-"
-
-REQUIRED_USE="^^ ( scala211 scala212 )"
-
-LICENSE="Apache-2.0"
-SLOT="2"
-KEYWORDS="~amd64"
-
-IUSE="scala211 scala212"
-
-RDEPEND="
-	>=virtual/jre-1.8"
-
-DEPEND="
-	>=virtual/jdk-1.8"
-
-DOCS=( LICENSE NOTICE README.md RELEASE )
-
-src_unpack() {
-	unpack ${A}
-	use scala211 && S="${WORKDIR}/spark-${PV}-bin-without-hadoop"
-	use scala212 && S="${WORKDIR}/spark-${PV}-bin-without-hadoop-scala-2.12"
-}
-
-# Nothing to compile here.
-src_compile() { :; }
-
-src_install() {
-	dodir usr/lib/spark-${SLOT}
-	into usr/lib/spark-${SLOT}
-
-	local SPARK_SCRIPTS=(
-		bin/beeline
-		bin/find-spark-home
-		bin/load-spark-env.sh
-		bin/pyspark
-		bin/spark-class
-		bin/spark-shell
-		bin/spark-sql
-		bin/spark-submit
-	)
-
-	local s
-	for s in "${SPARK_SCRIPTS[@]}"; do
-		dobin "${s}"
-	done
-
-	insinto usr/lib/spark-${SLOT}
-
-	local SPARK_DIRS=( conf jars python sbin yarn )
-
-	local d
-	for d in "${SPARK_DIRS[@]}"; do
-		doins -r "${d}"
-	done
-
-	einstalldocs
-}
-
-pkg_postinst() {
-	einfo
-	einfo "Spark is now slotted. You have installed Spark ${SLOT}."
-	einfo
-	einfo "Make sure to add /usr/lib/spark-${SLOT}/{bin,sbin} directories"
-	einfo "to your PATH in order to run Spark shell scripts:"
-	einfo
-	einfo "$ export PATH=\$PATH:/usr/lib/spark-${SLOT}/bin"
-	einfo "$ export PATH=\$PATH:/usr/lib/spark-${SLOT}/sbin"
-	einfo
-}

diff --git a/sys-cluster/spark-bin/spark-bin-3.0.1-r2.ebuild b/sys-cluster/spark-bin/spark-bin-3.0.1-r2.ebuild
deleted file mode 100644
index 9c34936b7ea9..000000000000
--- a/sys-cluster/spark-bin/spark-bin-3.0.1-r2.ebuild
+++ /dev/null
@@ -1,71 +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-without-hadoop.tgz -> ${P}-nohadoop.tgz"
-
-LICENSE="Apache-2.0"
-SLOT="3"
-KEYWORDS="~amd64"
-
-RDEPEND="
-	>=virtual/jre-1.8"
-
-DEPEND="
-	>=virtual/jdk-1.8"
-
-S="${WORKDIR}/spark-${PV}-bin-without-hadoop"
-
-DOCS=( LICENSE NOTICE README.md RELEASE )
-
-# Nothing to compile here.
-src_compile() { :; }
-
-src_install() {
-	dodir usr/lib/spark-${SLOT}
-	into usr/lib/spark-${SLOT}
-
-	local SPARK_SCRIPTS=(
-		bin/beeline
-		bin/find-spark-home
-		bin/load-spark-env.sh
-		bin/pyspark
-		bin/spark-class
-		bin/spark-shell
-		bin/spark-sql
-		bin/spark-submit
-	)
-
-	local s
-	for s in "${SPARK_SCRIPTS[@]}"; do
-		dobin "${s}"
-	done
-
-	insinto usr/lib/spark-${SLOT}
-
-	local SPARK_DIRS=( conf jars python sbin yarn )
-
-	local d
-	for d in "${SPARK_DIRS[@]}"; do
-		doins -r "${d}"
-	done
-
-	einstalldocs
-}
-
-pkg_postinst() {
-	einfo
-	einfo "Spark is now slotted. You have installed Spark ${SLOT}."
-	einfo
-	einfo "Make sure to add /usr/lib/spark-${SLOT}/{bin,sbin} directories"
-	einfo "to your PATH in order to run Spark shell scripts:"
-	einfo
-	einfo "$ export PATH=\$PATH:/usr/lib/spark-${SLOT}/bin"
-	einfo "$ export PATH=\$PATH:/usr/lib/spark-${SLOT}/sbin"
-	einfo
-}


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2021-09-21  7:03 Joonas Niilola
  0 siblings, 0 replies; 31+ messages in thread
From: Joonas Niilola @ 2021-09-21  7:03 UTC (permalink / raw
  To: gentoo-commits

commit:     2f9364ff1df6d73f6012a94ebf90fe98ff7279cd
Author:     Alec Ten Harmsel <alec <AT> alectenharmsel <DOT> com>
AuthorDate: Tue Sep  7 16:20:06 2021 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Sep 21 07:03:03 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f9364ff

sys-cluster/spark-bin: Add version 3.1.2

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Alec Ten Harmsel <alec <AT> alectenharmsel.com>
Closes: https://github.com/gentoo/gentoo/pull/22238
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 sys-cluster/spark-bin/Manifest               |  1 +
 sys-cluster/spark-bin/spark-bin-3.1.2.ebuild | 70 ++++++++++++++++++++++++++++
 2 files changed, 71 insertions(+)

diff --git a/sys-cluster/spark-bin/Manifest b/sys-cluster/spark-bin/Manifest
index 92ebba20e9a..34d3a6ebefb 100644
--- a/sys-cluster/spark-bin/Manifest
+++ b/sys-cluster/spark-bin/Manifest
@@ -3,3 +3,4 @@ DIST spark-bin-2.4.3-nohadoop-scala212.tgz 141465231 BLAKE2B e29b534076b981e3408
 DIST spark-bin-2.4.7-nohadoop-scala211.tgz 168360525 BLAKE2B 9a8728a1c7450166d4d9635ff1be6a65d57df1832945672e92044e0fc88ef152e7e870d02ec590378ea97a47d4a68568da73e6a1e92f8eaaaa06f495ed9939ad SHA512 ff75e6db3c4ca5cece2a8a26ad7bd8a2c1c46b4f93e8f2922a31e6a8d98274bedc66bef3e469e862d249c5439355ccca83687a20d536a8400f2c058be553df57
 DIST spark-bin-2.4.7-nohadoop-scala212.tgz 146775712 BLAKE2B f0381e6aebeae90990d5ad19d8db923efd01e9b215ddfe34e34a8272942e57fe7ec6a53208146006ba5c4e76f8e44d202e0715f63b559cc8749b523710b92a5f SHA512 708a702af5c754dba0137c88e3c7055d7759593f013798755468638b6fdc583a707aae4c2a4e14648f91c16b963f9bba9f8c44d28341c08c4512590a425f70a8
 DIST spark-bin-3.0.1-nohadoop.tgz 156390722 BLAKE2B 9ac4645759ca0ec6d1501dfa79d149b9cbf49dee1c4b9dcf38f62490d3ad91db01ad61d9d6b1ef4dd7bcb81a868cb58b9251575dded823c8415801d10571afee SHA512 07fc6df224f303ef53189e6082004400d51cd6c2244d1851d90eabbe58404a69ff980bffe147a5259a34190e1e1c974c72d02470d10a783d2d87f43a8da0850b
+DIST spark-bin-3.1.2-hadoop.tgz 228834641 BLAKE2B 7b0191a15414146a96394abc489940a5e572cea66749b6201f234878935c6591ff809f551dae7d6c7c996baefd551cd27c5c967e2f06184ffe2bf972f901f1ba SHA512 2385cb772f21b014ce2abd6b8f5e815721580d6e8bc42a26d70bbcdda8d303d886a6f12b36d40f6971b5547b70fae62b5a96146f0421cb93d4e51491308ef5d5

diff --git a/sys-cluster/spark-bin/spark-bin-3.1.2.ebuild b/sys-cluster/spark-bin/spark-bin-3.1.2.ebuild
new file mode 100644
index 00000000000..63d7f5bbac0
--- /dev/null
+++ b/sys-cluster/spark-bin/spark-bin-3.1.2.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2021 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-hadoop3.2.tgz -> ${P}-hadoop.tgz"
+
+LICENSE="Apache-2.0"
+SLOT="3"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	>=virtual/jre-1.8"
+
+DEPEND="
+	>=virtual/jdk-1.8"
+
+S="${WORKDIR}/spark-${PV}-bin-hadoop3.2"
+
+DOCS=( LICENSE NOTICE README.md RELEASE )
+
+# Nothing to compile here.
+src_compile() { :; }
+
+src_install() {
+	dodir usr/lib/spark-${SLOT}
+	into usr/lib/spark-${SLOT}
+
+	local spark_scripts=(
+		bin/beeline
+		bin/find-spark-home
+		bin/load-spark-env.sh
+		bin/pyspark
+		bin/spark-class
+		bin/spark-shell
+		bin/spark-sql
+		bin/spark-submit
+	)
+
+	local s
+	for s in "${spark_scripts[@]}"; do
+		dobin "${s}"
+	done
+
+	insinto usr/lib/spark-${SLOT}
+
+	local spark_dirs=( conf jars python sbin yarn )
+
+	local d
+	for d in "${spark_dirs[@]}"; do
+		doins -r "${d}"
+	done
+
+	newenvd - "50${PN}${SLOT}" <<-_EOF_
+		PATH="/usr/lib/spark-${SLOT}/bin:/usr/lib/spark-${SLOT}/sbin"
+		SPARK_HOME="/usr/lib/spark-${SLOT}"
+	_EOF_
+
+	einstalldocs
+}
+
+pkg_postinst() {
+	einfo
+	einfo "Spark is now slotted. You have installed Spark ${SLOT}."
+	einfo
+}


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2020-12-15  9:14 Patrice Clement
  0 siblings, 0 replies; 31+ messages in thread
From: Patrice Clement @ 2020-12-15  9:14 UTC (permalink / raw
  To: gentoo-commits

commit:     a2f74c81729948d4441da85bdf31d8aa97072fbc
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 15 09:14:08 2020 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Tue Dec 15 09:14:26 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2f74c81

sys-cluster/spark-bin: do not enforce scala version 2.11 by default.

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 sys-cluster/spark-bin/spark-bin-2.4.3.ebuild    | 2 +-
 sys-cluster/spark-bin/spark-bin-2.4.7-r1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild
index 68debb5ec8f..363bc8a43f0 100644
--- a/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild
+++ b/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild
@@ -18,7 +18,7 @@ LICENSE="Apache-2.0"
 SLOT="2"
 KEYWORDS="~amd64"
 
-IUSE="+scala211 scala212"
+IUSE="scala211 scala212"
 
 RDEPEND="
 	>=virtual/jre-1.8"

diff --git a/sys-cluster/spark-bin/spark-bin-2.4.7-r1.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.7-r1.ebuild
index 68debb5ec8f..363bc8a43f0 100644
--- a/sys-cluster/spark-bin/spark-bin-2.4.7-r1.ebuild
+++ b/sys-cluster/spark-bin/spark-bin-2.4.7-r1.ebuild
@@ -18,7 +18,7 @@ LICENSE="Apache-2.0"
 SLOT="2"
 KEYWORDS="~amd64"
 
-IUSE="+scala211 scala212"
+IUSE="scala211 scala212"
 
 RDEPEND="
 	>=virtual/jre-1.8"


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2020-12-10 17:50 Patrice Clement
  0 siblings, 0 replies; 31+ messages in thread
From: Patrice Clement @ 2020-12-10 17:50 UTC (permalink / raw
  To: gentoo-commits

commit:     518858eb09ca214e309e5d735b11131c9f9709a5
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 10 17:50:04 2020 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu Dec 10 17:50:11 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=518858eb

sys-cluster/spark-bin: install find-spark-home script.

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 sys-cluster/spark-bin/spark-bin-2.4.3.ebuild    | 1 +
 sys-cluster/spark-bin/spark-bin-2.4.7-r1.ebuild | 1 +
 sys-cluster/spark-bin/spark-bin-3.0.1-r2.ebuild | 1 +
 3 files changed, 3 insertions(+)

diff --git a/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild
index 73cc669d342..68debb5ec8f 100644
--- a/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild
+++ b/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild
@@ -43,6 +43,7 @@ src_install() {
 
 	local SPARK_SCRIPTS=(
 		bin/beeline
+		bin/find-spark-home
 		bin/load-spark-env.sh
 		bin/pyspark
 		bin/spark-class

diff --git a/sys-cluster/spark-bin/spark-bin-2.4.7-r1.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.7-r1.ebuild
index 73cc669d342..68debb5ec8f 100644
--- a/sys-cluster/spark-bin/spark-bin-2.4.7-r1.ebuild
+++ b/sys-cluster/spark-bin/spark-bin-2.4.7-r1.ebuild
@@ -43,6 +43,7 @@ src_install() {
 
 	local SPARK_SCRIPTS=(
 		bin/beeline
+		bin/find-spark-home
 		bin/load-spark-env.sh
 		bin/pyspark
 		bin/spark-class

diff --git a/sys-cluster/spark-bin/spark-bin-3.0.1-r2.ebuild b/sys-cluster/spark-bin/spark-bin-3.0.1-r2.ebuild
index f91f44f962a..9c34936b7ea 100644
--- a/sys-cluster/spark-bin/spark-bin-3.0.1-r2.ebuild
+++ b/sys-cluster/spark-bin/spark-bin-3.0.1-r2.ebuild
@@ -32,6 +32,7 @@ src_install() {
 
 	local SPARK_SCRIPTS=(
 		bin/beeline
+		bin/find-spark-home
 		bin/load-spark-env.sh
 		bin/pyspark
 		bin/spark-class


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2020-12-10 16:45 Patrice Clement
  0 siblings, 0 replies; 31+ messages in thread
From: Patrice Clement @ 2020-12-10 16:45 UTC (permalink / raw
  To: gentoo-commits

commit:     66fc1f3d419bc51e498950a842df722deced6c03
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 10 16:44:52 2020 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu Dec 10 16:45:13 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66fc1f3d

sys-cluster/spark-bin: don't modify usr/bin script.

Remove sed call to add SPARK_HOME to each script.

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 sys-cluster/spark-bin/spark-bin-2.4.3.ebuild    | 3 ---
 sys-cluster/spark-bin/spark-bin-2.4.7-r1.ebuild | 3 ---
 sys-cluster/spark-bin/spark-bin-3.0.1-r2.ebuild | 3 ---
 3 files changed, 9 deletions(-)

diff --git a/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild
index 99aa5cd404a..73cc669d342 100644
--- a/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild
+++ b/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild
@@ -53,9 +53,6 @@ src_install() {
 
 	local s
 	for s in "${SPARK_SCRIPTS[@]}"; do
-		ebegin "Setting SPARK_HOME to /usr/lib/spark-${SLOT} in $(basename ${s}) script ..."
-		sed -i -e "2iSPARK_HOME=/usr/lib/spark-${SLOT}" "${s}"
-		eend $?
 		dobin "${s}"
 	done
 

diff --git a/sys-cluster/spark-bin/spark-bin-2.4.7-r1.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.7-r1.ebuild
index 99aa5cd404a..73cc669d342 100644
--- a/sys-cluster/spark-bin/spark-bin-2.4.7-r1.ebuild
+++ b/sys-cluster/spark-bin/spark-bin-2.4.7-r1.ebuild
@@ -53,9 +53,6 @@ src_install() {
 
 	local s
 	for s in "${SPARK_SCRIPTS[@]}"; do
-		ebegin "Setting SPARK_HOME to /usr/lib/spark-${SLOT} in $(basename ${s}) script ..."
-		sed -i -e "2iSPARK_HOME=/usr/lib/spark-${SLOT}" "${s}"
-		eend $?
 		dobin "${s}"
 	done
 

diff --git a/sys-cluster/spark-bin/spark-bin-3.0.1-r2.ebuild b/sys-cluster/spark-bin/spark-bin-3.0.1-r2.ebuild
index aa75467add1..f91f44f962a 100644
--- a/sys-cluster/spark-bin/spark-bin-3.0.1-r2.ebuild
+++ b/sys-cluster/spark-bin/spark-bin-3.0.1-r2.ebuild
@@ -42,9 +42,6 @@ src_install() {
 
 	local s
 	for s in "${SPARK_SCRIPTS[@]}"; do
-		ebegin "Setting SPARK_HOME to /usr/lib/spark-${SLOT} in $(basename ${s}) script ..."
-		sed -i -e "2iSPARK_HOME=/usr/lib/spark-${SLOT}" "${s}"
-		eend $?
 		dobin "${s}"
 	done
 


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2020-11-26 15:55 Patrice Clement
  0 siblings, 0 replies; 31+ messages in thread
From: Patrice Clement @ 2020-11-26 15:55 UTC (permalink / raw
  To: gentoo-commits

commit:     4bf3046a84d93c1cb3efdef1cc33a1ca01fb39b0
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 26 15:29:34 2020 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu Nov 26 15:55:12 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bf3046a

sys-cluster/spark-bin: clean up old.

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 sys-cluster/spark-bin/Manifest                  |  1 -
 sys-cluster/spark-bin/spark-bin-3.0.1-r1.ebuild | 71 -------------------------
 sys-cluster/spark-bin/spark-bin-3.0.1.ebuild    | 61 ---------------------
 3 files changed, 133 deletions(-)

diff --git a/sys-cluster/spark-bin/Manifest b/sys-cluster/spark-bin/Manifest
index dab23c007af..ec587452644 100644
--- a/sys-cluster/spark-bin/Manifest
+++ b/sys-cluster/spark-bin/Manifest
@@ -3,4 +3,3 @@ DIST spark-bin-2.4.3-scala212.tgz 141465231 BLAKE2B e29b534076b981e340833da0b6d9
 DIST spark-bin-2.4.7-scala211.tgz 168360525 BLAKE2B 9a8728a1c7450166d4d9635ff1be6a65d57df1832945672e92044e0fc88ef152e7e870d02ec590378ea97a47d4a68568da73e6a1e92f8eaaaa06f495ed9939ad SHA512 ff75e6db3c4ca5cece2a8a26ad7bd8a2c1c46b4f93e8f2922a31e6a8d98274bedc66bef3e469e862d249c5439355ccca83687a20d536a8400f2c058be553df57
 DIST spark-bin-2.4.7-scala212.tgz 146775712 BLAKE2B f0381e6aebeae90990d5ad19d8db923efd01e9b215ddfe34e34a8272942e57fe7ec6a53208146006ba5c4e76f8e44d202e0715f63b559cc8749b523710b92a5f SHA512 708a702af5c754dba0137c88e3c7055d7759593f013798755468638b6fdc583a707aae4c2a4e14648f91c16b963f9bba9f8c44d28341c08c4512590a425f70a8
 DIST spark-bin-3.0.1-nohadoop.tgz 156390722 BLAKE2B 9ac4645759ca0ec6d1501dfa79d149b9cbf49dee1c4b9dcf38f62490d3ad91db01ad61d9d6b1ef4dd7bcb81a868cb58b9251575dded823c8415801d10571afee SHA512 07fc6df224f303ef53189e6082004400d51cd6c2244d1851d90eabbe58404a69ff980bffe147a5259a34190e1e1c974c72d02470d10a783d2d87f43a8da0850b
-DIST spark-bin-3.0.1.tgz 219929956 BLAKE2B dd53df1e0123feae5b69f97193d1edc647bd4802ab78c54e471ed54b3ae6eee32ace51e379569f4947599d24aba5af63b401c11ef2af6234ffc6ac1afbbe275f SHA512 f4a10baec5b8ff1841f10651cac2c4aa39c162d3029ca180a9749149e6060805b5b5ddf9287b4aa321434810172f8cc0534943ac005531bb48b6622fbe228ddc

diff --git a/sys-cluster/spark-bin/spark-bin-3.0.1-r1.ebuild b/sys-cluster/spark-bin/spark-bin-3.0.1-r1.ebuild
deleted file mode 100644
index bfb1770cf38..00000000000
--- a/sys-cluster/spark-bin/spark-bin-3.0.1-r1.ebuild
+++ /dev/null
@@ -1,71 +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="3"
-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-${SLOT}
-	into usr/lib/spark-${SLOT}
-
-	local SPARK_SCRIPTS=(
-		bin/beeline
-		bin/load-spark-env.sh
-		bin/pyspark
-		bin/spark-class
-		bin/spark-shell
-		bin/spark-sql
-		bin/spark-submit
-	)
-
-	local s
-	for s in "${SPARK_SCRIPTS[@]}"; do
-		ebegin "Setting SPARK_HOME to /usr/lib/spark-${SLOT} in $(basename ${s}) script ..."
-		sed -i -e "2iSPARK_HOME=/usr/lib/spark-${SLOT}" "${s}"
-		eend $?
-		dobin "${s}"
-	done
-
-	insinto usr/lib/spark-${SLOT}
-	doins -r conf
-	doins -r jars
-	doins -r python
-	doins -r sbin
-	doins -r yarn
-
-	einstalldocs
-}
-
-pkg_postinst() {
-	einfo
-	einfo "Spark is now slotted. You have installed Spark ${SLOT}."
-	einfo
-	einfo "Make sure to add /usr/lib/spark-${SLOT}/{bin,sbin} directories"
-	einfo "to your PATH in order to run Spark shell scripts:"
-	einfo
-	einfo "$ export PATH=\$PATH:/usr/lib/spark-${SLOT}/bin"
-	einfo "$ export PATH=\$PATH:/usr/lib/spark-${SLOT}/sbin"
-	einfo
-}

diff --git a/sys-cluster/spark-bin/spark-bin-3.0.1.ebuild b/sys-cluster/spark-bin/spark-bin-3.0.1.ebuild
deleted file mode 100644
index 9c98c787d46..00000000000
--- a/sys-cluster/spark-bin/spark-bin-3.0.1.ebuild
+++ /dev/null
@@ -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
-}


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2020-11-26 15:55 Patrice Clement
  0 siblings, 0 replies; 31+ messages in thread
From: Patrice Clement @ 2020-11-26 15:55 UTC (permalink / raw
  To: gentoo-commits

commit:     51f80f73e9ffbd2c92e4beccec2bcf7d8ba61bb8
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 26 15:54:12 2020 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu Nov 26 15:55:12 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51f80f73

sys-cluster/spark-bin: regenerate Manifest.

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 sys-cluster/spark-bin/Manifest                  | 8 ++++----
 sys-cluster/spark-bin/spark-bin-2.4.3.ebuild    | 4 ++--
 sys-cluster/spark-bin/spark-bin-2.4.7-r1.ebuild | 4 ++--
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/sys-cluster/spark-bin/Manifest b/sys-cluster/spark-bin/Manifest
index ec587452644..92ebba20e9a 100644
--- a/sys-cluster/spark-bin/Manifest
+++ b/sys-cluster/spark-bin/Manifest
@@ -1,5 +1,5 @@
-DIST spark-bin-2.4.3-scala211.tgz 163128705 BLAKE2B 806964eb226aac2b4a63691b2644fc8e8cb6a7574eb4fbd8770a62c7974435b24c19253569c214b0d1a608b4de53eb351d16c4b14d3c83c91326883a795d59a8 SHA512 d1f87d46725e9feb5edf3df0c78daea263ad3e57e1a8a7069766f8e010fd673f0a99af2f69911f1319e9b6f864795e0e5291ee7c0c574434e92a458999374d85
-DIST spark-bin-2.4.3-scala212.tgz 141465231 BLAKE2B e29b534076b981e340833da0b6d93b8f2708a7919abfcd06f057ced6e7bb56f1140fab9d82ca157b4c7bd3aac9004d51fdfc0f8446cd9231e64e26236c2fb793 SHA512 e9651dfad8b6be162f800de987981e1b027d372e4391340589cdc23c7e579a8ec28cb950aa4aad7797ecfc330f0375844cc769a6ad5b35bac36b8cf404805c08
-DIST spark-bin-2.4.7-scala211.tgz 168360525 BLAKE2B 9a8728a1c7450166d4d9635ff1be6a65d57df1832945672e92044e0fc88ef152e7e870d02ec590378ea97a47d4a68568da73e6a1e92f8eaaaa06f495ed9939ad SHA512 ff75e6db3c4ca5cece2a8a26ad7bd8a2c1c46b4f93e8f2922a31e6a8d98274bedc66bef3e469e862d249c5439355ccca83687a20d536a8400f2c058be553df57
-DIST spark-bin-2.4.7-scala212.tgz 146775712 BLAKE2B f0381e6aebeae90990d5ad19d8db923efd01e9b215ddfe34e34a8272942e57fe7ec6a53208146006ba5c4e76f8e44d202e0715f63b559cc8749b523710b92a5f SHA512 708a702af5c754dba0137c88e3c7055d7759593f013798755468638b6fdc583a707aae4c2a4e14648f91c16b963f9bba9f8c44d28341c08c4512590a425f70a8
+DIST spark-bin-2.4.3-nohadoop-scala211.tgz 163128705 BLAKE2B 806964eb226aac2b4a63691b2644fc8e8cb6a7574eb4fbd8770a62c7974435b24c19253569c214b0d1a608b4de53eb351d16c4b14d3c83c91326883a795d59a8 SHA512 d1f87d46725e9feb5edf3df0c78daea263ad3e57e1a8a7069766f8e010fd673f0a99af2f69911f1319e9b6f864795e0e5291ee7c0c574434e92a458999374d85
+DIST spark-bin-2.4.3-nohadoop-scala212.tgz 141465231 BLAKE2B e29b534076b981e340833da0b6d93b8f2708a7919abfcd06f057ced6e7bb56f1140fab9d82ca157b4c7bd3aac9004d51fdfc0f8446cd9231e64e26236c2fb793 SHA512 e9651dfad8b6be162f800de987981e1b027d372e4391340589cdc23c7e579a8ec28cb950aa4aad7797ecfc330f0375844cc769a6ad5b35bac36b8cf404805c08
+DIST spark-bin-2.4.7-nohadoop-scala211.tgz 168360525 BLAKE2B 9a8728a1c7450166d4d9635ff1be6a65d57df1832945672e92044e0fc88ef152e7e870d02ec590378ea97a47d4a68568da73e6a1e92f8eaaaa06f495ed9939ad SHA512 ff75e6db3c4ca5cece2a8a26ad7bd8a2c1c46b4f93e8f2922a31e6a8d98274bedc66bef3e469e862d249c5439355ccca83687a20d536a8400f2c058be553df57
+DIST spark-bin-2.4.7-nohadoop-scala212.tgz 146775712 BLAKE2B f0381e6aebeae90990d5ad19d8db923efd01e9b215ddfe34e34a8272942e57fe7ec6a53208146006ba5c4e76f8e44d202e0715f63b559cc8749b523710b92a5f SHA512 708a702af5c754dba0137c88e3c7055d7759593f013798755468638b6fdc583a707aae4c2a4e14648f91c16b963f9bba9f8c44d28341c08c4512590a425f70a8
 DIST spark-bin-3.0.1-nohadoop.tgz 156390722 BLAKE2B 9ac4645759ca0ec6d1501dfa79d149b9cbf49dee1c4b9dcf38f62490d3ad91db01ad61d9d6b1ef4dd7bcb81a868cb58b9251575dded823c8415801d10571afee SHA512 07fc6df224f303ef53189e6082004400d51cd6c2244d1851d90eabbe58404a69ff980bffe147a5259a34190e1e1c974c72d02470d10a783d2d87f43a8da0850b

diff --git a/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild
index 3016c0cf7bd..99aa5cd404a 100644
--- a/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild
+++ b/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild
@@ -8,8 +8,8 @@ inherit java-pkg-2
 DESCRIPTION="Lightning-fast unified analytics engine"
 HOMEPAGE="https://spark.apache.org"
 SRC_URI="
-	!scala212? ( scala211? ( mirror://apache/spark/spark-${PV}/spark-${PV}-bin-without-hadoop.tgz -> ${P}-scala211.tgz ) )
-	!scala211? ( scala212? ( mirror://apache/spark/spark-${PV}/spark-${PV}-bin-without-hadoop-scala-2.12.tgz -> ${P}-scala212.tgz ) )
+	!scala212? ( scala211? ( mirror://apache/spark/spark-${PV}/spark-${PV}-bin-without-hadoop.tgz -> ${P}-nohadoop-scala211.tgz ) )
+	!scala211? ( scala212? ( mirror://apache/spark/spark-${PV}/spark-${PV}-bin-without-hadoop-scala-2.12.tgz -> ${P}-nohadoop-scala212.tgz ) )
 "
 
 REQUIRED_USE="^^ ( scala211 scala212 )"

diff --git a/sys-cluster/spark-bin/spark-bin-2.4.7-r1.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.7-r1.ebuild
index 3016c0cf7bd..99aa5cd404a 100644
--- a/sys-cluster/spark-bin/spark-bin-2.4.7-r1.ebuild
+++ b/sys-cluster/spark-bin/spark-bin-2.4.7-r1.ebuild
@@ -8,8 +8,8 @@ inherit java-pkg-2
 DESCRIPTION="Lightning-fast unified analytics engine"
 HOMEPAGE="https://spark.apache.org"
 SRC_URI="
-	!scala212? ( scala211? ( mirror://apache/spark/spark-${PV}/spark-${PV}-bin-without-hadoop.tgz -> ${P}-scala211.tgz ) )
-	!scala211? ( scala212? ( mirror://apache/spark/spark-${PV}/spark-${PV}-bin-without-hadoop-scala-2.12.tgz -> ${P}-scala212.tgz ) )
+	!scala212? ( scala211? ( mirror://apache/spark/spark-${PV}/spark-${PV}-bin-without-hadoop.tgz -> ${P}-nohadoop-scala211.tgz ) )
+	!scala211? ( scala212? ( mirror://apache/spark/spark-${PV}/spark-${PV}-bin-without-hadoop-scala-2.12.tgz -> ${P}-nohadoop-scala212.tgz ) )
 "
 
 REQUIRED_USE="^^ ( scala211 scala212 )"


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2020-11-26 15:55 Patrice Clement
  0 siblings, 0 replies; 31+ messages in thread
From: Patrice Clement @ 2020-11-26 15:55 UTC (permalink / raw
  To: gentoo-commits

commit:     44d3cc7feaf5896068c75189b5f528d4b1be1907
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 26 15:22:11 2020 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu Nov 26 15:55:11 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44d3cc7f

sys-cluster/spark-bin: add version 2.4.3.

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 sys-cluster/spark-bin/Manifest               |  2 +
 sys-cluster/spark-bin/spark-bin-2.4.3.ebuild | 84 ++++++++++++++++++++++++++++
 2 files changed, 86 insertions(+)

diff --git a/sys-cluster/spark-bin/Manifest b/sys-cluster/spark-bin/Manifest
index 869880ea696..cbb5d6444de 100644
--- a/sys-cluster/spark-bin/Manifest
+++ b/sys-cluster/spark-bin/Manifest
@@ -1,3 +1,5 @@
+DIST spark-bin-2.4.3-scala211.tgz 163128705 BLAKE2B 806964eb226aac2b4a63691b2644fc8e8cb6a7574eb4fbd8770a62c7974435b24c19253569c214b0d1a608b4de53eb351d16c4b14d3c83c91326883a795d59a8 SHA512 d1f87d46725e9feb5edf3df0c78daea263ad3e57e1a8a7069766f8e010fd673f0a99af2f69911f1319e9b6f864795e0e5291ee7c0c574434e92a458999374d85
+DIST spark-bin-2.4.3-scala212.tgz 141465231 BLAKE2B e29b534076b981e340833da0b6d93b8f2708a7919abfcd06f057ced6e7bb56f1140fab9d82ca157b4c7bd3aac9004d51fdfc0f8446cd9231e64e26236c2fb793 SHA512 e9651dfad8b6be162f800de987981e1b027d372e4391340589cdc23c7e579a8ec28cb950aa4aad7797ecfc330f0375844cc769a6ad5b35bac36b8cf404805c08
 DIST spark-bin-2.4.7-scala211.tgz 168360525 BLAKE2B 9a8728a1c7450166d4d9635ff1be6a65d57df1832945672e92044e0fc88ef152e7e870d02ec590378ea97a47d4a68568da73e6a1e92f8eaaaa06f495ed9939ad SHA512 ff75e6db3c4ca5cece2a8a26ad7bd8a2c1c46b4f93e8f2922a31e6a8d98274bedc66bef3e469e862d249c5439355ccca83687a20d536a8400f2c058be553df57
 DIST spark-bin-2.4.7-scala212.tgz 146775712 BLAKE2B f0381e6aebeae90990d5ad19d8db923efd01e9b215ddfe34e34a8272942e57fe7ec6a53208146006ba5c4e76f8e44d202e0715f63b559cc8749b523710b92a5f SHA512 708a702af5c754dba0137c88e3c7055d7759593f013798755468638b6fdc583a707aae4c2a4e14648f91c16b963f9bba9f8c44d28341c08c4512590a425f70a8
 DIST spark-bin-2.4.7.tgz 233333392 BLAKE2B 5698cda600858ba36dbaa891949dd6e12f98877aa49b39f136733a0de9536975e373539080ed3992e4c3942c314c31919bf0bc27c6109e466cbc41b3574d0c63 SHA512 0f5455672045f6110b030ce343c049855b7ba86c0ecb5e39a075ff9d093c7f648da55ded12e72ffe65d84c32dcd5418a6d764f2d6295a3f894a4286cc80ef478

diff --git a/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild
new file mode 100644
index 00000000000..3016c0cf7bd
--- /dev/null
+++ b/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild
@@ -0,0 +1,84 @@
+# 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="
+	!scala212? ( scala211? ( mirror://apache/spark/spark-${PV}/spark-${PV}-bin-without-hadoop.tgz -> ${P}-scala211.tgz ) )
+	!scala211? ( scala212? ( mirror://apache/spark/spark-${PV}/spark-${PV}-bin-without-hadoop-scala-2.12.tgz -> ${P}-scala212.tgz ) )
+"
+
+REQUIRED_USE="^^ ( scala211 scala212 )"
+
+LICENSE="Apache-2.0"
+SLOT="2"
+KEYWORDS="~amd64"
+
+IUSE="+scala211 scala212"
+
+RDEPEND="
+	>=virtual/jre-1.8"
+
+DEPEND="
+	>=virtual/jdk-1.8"
+
+DOCS=( LICENSE NOTICE README.md RELEASE )
+
+src_unpack() {
+	unpack ${A}
+	use scala211 && S="${WORKDIR}/spark-${PV}-bin-without-hadoop"
+	use scala212 && S="${WORKDIR}/spark-${PV}-bin-without-hadoop-scala-2.12"
+}
+
+# Nothing to compile here.
+src_compile() { :; }
+
+src_install() {
+	dodir usr/lib/spark-${SLOT}
+	into usr/lib/spark-${SLOT}
+
+	local SPARK_SCRIPTS=(
+		bin/beeline
+		bin/load-spark-env.sh
+		bin/pyspark
+		bin/spark-class
+		bin/spark-shell
+		bin/spark-sql
+		bin/spark-submit
+	)
+
+	local s
+	for s in "${SPARK_SCRIPTS[@]}"; do
+		ebegin "Setting SPARK_HOME to /usr/lib/spark-${SLOT} in $(basename ${s}) script ..."
+		sed -i -e "2iSPARK_HOME=/usr/lib/spark-${SLOT}" "${s}"
+		eend $?
+		dobin "${s}"
+	done
+
+	insinto usr/lib/spark-${SLOT}
+
+	local SPARK_DIRS=( conf jars python sbin yarn )
+
+	local d
+	for d in "${SPARK_DIRS[@]}"; do
+		doins -r "${d}"
+	done
+
+	einstalldocs
+}
+
+pkg_postinst() {
+	einfo
+	einfo "Spark is now slotted. You have installed Spark ${SLOT}."
+	einfo
+	einfo "Make sure to add /usr/lib/spark-${SLOT}/{bin,sbin} directories"
+	einfo "to your PATH in order to run Spark shell scripts:"
+	einfo
+	einfo "$ export PATH=\$PATH:/usr/lib/spark-${SLOT}/bin"
+	einfo "$ export PATH=\$PATH:/usr/lib/spark-${SLOT}/sbin"
+	einfo
+}


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2020-11-26 15:55 Patrice Clement
  0 siblings, 0 replies; 31+ messages in thread
From: Patrice Clement @ 2020-11-26 15:55 UTC (permalink / raw
  To: gentoo-commits

commit:     d0c364b54e88328176248fbc2b4a56dfe0660873
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 26 15:17:21 2020 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu Nov 26 15:55:11 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0c364b5

sys-cluster/spark-bin: conditionally install pre-compiled JARs.

Spark 2.4.x JARs comes in two flavours:
* Pre-compiled with Scala 2.11.
* Pre-compiled with Scala 2.12.

Add conditions to install either one of these flavours. Also do not
install Spark + Hadoop JARs anymore but only Spark JARs.

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 sys-cluster/spark-bin/Manifest                  |  2 +
 sys-cluster/spark-bin/metadata.xml              |  4 ++
 sys-cluster/spark-bin/spark-bin-2.4.7-r1.ebuild | 84 +++++++++++++++++++++++++
 3 files changed, 90 insertions(+)

diff --git a/sys-cluster/spark-bin/Manifest b/sys-cluster/spark-bin/Manifest
index 399e58c5e48..869880ea696 100644
--- a/sys-cluster/spark-bin/Manifest
+++ b/sys-cluster/spark-bin/Manifest
@@ -1,2 +1,4 @@
+DIST spark-bin-2.4.7-scala211.tgz 168360525 BLAKE2B 9a8728a1c7450166d4d9635ff1be6a65d57df1832945672e92044e0fc88ef152e7e870d02ec590378ea97a47d4a68568da73e6a1e92f8eaaaa06f495ed9939ad SHA512 ff75e6db3c4ca5cece2a8a26ad7bd8a2c1c46b4f93e8f2922a31e6a8d98274bedc66bef3e469e862d249c5439355ccca83687a20d536a8400f2c058be553df57
+DIST spark-bin-2.4.7-scala212.tgz 146775712 BLAKE2B f0381e6aebeae90990d5ad19d8db923efd01e9b215ddfe34e34a8272942e57fe7ec6a53208146006ba5c4e76f8e44d202e0715f63b559cc8749b523710b92a5f SHA512 708a702af5c754dba0137c88e3c7055d7759593f013798755468638b6fdc583a707aae4c2a4e14648f91c16b963f9bba9f8c44d28341c08c4512590a425f70a8
 DIST spark-bin-2.4.7.tgz 233333392 BLAKE2B 5698cda600858ba36dbaa891949dd6e12f98877aa49b39f136733a0de9536975e373539080ed3992e4c3942c314c31919bf0bc27c6109e466cbc41b3574d0c63 SHA512 0f5455672045f6110b030ce343c049855b7ba86c0ecb5e39a075ff9d093c7f648da55ded12e72ffe65d84c32dcd5418a6d764f2d6295a3f894a4286cc80ef478
 DIST spark-bin-3.0.1.tgz 219929956 BLAKE2B dd53df1e0123feae5b69f97193d1edc647bd4802ab78c54e471ed54b3ae6eee32ace51e379569f4947599d24aba5af63b401c11ef2af6234ffc6ac1afbbe275f SHA512 f4a10baec5b8ff1841f10651cac2c4aa39c162d3029ca180a9749149e6060805b5b5ddf9287b4aa321434810172f8cc0534943ac005531bb48b6622fbe228ddc

diff --git a/sys-cluster/spark-bin/metadata.xml b/sys-cluster/spark-bin/metadata.xml
index 687380a6ed2..5408c183b06 100644
--- a/sys-cluster/spark-bin/metadata.xml
+++ b/sys-cluster/spark-bin/metadata.xml
@@ -13,4 +13,8 @@
     <email>proxy-maint@gentoo.org</email>
     <name>Proxy Maintainers</name>
   </maintainer>
+  <use>
+    <flag name="scala211">Install Spark JARs pre-built with Scala 2.11.</flag>
+    <flag name="scala212">Install Spark JARs pre-built with Scala 2.12.</flag>
+  </use>
 </pkgmetadata>

diff --git a/sys-cluster/spark-bin/spark-bin-2.4.7-r1.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.7-r1.ebuild
new file mode 100644
index 00000000000..3016c0cf7bd
--- /dev/null
+++ b/sys-cluster/spark-bin/spark-bin-2.4.7-r1.ebuild
@@ -0,0 +1,84 @@
+# 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="
+	!scala212? ( scala211? ( mirror://apache/spark/spark-${PV}/spark-${PV}-bin-without-hadoop.tgz -> ${P}-scala211.tgz ) )
+	!scala211? ( scala212? ( mirror://apache/spark/spark-${PV}/spark-${PV}-bin-without-hadoop-scala-2.12.tgz -> ${P}-scala212.tgz ) )
+"
+
+REQUIRED_USE="^^ ( scala211 scala212 )"
+
+LICENSE="Apache-2.0"
+SLOT="2"
+KEYWORDS="~amd64"
+
+IUSE="+scala211 scala212"
+
+RDEPEND="
+	>=virtual/jre-1.8"
+
+DEPEND="
+	>=virtual/jdk-1.8"
+
+DOCS=( LICENSE NOTICE README.md RELEASE )
+
+src_unpack() {
+	unpack ${A}
+	use scala211 && S="${WORKDIR}/spark-${PV}-bin-without-hadoop"
+	use scala212 && S="${WORKDIR}/spark-${PV}-bin-without-hadoop-scala-2.12"
+}
+
+# Nothing to compile here.
+src_compile() { :; }
+
+src_install() {
+	dodir usr/lib/spark-${SLOT}
+	into usr/lib/spark-${SLOT}
+
+	local SPARK_SCRIPTS=(
+		bin/beeline
+		bin/load-spark-env.sh
+		bin/pyspark
+		bin/spark-class
+		bin/spark-shell
+		bin/spark-sql
+		bin/spark-submit
+	)
+
+	local s
+	for s in "${SPARK_SCRIPTS[@]}"; do
+		ebegin "Setting SPARK_HOME to /usr/lib/spark-${SLOT} in $(basename ${s}) script ..."
+		sed -i -e "2iSPARK_HOME=/usr/lib/spark-${SLOT}" "${s}"
+		eend $?
+		dobin "${s}"
+	done
+
+	insinto usr/lib/spark-${SLOT}
+
+	local SPARK_DIRS=( conf jars python sbin yarn )
+
+	local d
+	for d in "${SPARK_DIRS[@]}"; do
+		doins -r "${d}"
+	done
+
+	einstalldocs
+}
+
+pkg_postinst() {
+	einfo
+	einfo "Spark is now slotted. You have installed Spark ${SLOT}."
+	einfo
+	einfo "Make sure to add /usr/lib/spark-${SLOT}/{bin,sbin} directories"
+	einfo "to your PATH in order to run Spark shell scripts:"
+	einfo
+	einfo "$ export PATH=\$PATH:/usr/lib/spark-${SLOT}/bin"
+	einfo "$ export PATH=\$PATH:/usr/lib/spark-${SLOT}/sbin"
+	einfo
+}


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2020-11-26 15:55 Patrice Clement
  0 siblings, 0 replies; 31+ messages in thread
From: Patrice Clement @ 2020-11-26 15:55 UTC (permalink / raw
  To: gentoo-commits

commit:     234b6049891c7e1067d8700169c7c7072951b894
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 26 15:29:14 2020 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu Nov 26 15:55:11 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=234b6049

sys-cluster/spark-bin: do not install Hadoop JARs.

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 sys-cluster/spark-bin/Manifest                  |  1 +
 sys-cluster/spark-bin/spark-bin-3.0.1-r2.ebuild | 73 +++++++++++++++++++++++++
 2 files changed, 74 insertions(+)

diff --git a/sys-cluster/spark-bin/Manifest b/sys-cluster/spark-bin/Manifest
index 2d784a7f4ee..dab23c007af 100644
--- a/sys-cluster/spark-bin/Manifest
+++ b/sys-cluster/spark-bin/Manifest
@@ -2,4 +2,5 @@ DIST spark-bin-2.4.3-scala211.tgz 163128705 BLAKE2B 806964eb226aac2b4a63691b2644
 DIST spark-bin-2.4.3-scala212.tgz 141465231 BLAKE2B e29b534076b981e340833da0b6d93b8f2708a7919abfcd06f057ced6e7bb56f1140fab9d82ca157b4c7bd3aac9004d51fdfc0f8446cd9231e64e26236c2fb793 SHA512 e9651dfad8b6be162f800de987981e1b027d372e4391340589cdc23c7e579a8ec28cb950aa4aad7797ecfc330f0375844cc769a6ad5b35bac36b8cf404805c08
 DIST spark-bin-2.4.7-scala211.tgz 168360525 BLAKE2B 9a8728a1c7450166d4d9635ff1be6a65d57df1832945672e92044e0fc88ef152e7e870d02ec590378ea97a47d4a68568da73e6a1e92f8eaaaa06f495ed9939ad SHA512 ff75e6db3c4ca5cece2a8a26ad7bd8a2c1c46b4f93e8f2922a31e6a8d98274bedc66bef3e469e862d249c5439355ccca83687a20d536a8400f2c058be553df57
 DIST spark-bin-2.4.7-scala212.tgz 146775712 BLAKE2B f0381e6aebeae90990d5ad19d8db923efd01e9b215ddfe34e34a8272942e57fe7ec6a53208146006ba5c4e76f8e44d202e0715f63b559cc8749b523710b92a5f SHA512 708a702af5c754dba0137c88e3c7055d7759593f013798755468638b6fdc583a707aae4c2a4e14648f91c16b963f9bba9f8c44d28341c08c4512590a425f70a8
+DIST spark-bin-3.0.1-nohadoop.tgz 156390722 BLAKE2B 9ac4645759ca0ec6d1501dfa79d149b9cbf49dee1c4b9dcf38f62490d3ad91db01ad61d9d6b1ef4dd7bcb81a868cb58b9251575dded823c8415801d10571afee SHA512 07fc6df224f303ef53189e6082004400d51cd6c2244d1851d90eabbe58404a69ff980bffe147a5259a34190e1e1c974c72d02470d10a783d2d87f43a8da0850b
 DIST spark-bin-3.0.1.tgz 219929956 BLAKE2B dd53df1e0123feae5b69f97193d1edc647bd4802ab78c54e471ed54b3ae6eee32ace51e379569f4947599d24aba5af63b401c11ef2af6234ffc6ac1afbbe275f SHA512 f4a10baec5b8ff1841f10651cac2c4aa39c162d3029ca180a9749149e6060805b5b5ddf9287b4aa321434810172f8cc0534943ac005531bb48b6622fbe228ddc

diff --git a/sys-cluster/spark-bin/spark-bin-3.0.1-r2.ebuild b/sys-cluster/spark-bin/spark-bin-3.0.1-r2.ebuild
new file mode 100644
index 00000000000..aa75467add1
--- /dev/null
+++ b/sys-cluster/spark-bin/spark-bin-3.0.1-r2.ebuild
@@ -0,0 +1,73 @@
+# 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-without-hadoop.tgz -> ${P}-nohadoop.tgz"
+
+LICENSE="Apache-2.0"
+SLOT="3"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	>=virtual/jre-1.8"
+
+DEPEND="
+	>=virtual/jdk-1.8"
+
+S="${WORKDIR}/spark-${PV}-bin-without-hadoop"
+
+DOCS=( LICENSE NOTICE README.md RELEASE )
+
+# Nothing to compile here.
+src_compile() { :; }
+
+src_install() {
+	dodir usr/lib/spark-${SLOT}
+	into usr/lib/spark-${SLOT}
+
+	local SPARK_SCRIPTS=(
+		bin/beeline
+		bin/load-spark-env.sh
+		bin/pyspark
+		bin/spark-class
+		bin/spark-shell
+		bin/spark-sql
+		bin/spark-submit
+	)
+
+	local s
+	for s in "${SPARK_SCRIPTS[@]}"; do
+		ebegin "Setting SPARK_HOME to /usr/lib/spark-${SLOT} in $(basename ${s}) script ..."
+		sed -i -e "2iSPARK_HOME=/usr/lib/spark-${SLOT}" "${s}"
+		eend $?
+		dobin "${s}"
+	done
+
+	insinto usr/lib/spark-${SLOT}
+
+	local SPARK_DIRS=( conf jars python sbin yarn )
+
+	local d
+	for d in "${SPARK_DIRS[@]}"; do
+		doins -r "${d}"
+	done
+
+	einstalldocs
+}
+
+pkg_postinst() {
+	einfo
+	einfo "Spark is now slotted. You have installed Spark ${SLOT}."
+	einfo
+	einfo "Make sure to add /usr/lib/spark-${SLOT}/{bin,sbin} directories"
+	einfo "to your PATH in order to run Spark shell scripts:"
+	einfo
+	einfo "$ export PATH=\$PATH:/usr/lib/spark-${SLOT}/bin"
+	einfo "$ export PATH=\$PATH:/usr/lib/spark-${SLOT}/sbin"
+	einfo
+}


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2020-11-26 15:55 Patrice Clement
  0 siblings, 0 replies; 31+ messages in thread
From: Patrice Clement @ 2020-11-26 15:55 UTC (permalink / raw
  To: gentoo-commits

commit:     d34ef6073972b0d82729752330f4c5545f3efe93
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 26 15:22:23 2020 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu Nov 26 15:55:11 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d34ef607

sys-cluster/spark-bin: clean up old.

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 sys-cluster/spark-bin/Manifest               |  1 -
 sys-cluster/spark-bin/spark-bin-2.4.7.ebuild | 71 ----------------------------
 2 files changed, 72 deletions(-)

diff --git a/sys-cluster/spark-bin/Manifest b/sys-cluster/spark-bin/Manifest
index cbb5d6444de..2d784a7f4ee 100644
--- a/sys-cluster/spark-bin/Manifest
+++ b/sys-cluster/spark-bin/Manifest
@@ -2,5 +2,4 @@ DIST spark-bin-2.4.3-scala211.tgz 163128705 BLAKE2B 806964eb226aac2b4a63691b2644
 DIST spark-bin-2.4.3-scala212.tgz 141465231 BLAKE2B e29b534076b981e340833da0b6d93b8f2708a7919abfcd06f057ced6e7bb56f1140fab9d82ca157b4c7bd3aac9004d51fdfc0f8446cd9231e64e26236c2fb793 SHA512 e9651dfad8b6be162f800de987981e1b027d372e4391340589cdc23c7e579a8ec28cb950aa4aad7797ecfc330f0375844cc769a6ad5b35bac36b8cf404805c08
 DIST spark-bin-2.4.7-scala211.tgz 168360525 BLAKE2B 9a8728a1c7450166d4d9635ff1be6a65d57df1832945672e92044e0fc88ef152e7e870d02ec590378ea97a47d4a68568da73e6a1e92f8eaaaa06f495ed9939ad SHA512 ff75e6db3c4ca5cece2a8a26ad7bd8a2c1c46b4f93e8f2922a31e6a8d98274bedc66bef3e469e862d249c5439355ccca83687a20d536a8400f2c058be553df57
 DIST spark-bin-2.4.7-scala212.tgz 146775712 BLAKE2B f0381e6aebeae90990d5ad19d8db923efd01e9b215ddfe34e34a8272942e57fe7ec6a53208146006ba5c4e76f8e44d202e0715f63b559cc8749b523710b92a5f SHA512 708a702af5c754dba0137c88e3c7055d7759593f013798755468638b6fdc583a707aae4c2a4e14648f91c16b963f9bba9f8c44d28341c08c4512590a425f70a8
-DIST spark-bin-2.4.7.tgz 233333392 BLAKE2B 5698cda600858ba36dbaa891949dd6e12f98877aa49b39f136733a0de9536975e373539080ed3992e4c3942c314c31919bf0bc27c6109e466cbc41b3574d0c63 SHA512 0f5455672045f6110b030ce343c049855b7ba86c0ecb5e39a075ff9d093c7f648da55ded12e72ffe65d84c32dcd5418a6d764f2d6295a3f894a4286cc80ef478
 DIST spark-bin-3.0.1.tgz 219929956 BLAKE2B dd53df1e0123feae5b69f97193d1edc647bd4802ab78c54e471ed54b3ae6eee32ace51e379569f4947599d24aba5af63b401c11ef2af6234ffc6ac1afbbe275f SHA512 f4a10baec5b8ff1841f10651cac2c4aa39c162d3029ca180a9749149e6060805b5b5ddf9287b4aa321434810172f8cc0534943ac005531bb48b6622fbe228ddc

diff --git a/sys-cluster/spark-bin/spark-bin-2.4.7.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.7.ebuild
deleted file mode 100644
index 3cbf025d2c0..00000000000
--- a/sys-cluster/spark-bin/spark-bin-2.4.7.ebuild
+++ /dev/null
@@ -1,71 +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="2"
-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-${SLOT}
-	into usr/lib/spark-${SLOT}
-
-	local SPARK_SCRIPTS=(
-		bin/beeline
-		bin/load-spark-env.sh
-		bin/pyspark
-		bin/spark-class
-		bin/spark-shell
-		bin/spark-sql
-		bin/spark-submit
-	)
-
-	local s
-	for s in "${SPARK_SCRIPTS[@]}"; do
-		ebegin "Setting SPARK_HOME to /usr/lib/spark-${SLOT} in $(basename ${s}) script ..."
-		sed -i -e "2iSPARK_HOME=/usr/lib/spark-${SLOT}" "${s}"
-		eend $?
-		dobin "${s}"
-	done
-
-	insinto usr/lib/spark-${SLOT}
-	doins -r conf
-	doins -r jars
-	doins -r python
-	doins -r sbin
-	doins -r yarn
-
-	einstalldocs
-}
-
-pkg_postinst() {
-	einfo
-	einfo "Spark is now slotted. You have installed Spark ${SLOT}."
-	einfo
-	einfo "Make sure to add /usr/lib/spark-${SLOT}/{bin,sbin} directories"
-	einfo "to your PATH in order to run Spark shell scripts:"
-	einfo
-	einfo "$ export PATH=\$PATH:/usr/lib/spark-${SLOT}/bin"
-	einfo "$ export PATH=\$PATH:/usr/lib/spark-${SLOT}/sbin"
-	einfo
-}


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2020-11-26 14:10 Patrice Clement
  0 siblings, 0 replies; 31+ messages in thread
From: Patrice Clement @ 2020-11-26 14:10 UTC (permalink / raw
  To: gentoo-commits

commit:     60e85081415dc1c1d81bfd397f1d9c0a338a428b
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 26 14:10:24 2020 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu Nov 26 14:10:24 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60e85081

sys-cluster/spark-bin: do not rename load-spark-env.sh.

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 sys-cluster/spark-bin/spark-bin-2.4.7.ebuild    | 4 +---
 sys-cluster/spark-bin/spark-bin-3.0.1-r1.ebuild | 4 +---
 2 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/sys-cluster/spark-bin/spark-bin-2.4.7.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.7.ebuild
index 3c1fcfa0a95..3cbf025d2c0 100644
--- a/sys-cluster/spark-bin/spark-bin-2.4.7.ebuild
+++ b/sys-cluster/spark-bin/spark-bin-2.4.7.ebuild
@@ -30,11 +30,9 @@ src_install() {
 	dodir usr/lib/spark-${SLOT}
 	into usr/lib/spark-${SLOT}
 
-	mv bin/load-spark-env.sh bin/load-spark-env || die
-
 	local SPARK_SCRIPTS=(
 		bin/beeline
-		bin/load-spark-env
+		bin/load-spark-env.sh
 		bin/pyspark
 		bin/spark-class
 		bin/spark-shell

diff --git a/sys-cluster/spark-bin/spark-bin-3.0.1-r1.ebuild b/sys-cluster/spark-bin/spark-bin-3.0.1-r1.ebuild
index 25c01561919..bfb1770cf38 100644
--- a/sys-cluster/spark-bin/spark-bin-3.0.1-r1.ebuild
+++ b/sys-cluster/spark-bin/spark-bin-3.0.1-r1.ebuild
@@ -30,11 +30,9 @@ src_install() {
 	dodir usr/lib/spark-${SLOT}
 	into usr/lib/spark-${SLOT}
 
-	mv bin/load-spark-env.sh bin/load-spark-env || die
-
 	local SPARK_SCRIPTS=(
 		bin/beeline
-		bin/load-spark-env
+		bin/load-spark-env.sh
 		bin/pyspark
 		bin/spark-class
 		bin/spark-shell


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2020-11-26 14:06 Patrice Clement
  0 siblings, 0 replies; 31+ messages in thread
From: Patrice Clement @ 2020-11-26 14:06 UTC (permalink / raw
  To: gentoo-commits

commit:     7b6a1854a80887fd4a0497d1fe48bfe533ad6682
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 26 14:01:50 2020 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu Nov 26 14:06:27 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b6a1854

sys-cluster/spark-bin: add load-spark-env script to SPARK_SCRIPTS.

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 sys-cluster/spark-bin/spark-bin-2.4.7.ebuild    | 6 +++---
 sys-cluster/spark-bin/spark-bin-3.0.1-r1.ebuild | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/sys-cluster/spark-bin/spark-bin-2.4.7.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.7.ebuild
index e74d8346bae..3c1fcfa0a95 100644
--- a/sys-cluster/spark-bin/spark-bin-2.4.7.ebuild
+++ b/sys-cluster/spark-bin/spark-bin-2.4.7.ebuild
@@ -30,8 +30,11 @@ src_install() {
 	dodir usr/lib/spark-${SLOT}
 	into usr/lib/spark-${SLOT}
 
+	mv bin/load-spark-env.sh bin/load-spark-env || die
+
 	local SPARK_SCRIPTS=(
 		bin/beeline
+		bin/load-spark-env
 		bin/pyspark
 		bin/spark-class
 		bin/spark-shell
@@ -47,9 +50,6 @@ src_install() {
 		dobin "${s}"
 	done
 
-	insinto usr/lib/spark-${SLOT}/bin
-	doins bin/load-spark-env.sh
-
 	insinto usr/lib/spark-${SLOT}
 	doins -r conf
 	doins -r jars

diff --git a/sys-cluster/spark-bin/spark-bin-3.0.1-r1.ebuild b/sys-cluster/spark-bin/spark-bin-3.0.1-r1.ebuild
index d5a88738063..25c01561919 100644
--- a/sys-cluster/spark-bin/spark-bin-3.0.1-r1.ebuild
+++ b/sys-cluster/spark-bin/spark-bin-3.0.1-r1.ebuild
@@ -30,8 +30,11 @@ src_install() {
 	dodir usr/lib/spark-${SLOT}
 	into usr/lib/spark-${SLOT}
 
+	mv bin/load-spark-env.sh bin/load-spark-env || die
+
 	local SPARK_SCRIPTS=(
 		bin/beeline
+		bin/load-spark-env
 		bin/pyspark
 		bin/spark-class
 		bin/spark-shell
@@ -47,9 +50,6 @@ src_install() {
 		dobin "${s}"
 	done
 
-	insinto usr/lib/spark-${SLOT}/bin
-	doins bin/load-spark-env.sh
-
 	insinto usr/lib/spark-${SLOT}
 	doins -r conf
 	doins -r jars


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2020-11-26 14:06 Patrice Clement
  0 siblings, 0 replies; 31+ messages in thread
From: Patrice Clement @ 2020-11-26 14:06 UTC (permalink / raw
  To: gentoo-commits

commit:     f22d44731c030ece8de4f956c247da9f47f61982
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 26 13:57:49 2020 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu Nov 26 14:06:27 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f22d4473

sys-cluster/spark-bin: set SPARK_HOME correctly.

The find-spark-home script is now useless. Do not install it.

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 sys-cluster/spark-bin/spark-bin-2.4.7.ebuild    | 21 +++++++++++++++------
 sys-cluster/spark-bin/spark-bin-3.0.1-r1.ebuild | 21 +++++++++++++++------
 2 files changed, 30 insertions(+), 12 deletions(-)

diff --git a/sys-cluster/spark-bin/spark-bin-2.4.7.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.7.ebuild
index ab322d5079a..e74d8346bae 100644
--- a/sys-cluster/spark-bin/spark-bin-2.4.7.ebuild
+++ b/sys-cluster/spark-bin/spark-bin-2.4.7.ebuild
@@ -30,13 +30,22 @@ src_install() {
 	dodir usr/lib/spark-${SLOT}
 	into usr/lib/spark-${SLOT}
 
-	dobin bin/beeline \
-		bin/find-spark-home \
-		bin/pyspark \
-		bin/spark-class \
-		bin/spark-shell \
-		bin/spark-sql \
+	local SPARK_SCRIPTS=(
+		bin/beeline
+		bin/pyspark
+		bin/spark-class
+		bin/spark-shell
+		bin/spark-sql
 		bin/spark-submit
+	)
+
+	local s
+	for s in "${SPARK_SCRIPTS[@]}"; do
+		ebegin "Setting SPARK_HOME to /usr/lib/spark-${SLOT} in $(basename ${s}) script ..."
+		sed -i -e "2iSPARK_HOME=/usr/lib/spark-${SLOT}" "${s}"
+		eend $?
+		dobin "${s}"
+	done
 
 	insinto usr/lib/spark-${SLOT}/bin
 	doins bin/load-spark-env.sh

diff --git a/sys-cluster/spark-bin/spark-bin-3.0.1-r1.ebuild b/sys-cluster/spark-bin/spark-bin-3.0.1-r1.ebuild
index d3c6e1123fb..d5a88738063 100644
--- a/sys-cluster/spark-bin/spark-bin-3.0.1-r1.ebuild
+++ b/sys-cluster/spark-bin/spark-bin-3.0.1-r1.ebuild
@@ -30,13 +30,22 @@ src_install() {
 	dodir usr/lib/spark-${SLOT}
 	into usr/lib/spark-${SLOT}
 
-	dobin bin/beeline \
-		bin/find-spark-home \
-		bin/pyspark \
-		bin/spark-class \
-		bin/spark-shell \
-		bin/spark-sql \
+	local SPARK_SCRIPTS=(
+		bin/beeline
+		bin/pyspark
+		bin/spark-class
+		bin/spark-shell
+		bin/spark-sql
 		bin/spark-submit
+	)
+
+	local s
+	for s in "${SPARK_SCRIPTS[@]}"; do
+		ebegin "Setting SPARK_HOME to /usr/lib/spark-${SLOT} in $(basename ${s}) script ..."
+		sed -i -e "2iSPARK_HOME=/usr/lib/spark-${SLOT}" "${s}"
+		eend $?
+		dobin "${s}"
+	done
 
 	insinto usr/lib/spark-${SLOT}/bin
 	doins bin/load-spark-env.sh


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2020-11-26 11:10 Patrice Clement
  0 siblings, 0 replies; 31+ messages in thread
From: Patrice Clement @ 2020-11-26 11:10 UTC (permalink / raw
  To: gentoo-commits

commit:     572059b22cafc69aba37b803161563a7668d344e
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 26 11:04:33 2020 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu Nov 26 11:10:05 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=572059b2

sys-cluster/spark-bin: add spark version 2.4.7.

This commit adds an ebuild to install Spark 2.4.7.

SLOT the ebuild so that both Spark 2 and Spark 3 can be installed on the
same machine.

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 sys-cluster/spark-bin/Manifest               |  1 +
 sys-cluster/spark-bin/spark-bin-2.4.7.ebuild | 64 ++++++++++++++++++++++++++++
 2 files changed, 65 insertions(+)

diff --git a/sys-cluster/spark-bin/Manifest b/sys-cluster/spark-bin/Manifest
index 118a83ea45d..399e58c5e48 100644
--- a/sys-cluster/spark-bin/Manifest
+++ b/sys-cluster/spark-bin/Manifest
@@ -1 +1,2 @@
+DIST spark-bin-2.4.7.tgz 233333392 BLAKE2B 5698cda600858ba36dbaa891949dd6e12f98877aa49b39f136733a0de9536975e373539080ed3992e4c3942c314c31919bf0bc27c6109e466cbc41b3574d0c63 SHA512 0f5455672045f6110b030ce343c049855b7ba86c0ecb5e39a075ff9d093c7f648da55ded12e72ffe65d84c32dcd5418a6d764f2d6295a3f894a4286cc80ef478
 DIST spark-bin-3.0.1.tgz 219929956 BLAKE2B dd53df1e0123feae5b69f97193d1edc647bd4802ab78c54e471ed54b3ae6eee32ace51e379569f4947599d24aba5af63b401c11ef2af6234ffc6ac1afbbe275f SHA512 f4a10baec5b8ff1841f10651cac2c4aa39c162d3029ca180a9749149e6060805b5b5ddf9287b4aa321434810172f8cc0534943ac005531bb48b6622fbe228ddc

diff --git a/sys-cluster/spark-bin/spark-bin-2.4.7.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.7.ebuild
new file mode 100644
index 00000000000..ab322d5079a
--- /dev/null
+++ b/sys-cluster/spark-bin/spark-bin-2.4.7.ebuild
@@ -0,0 +1,64 @@
+# 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="2"
+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-${SLOT}
+	into usr/lib/spark-${SLOT}
+
+	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-${SLOT}/bin
+	doins bin/load-spark-env.sh
+
+	insinto usr/lib/spark-${SLOT}
+	doins -r conf
+	doins -r jars
+	doins -r python
+	doins -r sbin
+	doins -r yarn
+
+	einstalldocs
+}
+
+pkg_postinst() {
+	einfo
+	einfo "Spark is now slotted. You have installed Spark ${SLOT}."
+	einfo
+	einfo "Make sure to add /usr/lib/spark-${SLOT}/{bin,sbin} directories"
+	einfo "to your PATH in order to run Spark shell scripts:"
+	einfo
+	einfo "$ export PATH=\$PATH:/usr/lib/spark-${SLOT}/bin"
+	einfo "$ export PATH=\$PATH:/usr/lib/spark-${SLOT}/sbin"
+	einfo
+}


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2020-11-26 11:10 Patrice Clement
  0 siblings, 0 replies; 31+ messages in thread
From: Patrice Clement @ 2020-11-26 11:10 UTC (permalink / raw
  To: gentoo-commits

commit:     cce191a13c99652d2c6a506d836dc61262cceaa0
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 26 11:09:41 2020 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu Nov 26 11:10:06 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cce191a1

sys-cluster/spark-bin: SLOT spark 3.

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 sys-cluster/spark-bin/spark-bin-3.0.1-r1.ebuild | 64 +++++++++++++++++++++++++
 1 file changed, 64 insertions(+)

diff --git a/sys-cluster/spark-bin/spark-bin-3.0.1-r1.ebuild b/sys-cluster/spark-bin/spark-bin-3.0.1-r1.ebuild
new file mode 100644
index 00000000000..d3c6e1123fb
--- /dev/null
+++ b/sys-cluster/spark-bin/spark-bin-3.0.1-r1.ebuild
@@ -0,0 +1,64 @@
+# 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="3"
+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-${SLOT}
+	into usr/lib/spark-${SLOT}
+
+	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-${SLOT}/bin
+	doins bin/load-spark-env.sh
+
+	insinto usr/lib/spark-${SLOT}
+	doins -r conf
+	doins -r jars
+	doins -r python
+	doins -r sbin
+	doins -r yarn
+
+	einstalldocs
+}
+
+pkg_postinst() {
+	einfo
+	einfo "Spark is now slotted. You have installed Spark ${SLOT}."
+	einfo
+	einfo "Make sure to add /usr/lib/spark-${SLOT}/{bin,sbin} directories"
+	einfo "to your PATH in order to run Spark shell scripts:"
+	einfo
+	einfo "$ export PATH=\$PATH:/usr/lib/spark-${SLOT}/bin"
+	einfo "$ export PATH=\$PATH:/usr/lib/spark-${SLOT}/sbin"
+	einfo
+}


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2020-11-24 16:27 Patrice Clement
  0 siblings, 0 replies; 31+ messages in thread
From: Patrice Clement @ 2020-11-24 16:27 UTC (permalink / raw
  To: gentoo-commits

commit:     77b1cfb3c41e1617ad59b321e316dad22627a544
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 24 16:26:59 2020 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Tue Nov 24 16:27:06 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77b1cfb3

sys-cluster/spark-bin: clean up old.

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 sys-cluster/spark-bin/Manifest               |  1 -
 sys-cluster/spark-bin/spark-bin-2.4.6.ebuild | 61 ----------------------------
 2 files changed, 62 deletions(-)

diff --git a/sys-cluster/spark-bin/Manifest b/sys-cluster/spark-bin/Manifest
index 7d03ef33dd5..118a83ea45d 100644
--- a/sys-cluster/spark-bin/Manifest
+++ b/sys-cluster/spark-bin/Manifest
@@ -1,2 +1 @@
-DIST spark-bin-2.4.6.tgz 233215067 BLAKE2B f2208a59822c98d90be3df95ffb7593ffe4faa74e233771b467732bfc3e01c65866488c74ee5f14c341790308537153f895f14f56beb0194a088a68b52f4fda1 SHA512 3a9f401eda9b5749cdafd246b1d14219229c26387017791c345a23a65782fb8b25a302bf4ac1ed7c16a1fe83108e94e55dad9639a51c751d81c8c0534a4a9641
 DIST spark-bin-3.0.1.tgz 219929956 BLAKE2B dd53df1e0123feae5b69f97193d1edc647bd4802ab78c54e471ed54b3ae6eee32ace51e379569f4947599d24aba5af63b401c11ef2af6234ffc6ac1afbbe275f SHA512 f4a10baec5b8ff1841f10651cac2c4aa39c162d3029ca180a9749149e6060805b5b5ddf9287b4aa321434810172f8cc0534943ac005531bb48b6622fbe228ddc

diff --git a/sys-cluster/spark-bin/spark-bin-2.4.6.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.6.ebuild
deleted file mode 100644
index c178519a3a7..00000000000
--- a/sys-cluster/spark-bin/spark-bin-2.4.6.ebuild
+++ /dev/null
@@ -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
-}


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2020-11-24 16:27 Patrice Clement
  0 siblings, 0 replies; 31+ messages in thread
From: Patrice Clement @ 2020-11-24 16:27 UTC (permalink / raw
  To: gentoo-commits

commit:     27df0db26a97f87d92844a3c158d270830bb822b
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 24 16:26:24 2020 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Tue Nov 24 16:27:06 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27df0db2

sys-cluster/spark-bin: mark stable on amd64.

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 sys-cluster/spark-bin/spark-bin-3.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/spark-bin/spark-bin-3.0.1.ebuild b/sys-cluster/spark-bin/spark-bin-3.0.1.ebuild
index c178519a3a7..9c98c787d46 100644
--- a/sys-cluster/spark-bin/spark-bin-3.0.1.ebuild
+++ b/sys-cluster/spark-bin/spark-bin-3.0.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://apache/spark/spark-${PV}/spark-${PV}-bin-hadoop2.7.tgz -> ${P}
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 RDEPEND="
 	>=virtual/jre-1.8"


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2020-10-02  7:32 Joonas Niilola
  0 siblings, 0 replies; 31+ messages in thread
From: Joonas Niilola @ 2020-10-02  7:32 UTC (permalink / raw
  To: gentoo-commits

commit:     15d4f90045b8c3940a8f8def87f2a4d3c0087245
Author:     Alec Ten Harmsel <alec <AT> alectenharmsel <DOT> com>
AuthorDate: Tue Sep 15 13:51:15 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Oct  2 07:31:44 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15d4f900

sys-cluster/spark-bin: Add 3.0.1

Package-Manager: Portage-3.0.4, Repoman-2.3.23
Signed-off-by: Alec Ten Harmsel <alec <AT> alectenharmsel.com>
Closes: https://github.com/gentoo/gentoo/pull/17546
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 sys-cluster/spark-bin/Manifest               |  1 +
 sys-cluster/spark-bin/spark-bin-3.0.1.ebuild | 61 ++++++++++++++++++++++++++++
 2 files changed, 62 insertions(+)

diff --git a/sys-cluster/spark-bin/Manifest b/sys-cluster/spark-bin/Manifest
index dea72c7a08b..7d03ef33dd5 100644
--- a/sys-cluster/spark-bin/Manifest
+++ b/sys-cluster/spark-bin/Manifest
@@ -1 +1,2 @@
 DIST spark-bin-2.4.6.tgz 233215067 BLAKE2B f2208a59822c98d90be3df95ffb7593ffe4faa74e233771b467732bfc3e01c65866488c74ee5f14c341790308537153f895f14f56beb0194a088a68b52f4fda1 SHA512 3a9f401eda9b5749cdafd246b1d14219229c26387017791c345a23a65782fb8b25a302bf4ac1ed7c16a1fe83108e94e55dad9639a51c751d81c8c0534a4a9641
+DIST spark-bin-3.0.1.tgz 219929956 BLAKE2B dd53df1e0123feae5b69f97193d1edc647bd4802ab78c54e471ed54b3ae6eee32ace51e379569f4947599d24aba5af63b401c11ef2af6234ffc6ac1afbbe275f SHA512 f4a10baec5b8ff1841f10651cac2c4aa39c162d3029ca180a9749149e6060805b5b5ddf9287b4aa321434810172f8cc0534943ac005531bb48b6622fbe228ddc

diff --git a/sys-cluster/spark-bin/spark-bin-3.0.1.ebuild b/sys-cluster/spark-bin/spark-bin-3.0.1.ebuild
new file mode 100644
index 00000000000..c178519a3a7
--- /dev/null
+++ b/sys-cluster/spark-bin/spark-bin-3.0.1.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
+}


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2020-07-16 14:39 Joonas Niilola
  0 siblings, 0 replies; 31+ messages in thread
From: Joonas Niilola @ 2020-07-16 14:39 UTC (permalink / raw
  To: gentoo-commits

commit:     c51cf076b9a42cc21ef3106ba2f8eafdab42235f
Author:     Alec Ten Harmsel <alec <AT> alectenharmsel <DOT> com>
AuthorDate: Tue Jun 23 10:41:42 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=c51cf076

sys-cluster/spark-bin: Remove 2.3.1

Insecure (see CVE-2020-9480).

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.3.1-r1.ebuild | 61 -------------------------
 2 files changed, 62 deletions(-)

diff --git a/sys-cluster/spark-bin/Manifest b/sys-cluster/spark-bin/Manifest
index 50733043239..d60c7acff54 100644
--- a/sys-cluster/spark-bin/Manifest
+++ b/sys-cluster/spark-bin/Manifest
@@ -1,3 +1,2 @@
-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.3.1-r1.ebuild b/sys-cluster/spark-bin/spark-bin-2.3.1-r1.ebuild
deleted file mode 100644
index b459784e997..00000000000
--- a/sys-cluster/spark-bin/spark-bin-2.3.1-r1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-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
-}


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2020-07-16 14:39 Joonas Niilola
  0 siblings, 0 replies; 31+ messages in thread
From: Joonas Niilola @ 2020-07-16 14:39 UTC (permalink / raw
  To: gentoo-commits

commit:     517a73e1a50509ad8f834400a45eb9a987fe35b9
Author:     Alec Ten Harmsel <alec <AT> alectenharmsel <DOT> com>
AuthorDate: Tue Jun 23 10:43:02 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=517a73e1

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 <AT> alectenharmsel.com>
Closes: https://github.com/gentoo/gentoo/pull/16383
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 sys-cluster/spark-bin/Manifest               |  1 -
 sys-cluster/spark-bin/spark-bin-2.4.5.ebuild | 61 ----------------------------
 2 files changed, 62 deletions(-)

diff --git a/sys-cluster/spark-bin/Manifest b/sys-cluster/spark-bin/Manifest
index d60c7acff54..dea72c7a08b 100644
--- a/sys-cluster/spark-bin/Manifest
+++ b/sys-cluster/spark-bin/Manifest
@@ -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

diff --git a/sys-cluster/spark-bin/spark-bin-2.4.5.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.5.ebuild
deleted file mode 100644
index c178519a3a7..00000000000
--- a/sys-cluster/spark-bin/spark-bin-2.4.5.ebuild
+++ /dev/null
@@ -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
-}


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2020-07-16 14:39 Joonas Niilola
  0 siblings, 0 replies; 31+ messages in thread
From: Joonas Niilola @ 2020-07-16 14:39 UTC (permalink / raw
  To: gentoo-commits

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
+}


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2020-04-17  8:08 Joonas Niilola
  0 siblings, 0 replies; 31+ messages in thread
From: Joonas Niilola @ 2020-04-17  8:08 UTC (permalink / raw
  To: gentoo-commits

commit:     f80061a086455524fa48c189674e91eccec735c6
Author:     Alec Ten Harmsel <alec <AT> alectenharmsel <DOT> com>
AuthorDate: Thu Apr 16 18:55:19 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Apr 17 08:08:29 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f80061a0

sys-cluster/spark-bin: Add proxy maintainer

Adding myself as a proxy maintainer after accidental removal.

Bug: https://bugs.gentoo.org/670670
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Alec Ten Harmsel <alec <AT> alectenharmsel.com>
Closes: https://github.com/gentoo/gentoo/pull/15372
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 sys-cluster/spark-bin/metadata.xml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/sys-cluster/spark-bin/metadata.xml b/sys-cluster/spark-bin/metadata.xml
index 7af5e8b93a6..687380a6ed2 100644
--- a/sys-cluster/spark-bin/metadata.xml
+++ b/sys-cluster/spark-bin/metadata.xml
@@ -5,4 +5,12 @@
     <email>java@gentoo.org</email>
     <name>Gentoo Java Team</name>
   </maintainer>
+  <maintainer type="person">
+    <email>alec@alectenharmsel.com</email>
+    <name>Alec Ten Harmsel</name>
+  </maintainer>
+  <maintainer type="project">
+    <email>proxy-maint@gentoo.org</email>
+    <name>Proxy Maintainers</name>
+  </maintainer>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2020-04-16  8:11 Joonas Niilola
  0 siblings, 0 replies; 31+ messages in thread
From: Joonas Niilola @ 2020-04-16  8:11 UTC (permalink / raw
  To: gentoo-commits

commit:     c17b83f67659e2ef3fc38c4ab9c8b9097a632bb1
Author:     Alec Ten Harmsel <alec <AT> alectenharmsel <DOT> com>
AuthorDate: Tue Apr 14 12:31:22 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Apr 16 08:09:49 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c17b83f6

sys-cluster/spark-bin: Remove 2.4.4-r1

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Alec Ten Harmsel <alec <AT> alectenharmsel.com>
Closes: https://github.com/gentoo/gentoo/pull/15344
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 sys-cluster/spark-bin/Manifest                  |  1 -
 sys-cluster/spark-bin/spark-bin-2.4.4-r1.ebuild | 61 -------------------------
 2 files changed, 62 deletions(-)

diff --git a/sys-cluster/spark-bin/Manifest b/sys-cluster/spark-bin/Manifest
index 1fd3bfeeed8..37e8dc7558b 100644
--- a/sys-cluster/spark-bin/Manifest
+++ b/sys-cluster/spark-bin/Manifest
@@ -1,3 +1,2 @@
 DIST spark-bin-2.3.1.tgz 225883783 BLAKE2B d89e83a54aaabd39c5fa0d9c51a1bb5635f60ded4869672a387d13d87fffbb48385d4fbf67b55a96e709f27348f73a089624a0563c98eaba31f93d74bf4548ee SHA512 dc3a97f3d99791d363e4f70a622b84d6e313bd852f6fdbc777d31eab44cbc112ceeaa20f7bf835492fb654f48ae57e9969f93d3b0e6ec92076d1c5e1b40b4696
-DIST spark-bin-2.4.4.tgz 230091034 BLAKE2B 66f7e7bae6fe6959f233adc085560cf1b80a641b4018eb334d77f390eb88f5ab898e1ea59c1c17ca15a122f4f98eea4670ea7152bc2c83f6cb76cd11d3f586ec SHA512 2e3a5c853b9f28c7d4525c0adcb0d971b73ad47d5cce138c85335b9f53a6519540d3923cb0b5cee41e386e49ae8a409a51ab7194ba11a254e037a848d0c4a9e5
 DIST spark-bin-2.4.5.tgz 232530699 BLAKE2B e67d728af9e40417afb09e342d515021146bebef9a27df12cab2b64f1eb3ed134bbb8eecd731b2e30c9c4c6042f6fb9d076da5ac5c654c9066d2f9c3ecd0c24c SHA512 2426a20c548bdfc07df288cd1d18d1da6b3189d0b78dee76fa034c52a4e02895f0ad460720c526f163ba63a17efae4764c46a1cd8f9b04c60f9937a554db85d2

diff --git a/sys-cluster/spark-bin/spark-bin-2.4.4-r1.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.4-r1.ebuild
deleted file mode 100644
index 63bb7e0eeb4..00000000000
--- a/sys-cluster/spark-bin/spark-bin-2.4.4-r1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2019 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
-}


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2020-04-16  8:11 Joonas Niilola
  0 siblings, 0 replies; 31+ messages in thread
From: Joonas Niilola @ 2020-04-16  8:11 UTC (permalink / raw
  To: gentoo-commits

commit:     5efbbd6fcecfe6cc7bef5e87b8c4ddf8758ca6b9
Author:     Alec Ten Harmsel <alec <AT> alectenharmsel <DOT> com>
AuthorDate: Tue Apr 14 12:30:30 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Apr 16 08:09:49 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5efbbd6f

sys-cluster/spark-bin: Bump to 2.4.5

Bug: https://bugs.gentoo.org/670670
Package-Manager: Portage-2.3.89, Repoman-2.3.20
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.5.ebuild | 61 ++++++++++++++++++++++++++++
 2 files changed, 62 insertions(+)

diff --git a/sys-cluster/spark-bin/Manifest b/sys-cluster/spark-bin/Manifest
index bf58b843614..1fd3bfeeed8 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.4.tgz 230091034 BLAKE2B 66f7e7bae6fe6959f233adc085560cf1b80a641b4018eb334d77f390eb88f5ab898e1ea59c1c17ca15a122f4f98eea4670ea7152bc2c83f6cb76cd11d3f586ec SHA512 2e3a5c853b9f28c7d4525c0adcb0d971b73ad47d5cce138c85335b9f53a6519540d3923cb0b5cee41e386e49ae8a409a51ab7194ba11a254e037a848d0c4a9e5
+DIST spark-bin-2.4.5.tgz 232530699 BLAKE2B e67d728af9e40417afb09e342d515021146bebef9a27df12cab2b64f1eb3ed134bbb8eecd731b2e30c9c4c6042f6fb9d076da5ac5c654c9066d2f9c3ecd0c24c SHA512 2426a20c548bdfc07df288cd1d18d1da6b3189d0b78dee76fa034c52a4e02895f0ad460720c526f163ba63a17efae4764c46a1cd8f9b04c60f9937a554db85d2

diff --git a/sys-cluster/spark-bin/spark-bin-2.4.5.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.5.ebuild
new file mode 100644
index 00000000000..c178519a3a7
--- /dev/null
+++ b/sys-cluster/spark-bin/spark-bin-2.4.5.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
+}


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2019-11-13 15:05 Joonas Niilola
  0 siblings, 0 replies; 31+ messages in thread
From: Joonas Niilola @ 2019-11-13 15:05 UTC (permalink / raw
  To: gentoo-commits

commit:     dd14546adbc40378fbdb11622cd9653beaffd67c
Author:     Alec Ten Harmsel <alec <AT> alectenharmsel <DOT> com>
AuthorDate: Mon Nov 11 21:03:52 2019 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Nov 13 15:04:55 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd14546a

sys-cluster/spark-bin: Drop 2.3.1, 2.4.4

Bumped to *-r1 with the change to relative paths in symlinks.

Signed-off-by: Alec Ten Harmsel <alec <AT> alectenharmsel.com>
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Closes: https://github.com/gentoo/gentoo/pull/13614
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 sys-cluster/spark-bin/spark-bin-2.3.1.ebuild | 61 ----------------------------
 sys-cluster/spark-bin/spark-bin-2.4.4.ebuild | 61 ----------------------------
 2 files changed, 122 deletions(-)

diff --git a/sys-cluster/spark-bin/spark-bin-2.3.1.ebuild b/sys-cluster/spark-bin/spark-bin-2.3.1.ebuild
deleted file mode 100644
index 3742cb97bf5..00000000000
--- a/sys-cluster/spark-bin/spark-bin-2.3.1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-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 "${ED%/}"/usr/lib/spark/bin/beeline /usr/bin/beeline
-	dosym "${ED%/}"/usr/lib/spark/bin/pyspark /usr/bin/pyspark
-	dosym "${ED%/}"/usr/lib/spark/bin/pyspark /usr/bin/find-spark-home
-	dosym "${ED%/}"/usr/lib/spark/bin/spark-class /usr/bin/spark-class
-	dosym "${ED%/}"/usr/lib/spark/bin/spark-shell /usr/bin/spark-shell
-	dosym "${ED%/}"/usr/lib/spark/bin/spark-sql /usr/bin/spark-sql
-	dosym "${ED%/}"/usr/lib/spark/bin/spark-submit /usr/bin/spark-submit
-
-	doenvd "${FILESDIR}"/99spark
-	einstalldocs
-}

diff --git a/sys-cluster/spark-bin/spark-bin-2.4.4.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.4.ebuild
deleted file mode 100644
index ecd0c7b00f8..00000000000
--- a/sys-cluster/spark-bin/spark-bin-2.4.4.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2019 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 "${ED%/}"/usr/lib/spark/bin/beeline /usr/bin/beeline
-	dosym "${ED%/}"/usr/lib/spark/bin/pyspark /usr/bin/pyspark
-	dosym "${ED%/}"/usr/lib/spark/bin/pyspark /usr/bin/find-spark-home
-	dosym "${ED%/}"/usr/lib/spark/bin/spark-class /usr/bin/spark-class
-	dosym "${ED%/}"/usr/lib/spark/bin/spark-shell /usr/bin/spark-shell
-	dosym "${ED%/}"/usr/lib/spark/bin/spark-sql /usr/bin/spark-sql
-	dosym "${ED%/}"/usr/lib/spark/bin/spark-submit /usr/bin/spark-submit
-
-	doenvd "${FILESDIR}"/99spark
-	einstalldocs
-}


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2019-10-16  5:22 Joonas Niilola
  0 siblings, 0 replies; 31+ messages in thread
From: Joonas Niilola @ 2019-10-16  5:22 UTC (permalink / raw
  To: gentoo-commits

commit:     af9fbf622e9c9d8ad48a66e4dbb8ba5a662176a1
Author:     Alec Ten Harmsel <alec <AT> alectenharmsel <DOT> com>
AuthorDate: Wed Oct  9 11:37:06 2019 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Oct 16 05:22:02 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af9fbf62

sys-cluster/spark-bin: bump to 2.4.4

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Alec Ten Harmsel <alec <AT> alectenharmsel.com>
Closes: https://bugs.gentoo.org/696182
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 sys-cluster/spark-bin/Manifest               |  1 +
 sys-cluster/spark-bin/spark-bin-2.4.4.ebuild | 61 ++++++++++++++++++++++++++++
 2 files changed, 62 insertions(+)

diff --git a/sys-cluster/spark-bin/Manifest b/sys-cluster/spark-bin/Manifest
index 52f941ec3a2..b87e67bb13d 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.3.tgz 229988313 BLAKE2B 6d8dedcdc9419e3b59c021ff583d360a40dbcfd85c925ea3ee0ae4b82cd1ee7ae3a4caa080e7e871857e7e0e4e482148633e12b64b0dd875b09cb9a2d1ddcc35 SHA512 e8b7f9e1dec868282cadcad81599038a22f48fb597d44af1b13fcc76b7dacd2a1caf431f95e394e1227066087e3ce6c2137c4abaf60c60076b78f959074ff2ad
+DIST spark-bin-2.4.4.tgz 230091034 BLAKE2B 66f7e7bae6fe6959f233adc085560cf1b80a641b4018eb334d77f390eb88f5ab898e1ea59c1c17ca15a122f4f98eea4670ea7152bc2c83f6cb76cd11d3f586ec SHA512 2e3a5c853b9f28c7d4525c0adcb0d971b73ad47d5cce138c85335b9f53a6519540d3923cb0b5cee41e386e49ae8a409a51ab7194ba11a254e037a848d0c4a9e5

diff --git a/sys-cluster/spark-bin/spark-bin-2.4.4.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.4.ebuild
new file mode 100644
index 00000000000..ecd0c7b00f8
--- /dev/null
+++ b/sys-cluster/spark-bin/spark-bin-2.4.4.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2019 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 "${ED%/}"/usr/lib/spark/bin/beeline /usr/bin/beeline
+	dosym "${ED%/}"/usr/lib/spark/bin/pyspark /usr/bin/pyspark
+	dosym "${ED%/}"/usr/lib/spark/bin/pyspark /usr/bin/find-spark-home
+	dosym "${ED%/}"/usr/lib/spark/bin/spark-class /usr/bin/spark-class
+	dosym "${ED%/}"/usr/lib/spark/bin/spark-shell /usr/bin/spark-shell
+	dosym "${ED%/}"/usr/lib/spark/bin/spark-sql /usr/bin/spark-sql
+	dosym "${ED%/}"/usr/lib/spark/bin/spark-submit /usr/bin/spark-submit
+
+	doenvd "${FILESDIR}"/99spark
+	einstalldocs
+}


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2019-10-16  5:22 Joonas Niilola
  0 siblings, 0 replies; 31+ messages in thread
From: Joonas Niilola @ 2019-10-16  5:22 UTC (permalink / raw
  To: gentoo-commits

commit:     1c746f404bb7dca4f92892fb4af5977930ca25b9
Author:     Alec Ten Harmsel <alec <AT> alectenharmsel <DOT> com>
AuthorDate: Wed Oct  9 11:39:14 2019 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Oct 16 05:22:02 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c746f40

sys-cluster/spark-bin: remove 2.4.3

Signed-off-by: Alec Ten Harmsel <alec <AT> alectenharmsel.com>
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 sys-cluster/spark-bin/Manifest               |  1 -
 sys-cluster/spark-bin/spark-bin-2.4.3.ebuild | 61 ----------------------------
 2 files changed, 62 deletions(-)

diff --git a/sys-cluster/spark-bin/Manifest b/sys-cluster/spark-bin/Manifest
index b87e67bb13d..bf58b843614 100644
--- a/sys-cluster/spark-bin/Manifest
+++ b/sys-cluster/spark-bin/Manifest
@@ -1,3 +1,2 @@
 DIST spark-bin-2.3.1.tgz 225883783 BLAKE2B d89e83a54aaabd39c5fa0d9c51a1bb5635f60ded4869672a387d13d87fffbb48385d4fbf67b55a96e709f27348f73a089624a0563c98eaba31f93d74bf4548ee SHA512 dc3a97f3d99791d363e4f70a622b84d6e313bd852f6fdbc777d31eab44cbc112ceeaa20f7bf835492fb654f48ae57e9969f93d3b0e6ec92076d1c5e1b40b4696
-DIST spark-bin-2.4.3.tgz 229988313 BLAKE2B 6d8dedcdc9419e3b59c021ff583d360a40dbcfd85c925ea3ee0ae4b82cd1ee7ae3a4caa080e7e871857e7e0e4e482148633e12b64b0dd875b09cb9a2d1ddcc35 SHA512 e8b7f9e1dec868282cadcad81599038a22f48fb597d44af1b13fcc76b7dacd2a1caf431f95e394e1227066087e3ce6c2137c4abaf60c60076b78f959074ff2ad
 DIST spark-bin-2.4.4.tgz 230091034 BLAKE2B 66f7e7bae6fe6959f233adc085560cf1b80a641b4018eb334d77f390eb88f5ab898e1ea59c1c17ca15a122f4f98eea4670ea7152bc2c83f6cb76cd11d3f586ec SHA512 2e3a5c853b9f28c7d4525c0adcb0d971b73ad47d5cce138c85335b9f53a6519540d3923cb0b5cee41e386e49ae8a409a51ab7194ba11a254e037a848d0c4a9e5

diff --git a/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild
deleted file mode 100644
index 5240cf90911..00000000000
--- a/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-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 "${ED%/}"/usr/lib/spark/bin/beeline /usr/bin/beeline
-	dosym "${ED%/}"/usr/lib/spark/bin/pyspark /usr/bin/pyspark
-	dosym "${ED%/}"/usr/lib/spark/bin/pyspark /usr/bin/find-spark-home
-	dosym "${ED%/}"/usr/lib/spark/bin/spark-class /usr/bin/spark-class
-	dosym "${ED%/}"/usr/lib/spark/bin/spark-shell /usr/bin/spark-shell
-	dosym "${ED%/}"/usr/lib/spark/bin/spark-sql /usr/bin/spark-sql
-	dosym "${ED%/}"/usr/lib/spark/bin/spark-submit /usr/bin/spark-submit
-
-	doenvd "${FILESDIR}"/99spark
-	einstalldocs
-}


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2019-05-17 16:36 Patrice Clement
  0 siblings, 0 replies; 31+ messages in thread
From: Patrice Clement @ 2019-05-17 16:36 UTC (permalink / raw
  To: gentoo-commits

commit:     0fd745865b1a10743a259cb52dbf1df39865cb04
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Fri May 17 16:34:42 2019 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Fri May 17 16:36:50 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fd74586

sys-cluster/spark-bin: version bump.

Closes: https://bugs.gentoo.org/680454
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 sys-cluster/spark-bin/Manifest               |  1 +
 sys-cluster/spark-bin/spark-bin-2.4.3.ebuild | 61 ++++++++++++++++++++++++++++
 2 files changed, 62 insertions(+)

diff --git a/sys-cluster/spark-bin/Manifest b/sys-cluster/spark-bin/Manifest
index 3955b16f973..52f941ec3a2 100644
--- a/sys-cluster/spark-bin/Manifest
+++ b/sys-cluster/spark-bin/Manifest
@@ -1 +1,2 @@
 DIST spark-bin-2.3.1.tgz 225883783 BLAKE2B d89e83a54aaabd39c5fa0d9c51a1bb5635f60ded4869672a387d13d87fffbb48385d4fbf67b55a96e709f27348f73a089624a0563c98eaba31f93d74bf4548ee SHA512 dc3a97f3d99791d363e4f70a622b84d6e313bd852f6fdbc777d31eab44cbc112ceeaa20f7bf835492fb654f48ae57e9969f93d3b0e6ec92076d1c5e1b40b4696
+DIST spark-bin-2.4.3.tgz 229988313 BLAKE2B 6d8dedcdc9419e3b59c021ff583d360a40dbcfd85c925ea3ee0ae4b82cd1ee7ae3a4caa080e7e871857e7e0e4e482148633e12b64b0dd875b09cb9a2d1ddcc35 SHA512 e8b7f9e1dec868282cadcad81599038a22f48fb597d44af1b13fcc76b7dacd2a1caf431f95e394e1227066087e3ce6c2137c4abaf60c60076b78f959074ff2ad

diff --git a/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild b/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild
new file mode 100644
index 00000000000..5240cf90911
--- /dev/null
+++ b/sys-cluster/spark-bin/spark-bin-2.4.3.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+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 "${ED%/}"/usr/lib/spark/bin/beeline /usr/bin/beeline
+	dosym "${ED%/}"/usr/lib/spark/bin/pyspark /usr/bin/pyspark
+	dosym "${ED%/}"/usr/lib/spark/bin/pyspark /usr/bin/find-spark-home
+	dosym "${ED%/}"/usr/lib/spark/bin/spark-class /usr/bin/spark-class
+	dosym "${ED%/}"/usr/lib/spark/bin/spark-shell /usr/bin/spark-shell
+	dosym "${ED%/}"/usr/lib/spark/bin/spark-sql /usr/bin/spark-sql
+	dosym "${ED%/}"/usr/lib/spark/bin/spark-submit /usr/bin/spark-submit
+
+	doenvd "${FILESDIR}"/99spark
+	einstalldocs
+}


^ permalink raw reply related	[flat|nested] 31+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/
@ 2018-11-05 22:47 Patrice Clement
  0 siblings, 0 replies; 31+ messages in thread
From: Patrice Clement @ 2018-11-05 22:47 UTC (permalink / raw
  To: gentoo-commits

commit:     adc422db983ea6fd45af10451eab7ee2ad138b4c
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Mon Nov  5 22:46:43 2018 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Mon Nov  5 22:46:54 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adc422db

sys-cluster/spark-bin: call einstalldocs and do install DOCS file.

Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11

 sys-cluster/spark-bin/spark-bin-2.3.1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys-cluster/spark-bin/spark-bin-2.3.1.ebuild b/sys-cluster/spark-bin/spark-bin-2.3.1.ebuild
index a63dae691f9..3742cb97bf5 100644
--- a/sys-cluster/spark-bin/spark-bin-2.3.1.ebuild
+++ b/sys-cluster/spark-bin/spark-bin-2.3.1.ebuild
@@ -57,4 +57,5 @@ src_install() {
 	dosym "${ED%/}"/usr/lib/spark/bin/spark-submit /usr/bin/spark-submit
 
 	doenvd "${FILESDIR}"/99spark
+	einstalldocs
 }


^ permalink raw reply related	[flat|nested] 31+ messages in thread

end of thread, other threads:[~2024-08-15 13:43 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-11-13 15:05 [gentoo-commits] repo/gentoo:master commit in: sys-cluster/spark-bin/ Joonas Niilola
  -- strict thread matches above, loose matches on Subject: below --
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-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-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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox