public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sergey Torokhov" <torokhov-s-a@yandex.ru>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/
Date: Tue, 12 Sep 2023 13:58:05 +0000 (UTC)	[thread overview]
Message-ID: <1694527076.c16b47935ef3272b4fdb35b5f9d1724b1615b706.SergeyTorokhov@gentoo> (raw)

commit:     c16b47935ef3272b4fdb35b5f9d1724b1615b706
Author:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Tue Sep 12 13:57:26 2023 +0000
Commit:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
CommitDate: Tue Sep 12 13:57:56 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c16b4793

dev-util/eclipse-parallel-bin: 4.28 version bump

Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>

 dev-util/eclipse-parallel-bin/Manifest             |  2 +
 .../eclipse-parallel-bin-4.28.ebuild               | 50 ++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/dev-util/eclipse-parallel-bin/Manifest b/dev-util/eclipse-parallel-bin/Manifest
index 834158b305..fab48704d0 100644
--- a/dev-util/eclipse-parallel-bin/Manifest
+++ b/dev-util/eclipse-parallel-bin/Manifest
@@ -1,2 +1,4 @@
 DIST eclipse-parallel-2023-03-R-linux-gtk-aarch64.tar.gz 453078962 BLAKE2B b5ccf1b8937c970c8db38b351412d46c63c893734ecdd9c02518f9e1d5925b4ff33cc5621161e831ced5d9762e635aa0323686f28792ace640426925704d9395 SHA512 733d5fe2c46fb083714964cf66091cdc52dbc30d763e22e0f6c4eb506b50e7ddc7c0ae33e3dfd4ab2a33b3e9e00513d8c5d826770afd940d02f540884eb37381
 DIST eclipse-parallel-2023-03-R-linux-gtk-x86_64.tar.gz 453309496 BLAKE2B 531776eb8ab0befbaf3bdef79e99d0c8db656e35452ea893c9b76405a538473abbe7a4f9161fd81b157d030404ea002e8146a61d98ea68f5893c4e467a48fa36 SHA512 8c7b5584a6b28a40269280e371a42dcaa8f12873d05506fab4a4f0c7a764f918b281ef7524c55cd2abfd9d2bdff49de0e9e8496a1ba811f6b9008f494f8601ad
+DIST eclipse-parallel-2023-06-R-linux-gtk-aarch64.tar.gz 475847442 BLAKE2B 5fddc8b30a4862fd92bb01ab4183194d19f5d9ffd3762d57e37c12ef373e92b0426d8691432a992d68d338bea0de9a24dc30e5c56de09ace2a42513d7ba8da63 SHA512 1cafc666fdbc9d2f90c35bffa7f798d60a8a9ef1a04444b93eef9619eee6d916a98685b0dc2f379351edacfd9f0710aa87c23067f4b8de52106b41fc473aefc6
+DIST eclipse-parallel-2023-06-R-linux-gtk-x86_64.tar.gz 476084495 BLAKE2B 1cb769efa32b56f0f294dce3fd3dddc2c8c9259e53d836ae88f7ebf98d68337f9809faacc29db68a0b68e12d9a3b84df7dbb0715014b43201c64102499bd997c SHA512 43b86008840bf79aa092537d99da2e13596a346a6a098a4b67b89dbadeb1c2389b8384768ad1227b9d3d7713b27e814627354cc1142cbe8c8886ca6e3cc72624

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.28.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.28.ebuild
new file mode 100644
index 0000000000..3faf1f6f51
--- /dev/null
+++ b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.28.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop wrapper xdg
+
+MY_PN="eclipse"
+MY_PV="2023-06"
+SRC_BASE="https://www.eclipse.org/downloads/download.php?r=1&file=/technology/epp/downloads/release/${MY_PV}/R/eclipse-parallel-${MY_PV}-R-linux-gtk"
+
+DESCRIPTION="Eclipse IDE for Scientific Computing (C, C++, Fortran)"
+HOMEPAGE="https://www.eclipse.org/"
+SRC_URI="
+	amd64? ( ${SRC_BASE}-x86_64.tar.gz )
+	arm64? ( ${SRC_BASE}-aarch64.tar.gz )
+"
+
+S="${WORKDIR}/${MY_PN}"
+
+LICENSE="EPL-2.0"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~arm64"
+RESTRICT="mirror"
+
+RDEPEND="
+	|| (
+		dev-java/openjdk:11 dev-java/openjdk:17
+		dev-java/openjdk-bin:11 dev-java/openjdk-bin:17
+		dev-java/openjdk-jre-bin:11
+	)
+	x11-libs/gtk+:3
+"
+
+QA_FLAGS_IGNORED=".*"
+
+src_install() {
+	insinto "/opt/${PN}"
+	doins -r "${S}/."
+
+	exeinto "/opt/${PN}"
+	doexe "${S}/${MY_PN}"
+	make_wrapper ${PN%-*} "/opt/${PN}/${MY_PN} -vm /opt/openjdk*/bin/java" "" "/opt/${PN}" "/opt/bin"
+
+	for size in {16,24,32,48,64,128,512,1024}; do
+		doicon -s ${size} plugins/org.eclipse.platform_4.28.0.v20230605-0440/eclipse${size}.png
+	done
+	make_desktop_entry eclipse-parallel \
+		"Eclipse IDE Parallel ${MY_PV}" eclipse64 "Development;" || die "Failed making desktop entry!"
+}


             reply	other threads:[~2023-09-12 13:58 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-12 13:58 Sergey Torokhov [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-05-05 14:54 [gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/ Sergey Torokhov
2023-05-27 22:22 Rahul Sandhu
2023-05-27 21:21 Sergey Torokhov
2023-04-02 12:10 Sergey Torokhov
2023-03-15 19:36 Sergey Torokhov
2023-01-18 21:32 Sergey Torokhov
2022-12-09 17:21 Sergey Torokhov
2022-12-09 17:10 Sergey Torokhov
2022-10-29 22:05 Sergey Torokhov
2022-10-09 22:29 Sergey Torokhov
2022-04-17 12:42 Sergey Torokhov
2022-04-17 12:42 Sergey Torokhov
2022-04-16 12:06 Sergey Torokhov
2022-01-13 15:36 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2022-01-13 15:36 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2021-12-15 22:51 Sergey Torokhov
2021-09-26 23:16 Sergey Torokhov
2021-09-24 14:08 Sergey Torokhov
2021-09-20  9:41 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2021-09-20  9:32 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2021-09-08 12:47 Sergey Torokhov
2021-09-05 10:39 Sergey Torokhov
2021-09-03 21:10 Sergey Torokhov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1694527076.c16b47935ef3272b4fdb35b5f9d1724b1615b706.SergeyTorokhov@gentoo \
    --to=torokhov-s-a@yandex.ru \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox