public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/
@ 2021-09-03 21:10 Sergey Torokhov
  0 siblings, 0 replies; 22+ messages in thread
From: Sergey Torokhov @ 2021-09-03 21:10 UTC (permalink / raw
  To: gentoo-commits

commit:     96b9ec6fa154160de0e3c7983c3f4f3047a10496
Author:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Fri Sep  3 21:10:14 2021 +0000
Commit:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
CommitDate: Fri Sep  3 21:10:14 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=96b9ec6f

dev-util/eclipse-parallel-bin: new package

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

 dev-util/eclipse-parallel-bin/Manifest             |  2 ++
 .../eclipse-parallel-bin-4.20.ebuild               | 39 ++++++++++++++++++++++
 dev-util/eclipse-parallel-bin/metadata.xml         | 12 +++++++
 3 files changed, 53 insertions(+)

diff --git a/dev-util/eclipse-parallel-bin/Manifest b/dev-util/eclipse-parallel-bin/Manifest
new file mode 100644
index 000000000..1d5c2f64a
--- /dev/null
+++ b/dev-util/eclipse-parallel-bin/Manifest
@@ -0,0 +1,2 @@
+DIST eclipse-parallel-2021-06-R-linux-gtk-aarch64.tar.gz 335511560 BLAKE2B 71b277b38335df3e93db1bfb5920cfe692b2237f25669e13e83e779b53459913e9e6d904394e4e63e79ab668a899796d6e00ffe5db118ed46238c5da06e0602d SHA512 9d2e9d89f5021897292dd824a4e9cd495b707958d3c4f4afc0f19e0638af41787824e6b72b6bc84beaea54cb488b9de7d1b4a75ab7e341d54f0e1c0de40d228a
+DIST eclipse-parallel-2021-06-R-linux-gtk-x86_64.tar.gz 335565165 BLAKE2B d4c42681e0d5d1cccd83391776779ef82d429675ce4ae74dbd04edcd84aa1a9e146365a157f4168fdff763d78acfa8b4021cac7152ebaae02ceca6c727d0ab4b SHA512 61609e2d4455f1fa77928b90506f5c00da91e96635ba1011a7db5c43db45ea534155b202aadfc1693bf48c213af505704ad1599d9444160f5520dba80808cfcb

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild
new file mode 100644
index 000000000..ad3a671fe
--- /dev/null
+++ b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop eutils xdg
+
+MY_PN="eclipse"
+DESCRIPTION="Eclipse IDE for Scientific Computing (C, C++, Fortran)"
+HOMEPAGE="https://www.eclipse.org/"
+SRC_URI="
+	amd64? ( https://download.eclipse.org/technology/epp/downloads/release/2021-06/R/eclipse-parallel-2021-06-R-linux-gtk-x86_64.tar.gz )
+	arm64? ( https://download.eclipse.org/technology/epp/downloads/release/2021-06/R/eclipse-parallel-2021-06-R-linux-gtk-aarch64.tar.gz )
+"
+
+S="${WORKDIR}/${MY_PN}"
+
+LICENSE="EPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+IUSE=""
+RESTRICT="mirror"
+
+RDEPEND="
+	|| ( dev-java/openjdk:11 dev-java/openjdk-bin:11 dev-java/openjdk-jre-bin:11 dev-java/openjdk-sts-bin:15 )
+	x11-libs/gtk+:3
+"
+
+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"
+
+	doicon -s 48 plugins/org.eclipse.platform_4.20.0.v20210611-1600/eclipse48.png
+	make_desktop_entry eclipse-parallel "Eclipse IDE Parallel 2021-06" eclipse48 "Development;" || die "Failed making desktop entry!"
+}

diff --git a/dev-util/eclipse-parallel-bin/metadata.xml b/dev-util/eclipse-parallel-bin/metadata.xml
new file mode 100644
index 000000000..427f59ddb
--- /dev/null
+++ b/dev-util/eclipse-parallel-bin/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>torokhov-s-a@yandex.ru</email>
+		<name>Sergey Torokhov</name>
+	</maintainer>
+	<longdescription lang="en">
+		Tools for C, C++, Fortran, and UPC, including MPI, OpenMP, OpenACC,
+		a parallel debugger, and remotely building, running and monitoring applications.
+	</longdescription>
+</pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/
@ 2021-09-05 10:39 Sergey Torokhov
  0 siblings, 0 replies; 22+ messages in thread
From: Sergey Torokhov @ 2021-09-05 10:39 UTC (permalink / raw
  To: gentoo-commits

commit:     4d0ce063f2d5fcb713e2f5687198c61b320bea2f
Author:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Sun Sep  5 10:38:32 2021 +0000
Commit:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
CommitDate: Sun Sep  5 10:38:32 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4d0ce063

dwev-util/eclipse-parallel-bin: KEYWORDS update

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

 dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild
index ad3a671fe..09dfb4ba9 100644
--- a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild
+++ b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild
@@ -17,7 +17,7 @@ S="${WORKDIR}/${MY_PN}"
 
 LICENSE="EPL-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="~amd64 ~arm64 -*"
 IUSE=""
 RESTRICT="mirror"
 


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/
@ 2021-09-08 12:47 Sergey Torokhov
  0 siblings, 0 replies; 22+ messages in thread
From: Sergey Torokhov @ 2021-09-08 12:47 UTC (permalink / raw
  To: gentoo-commits

commit:     4c4f4ca1b26252a9ace4783b24aab2b2d9246bbd
Author:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Wed Sep  8 12:45:47 2021 +0000
Commit:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
CommitDate: Wed Sep  8 12:45:47 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4c4f4ca1

dev-util/eclipse-parallel-bin: fix QA not respect CFLAGS/LDFLAGS

Closes: https://bugs.gentoo.org/812032

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

 dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild
index 09dfb4ba9..f66cc1706 100644
--- a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild
+++ b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild
@@ -26,6 +26,11 @@ RDEPEND="
 	x11-libs/gtk+:3
 "
 
+QA_FLAGS_IGNORED="
+	/opt/eclipse-parallel-bin/eclipse
+	/opt/eclipse-parallel-bin/plugins/org.eclipse.equinox.launcher.gtk.linux.*/eclipse_*.so
+"
+
 src_install() {
 	insinto "/opt/${PN}"
 	doins -r "${S}/."


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/
  2021-09-20  9:41 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
@ 2021-09-20  9:32 ` Andrew Ammerlaan
  0 siblings, 0 replies; 22+ messages in thread
From: Andrew Ammerlaan @ 2021-09-20  9:32 UTC (permalink / raw
  To: gentoo-commits

commit:     6c191db71813b7683bc86527ad6589a1b8f5e109
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 20 09:31:10 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Mon Sep 20 09:31:10 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6c191db7

dev-util/eclipse-parallel-bin: fix UnsortedKeywords

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild
index f66cc1706..d8106ff52 100644
--- a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild
+++ b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild
@@ -17,8 +17,7 @@ S="${WORKDIR}/${MY_PN}"
 
 LICENSE="EPL-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 -*"
-IUSE=""
+KEYWORDS="-* ~amd64 ~arm64"
 RESTRICT="mirror"
 
 RDEPEND="


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/
@ 2021-09-24 14:08 Sergey Torokhov
  0 siblings, 0 replies; 22+ messages in thread
From: Sergey Torokhov @ 2021-09-24 14:08 UTC (permalink / raw
  To: gentoo-commits

commit:     b529a19251a10886724ab2d855f89859dfabbd28
Author:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Fri Sep 24 14:07:56 2021 +0000
Commit:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
CommitDate: Fri Sep 24 14:08:38 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b529a192

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

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

 dev-util/eclipse-parallel-bin/Manifest             |  2 +
 .../eclipse-parallel-bin-4.21.ebuild               | 44 ++++++++++++++++++++++
 2 files changed, 46 insertions(+)

diff --git a/dev-util/eclipse-parallel-bin/Manifest b/dev-util/eclipse-parallel-bin/Manifest
index 1d5c2f64a..0de66404d 100644
--- a/dev-util/eclipse-parallel-bin/Manifest
+++ b/dev-util/eclipse-parallel-bin/Manifest
@@ -1,2 +1,4 @@
 DIST eclipse-parallel-2021-06-R-linux-gtk-aarch64.tar.gz 335511560 BLAKE2B 71b277b38335df3e93db1bfb5920cfe692b2237f25669e13e83e779b53459913e9e6d904394e4e63e79ab668a899796d6e00ffe5db118ed46238c5da06e0602d SHA512 9d2e9d89f5021897292dd824a4e9cd495b707958d3c4f4afc0f19e0638af41787824e6b72b6bc84beaea54cb488b9de7d1b4a75ab7e341d54f0e1c0de40d228a
 DIST eclipse-parallel-2021-06-R-linux-gtk-x86_64.tar.gz 335565165 BLAKE2B d4c42681e0d5d1cccd83391776779ef82d429675ce4ae74dbd04edcd84aa1a9e146365a157f4168fdff763d78acfa8b4021cac7152ebaae02ceca6c727d0ab4b SHA512 61609e2d4455f1fa77928b90506f5c00da91e96635ba1011a7db5c43db45ea534155b202aadfc1693bf48c213af505704ad1599d9444160f5520dba80808cfcb
+DIST eclipse-parallel-2021-09-R-linux-gtk-aarch64.tar.gz 338674794 BLAKE2B fd64fc2f126a4bf7518213d4e30a70233729df661ce13d7ef8c16ed72435781488a5aadd53c952bce9608ecc318da49c4ee57867146b745e23b23cf9a8ffa8e1 SHA512 f8e8eb60cc50130343692ddd773c66a920ccea67af2886f7c41f56f56a59babb5cc44210914a07cfb6f7bed690b501b9c2515377794128dae4d7a9834262b0a9
+DIST eclipse-parallel-2021-09-R-linux-gtk-x86_64.tar.gz 338718848 BLAKE2B 0cea9d26a2b4e8dd8afb787e6736f49810a032f157b39e5dd8e15ebd6dc1de479e28a35f5cbeb4330aee95f5aead618e4cfb86ce5ae0f502f1bd11c9c3a2f1a9 SHA512 2ff7d935053abdeb33f29f1cbedbf1a6a4872cc59acc2681d07b8adf09ce57cde2b24dc388262b1963ef4984b341ae102f79ef380635da06325045d09ce9b9b2

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.21.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.21.ebuild
new file mode 100644
index 000000000..6dcc00c1c
--- /dev/null
+++ b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.21.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop eutils xdg
+
+MY_PN="eclipse"
+MY_PV="2021-09"
+DESCRIPTION="Eclipse IDE for Scientific Computing (C, C++, Fortran)"
+HOMEPAGE="https://www.eclipse.org/"
+SRC_URI="
+	amd64? ( https://download.eclipse.org/technology/epp/downloads/release/${MY_PV}/R/eclipse-parallel-${MY_PV}-R-linux-gtk-x86_64.tar.gz )
+	arm64? ( https://download.eclipse.org/technology/epp/downloads/release/${MY_PV}/R/eclipse-parallel-${MY_PV}-R-linux-gtk-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-bin:11 dev-java/openjdk-jre-bin:11 dev-java/openjdk-sts-bin:15 )
+	x11-libs/gtk+:3
+"
+
+QA_FLAGS_IGNORED="
+	/opt/eclipse-parallel-bin/eclipse
+	/opt/eclipse-parallel-bin/plugins/org.eclipse.equinox.launcher.gtk.linux.*/eclipse_*.so
+"
+
+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"
+
+	doicon -s 48 plugins/org.eclipse.platform_4.21.0.v20210906-0500/eclipse48.png
+	make_desktop_entry eclipse-parallel "Eclipse IDE Parallel ${MY_PV}" eclipse48 "Development;" || die "Failed making desktop entry!"
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/
@ 2021-09-26 23:16 Sergey Torokhov
  0 siblings, 0 replies; 22+ messages in thread
From: Sergey Torokhov @ 2021-09-26 23:16 UTC (permalink / raw
  To: gentoo-commits

commit:     acaa9e19e72d68484e08ef2615cdf1f82ad35dde
Author:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Sun Sep 26 23:12:15 2021 +0000
Commit:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
CommitDate: Sun Sep 26 23:12:15 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=acaa9e19

dev-util/eclipse-parallel-bin: inherit wrapper,rm eutils. Respect {LD,C}FLAGS

Try to respect LDFLAGS and CFLAGS by updating regular expression

Closes: https://bugs.gentoo.org/814977
Closes: https://bugs.gentoo.org/814980

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

 .../eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild     | 11 ++++++-----
 .../eclipse-parallel-bin/eclipse-parallel-bin-4.21.ebuild     |  4 ++--
 2 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild
index d8106ff52..2d212497f 100644
--- a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild
+++ b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild
@@ -3,14 +3,15 @@
 
 EAPI=7
 
-inherit desktop eutils xdg
+inherit desktop wrapper xdg
 
 MY_PN="eclipse"
+MY_PV="2021-06"
 DESCRIPTION="Eclipse IDE for Scientific Computing (C, C++, Fortran)"
 HOMEPAGE="https://www.eclipse.org/"
 SRC_URI="
-	amd64? ( https://download.eclipse.org/technology/epp/downloads/release/2021-06/R/eclipse-parallel-2021-06-R-linux-gtk-x86_64.tar.gz )
-	arm64? ( https://download.eclipse.org/technology/epp/downloads/release/2021-06/R/eclipse-parallel-2021-06-R-linux-gtk-aarch64.tar.gz )
+	amd64? ( https://download.eclipse.org/technology/epp/downloads/release/${MY_PV}/R/eclipse-parallel-${MY_PV}-R-linux-gtk-x86_64.tar.gz )
+	arm64? ( https://download.eclipse.org/technology/epp/downloads/release/${MY_PV}/R/eclipse-parallel-${MY_PV}-R-linux-gtk-aarch64.tar.gz )
 "
 
 S="${WORKDIR}/${MY_PN}"
@@ -27,7 +28,7 @@ RDEPEND="
 
 QA_FLAGS_IGNORED="
 	/opt/eclipse-parallel-bin/eclipse
-	/opt/eclipse-parallel-bin/plugins/org.eclipse.equinox.launcher.gtk.linux.*/eclipse_*.so
+	/opt/eclipse-parallel-bin/plugins/org.eclipse.equinox.launcher.gtk.linux[.].*/eclipse_.*[.]so
 "
 
 src_install() {
@@ -39,5 +40,5 @@ src_install() {
 	make_wrapper ${PN%-*} "/opt/${PN}/${MY_PN} -vm /opt/openjdk*/bin/java" "" "/opt/${PN}" "/opt/bin"
 
 	doicon -s 48 plugins/org.eclipse.platform_4.20.0.v20210611-1600/eclipse48.png
-	make_desktop_entry eclipse-parallel "Eclipse IDE Parallel 2021-06" eclipse48 "Development;" || die "Failed making desktop entry!"
+	make_desktop_entry eclipse-parallel "Eclipse IDE Parallel ${MY_PV}" eclipse48 "Development;" || die "Failed making desktop entry!"
 }

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.21.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.21.ebuild
index 6dcc00c1c..e42021af5 100644
--- a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.21.ebuild
+++ b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.21.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit desktop eutils xdg
+inherit desktop wrapper xdg
 
 MY_PN="eclipse"
 MY_PV="2021-09"
@@ -28,7 +28,7 @@ RDEPEND="
 
 QA_FLAGS_IGNORED="
 	/opt/eclipse-parallel-bin/eclipse
-	/opt/eclipse-parallel-bin/plugins/org.eclipse.equinox.launcher.gtk.linux.*/eclipse_*.so
+	/opt/eclipse-parallel-bin/plugins/org.eclipse.equinox.launcher.gtk.linux[.].*/eclipse_.*[.]so
 "
 
 src_install() {


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/
@ 2021-12-15 22:51 Sergey Torokhov
  0 siblings, 0 replies; 22+ messages in thread
From: Sergey Torokhov @ 2021-12-15 22:51 UTC (permalink / raw
  To: gentoo-commits

commit:     83f56faf3f33d31c3f3c9e70b80df107e42005fc
Author:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Wed Dec 15 22:50:07 2021 +0000
Commit:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
CommitDate: Wed Dec 15 22:50:07 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=83f56faf

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

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

 dev-util/eclipse-parallel-bin/Manifest             |  2 +
 .../eclipse-parallel-bin-4.22.ebuild               | 49 ++++++++++++++++++++++
 2 files changed, 51 insertions(+)

diff --git a/dev-util/eclipse-parallel-bin/Manifest b/dev-util/eclipse-parallel-bin/Manifest
index 0de66404d..d1c6dc110 100644
--- a/dev-util/eclipse-parallel-bin/Manifest
+++ b/dev-util/eclipse-parallel-bin/Manifest
@@ -2,3 +2,5 @@ DIST eclipse-parallel-2021-06-R-linux-gtk-aarch64.tar.gz 335511560 BLAKE2B 71b27
 DIST eclipse-parallel-2021-06-R-linux-gtk-x86_64.tar.gz 335565165 BLAKE2B d4c42681e0d5d1cccd83391776779ef82d429675ce4ae74dbd04edcd84aa1a9e146365a157f4168fdff763d78acfa8b4021cac7152ebaae02ceca6c727d0ab4b SHA512 61609e2d4455f1fa77928b90506f5c00da91e96635ba1011a7db5c43db45ea534155b202aadfc1693bf48c213af505704ad1599d9444160f5520dba80808cfcb
 DIST eclipse-parallel-2021-09-R-linux-gtk-aarch64.tar.gz 338674794 BLAKE2B fd64fc2f126a4bf7518213d4e30a70233729df661ce13d7ef8c16ed72435781488a5aadd53c952bce9608ecc318da49c4ee57867146b745e23b23cf9a8ffa8e1 SHA512 f8e8eb60cc50130343692ddd773c66a920ccea67af2886f7c41f56f56a59babb5cc44210914a07cfb6f7bed690b501b9c2515377794128dae4d7a9834262b0a9
 DIST eclipse-parallel-2021-09-R-linux-gtk-x86_64.tar.gz 338718848 BLAKE2B 0cea9d26a2b4e8dd8afb787e6736f49810a032f157b39e5dd8e15ebd6dc1de479e28a35f5cbeb4330aee95f5aead618e4cfb86ce5ae0f502f1bd11c9c3a2f1a9 SHA512 2ff7d935053abdeb33f29f1cbedbf1a6a4872cc59acc2681d07b8adf09ce57cde2b24dc388262b1963ef4984b341ae102f79ef380635da06325045d09ce9b9b2
+DIST eclipse-parallel-2021-12-R-linux-gtk-aarch64.tar.gz 322857025 BLAKE2B 4bfcfff5ba39199a434c123de98d087ba452e520e450b4621a947c97ca60815622ed20f7b11027992a9549bb218870fdbce8dddbc0b4b86e7ce35afe5eb0d8db SHA512 c5c8d39fda3d10bb80cf2b0ca3a918b00c5df1541e0258839b976b6fd7830ba929ffce1587fbeaf43082303ca19d0a9881ebe374db84cc91883f50c15ace9105
+DIST eclipse-parallel-2021-12-R-linux-gtk-x86_64.tar.gz 322889015 BLAKE2B 71fd13913965d677a1402df61371f838ec75449f43c43d4a2db6efa1b9ac3ca147895e7dabe85d47f9be060a2695380f1244f5d0d61b47b1ccf41ac508a1b956 SHA512 58996bf346e774386056124c8b7b4d8562f9766f873d088d922d33d40b4dc60ffbea919c2a88a2f16fc357ea7383c81de45f14c0dd93a594a773d7aa8bca66ec

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.22.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.22.ebuild
new file mode 100644
index 000000000..7d6c0f2c8
--- /dev/null
+++ b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.22.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop wrapper xdg
+
+MY_PN="eclipse"
+MY_PV="2021-12"
+DESCRIPTION="Eclipse IDE for Scientific Computing (C, C++, Fortran)"
+HOMEPAGE="https://www.eclipse.org/"
+SRC_URI="
+	amd64? ( https://download.eclipse.org/technology/epp/downloads/release/${MY_PV}/R/eclipse-parallel-${MY_PV}-R-linux-gtk-x86_64.tar.gz )
+	arm64? ( https://download.eclipse.org/technology/epp/downloads/release/${MY_PV}/R/eclipse-parallel-${MY_PV}-R-linux-gtk-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
+		dev-java/openjdk-sts-bin:15
+	)
+	x11-libs/gtk+:3
+"
+
+QA_FLAGS_IGNORED="
+	/opt/eclipse-parallel-bin/eclipse
+	/opt/eclipse-parallel-bin/plugins/org.eclipse.equinox.launcher.gtk.linux[.].*/eclipse_.*[.]so
+"
+
+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"
+
+	doicon -s 48 plugins/org.eclipse.platform_4.22.0.v20211124-1800/eclipse48.png
+	make_desktop_entry eclipse-parallel "Eclipse IDE Parallel ${MY_PV}" eclipse48 "Development;" || die "Failed making desktop entry!"
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/
  2022-01-13 15:36 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
@ 2022-01-13 15:36 ` Andrew Ammerlaan
  0 siblings, 0 replies; 22+ messages in thread
From: Andrew Ammerlaan @ 2022-01-13 15:36 UTC (permalink / raw
  To: gentoo-commits

commit:     956fa65466e9029b7472b232f78a2e72664fa1f2
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 13 15:36:18 2022 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Thu Jan 13 15:36:18 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=956fa654

dev-util/eclipse-parallel-bin: drop removed dependency

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild | 4 ++--
 dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.21.ebuild | 4 ++--
 dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.22.ebuild | 3 +--
 3 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild
index 2d212497f..0b8381357 100644
--- a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild
+++ b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -22,7 +22,7 @@ KEYWORDS="-* ~amd64 ~arm64"
 RESTRICT="mirror"
 
 RDEPEND="
-	|| ( dev-java/openjdk:11 dev-java/openjdk-bin:11 dev-java/openjdk-jre-bin:11 dev-java/openjdk-sts-bin:15 )
+	|| ( dev-java/openjdk:11 dev-java/openjdk-bin:11 dev-java/openjdk-jre-bin:11 )
 	x11-libs/gtk+:3
 "
 

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.21.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.21.ebuild
index e42021af5..87d8d1567 100644
--- a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.21.ebuild
+++ b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.21.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -22,7 +22,7 @@ KEYWORDS="-* ~amd64 ~arm64"
 RESTRICT="mirror"
 
 RDEPEND="
-	|| ( dev-java/openjdk:11 dev-java/openjdk-bin:11 dev-java/openjdk-jre-bin:11 dev-java/openjdk-sts-bin:15 )
+	|| ( dev-java/openjdk:11 dev-java/openjdk-bin:11 dev-java/openjdk-jre-bin:11 )
 	x11-libs/gtk+:3
 "
 

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.22.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.22.ebuild
index 7d6c0f2c8..6c8bff73d 100644
--- a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.22.ebuild
+++ b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.22.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -26,7 +26,6 @@ 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
-		dev-java/openjdk-sts-bin:15
 	)
 	x11-libs/gtk+:3
 "


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/
@ 2022-04-16 12:06 Sergey Torokhov
  0 siblings, 0 replies; 22+ messages in thread
From: Sergey Torokhov @ 2022-04-16 12:06 UTC (permalink / raw
  To: gentoo-commits

commit:     823816b0e0cc98a55059313ae451a9eee3827128
Author:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Sat Apr 16 12:05:48 2022 +0000
Commit:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
CommitDate: Sat Apr 16 12:05:48 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=823816b0

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

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

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

diff --git a/dev-util/eclipse-parallel-bin/Manifest b/dev-util/eclipse-parallel-bin/Manifest
index d1c6dc110..d9a40858d 100644
--- a/dev-util/eclipse-parallel-bin/Manifest
+++ b/dev-util/eclipse-parallel-bin/Manifest
@@ -4,3 +4,5 @@ DIST eclipse-parallel-2021-09-R-linux-gtk-aarch64.tar.gz 338674794 BLAKE2B fd64f
 DIST eclipse-parallel-2021-09-R-linux-gtk-x86_64.tar.gz 338718848 BLAKE2B 0cea9d26a2b4e8dd8afb787e6736f49810a032f157b39e5dd8e15ebd6dc1de479e28a35f5cbeb4330aee95f5aead618e4cfb86ce5ae0f502f1bd11c9c3a2f1a9 SHA512 2ff7d935053abdeb33f29f1cbedbf1a6a4872cc59acc2681d07b8adf09ce57cde2b24dc388262b1963ef4984b341ae102f79ef380635da06325045d09ce9b9b2
 DIST eclipse-parallel-2021-12-R-linux-gtk-aarch64.tar.gz 322857025 BLAKE2B 4bfcfff5ba39199a434c123de98d087ba452e520e450b4621a947c97ca60815622ed20f7b11027992a9549bb218870fdbce8dddbc0b4b86e7ce35afe5eb0d8db SHA512 c5c8d39fda3d10bb80cf2b0ca3a918b00c5df1541e0258839b976b6fd7830ba929ffce1587fbeaf43082303ca19d0a9881ebe374db84cc91883f50c15ace9105
 DIST eclipse-parallel-2021-12-R-linux-gtk-x86_64.tar.gz 322889015 BLAKE2B 71fd13913965d677a1402df61371f838ec75449f43c43d4a2db6efa1b9ac3ca147895e7dabe85d47f9be060a2695380f1244f5d0d61b47b1ccf41ac508a1b956 SHA512 58996bf346e774386056124c8b7b4d8562f9766f873d088d922d33d40b4dc60ffbea919c2a88a2f16fc357ea7383c81de45f14c0dd93a594a773d7aa8bca66ec
+DIST eclipse-parallel-2022-03-R-linux-gtk-aarch64.tar.gz 445580573 BLAKE2B 30eb4d69f06e93d9f0065f1a97c798bb789fa4b2d73c430ef884f96c8eb1d3f0d12640b6e40c591f106e81c6d19ad487ed82091ede3e0ec797183afb26371083 SHA512 4bd02b24f84ad57728abc3f818a7c60d7e0913fe2415f8260546bcbc78f24aa259b876478353586df37d1e6d0d0bde43de15de0d20cc327b4c169c0abc295530
+DIST eclipse-parallel-2022-03-R-linux-gtk-x86_64.tar.gz 446729867 BLAKE2B 9ea786dc649333a5995224baae1229229718376c51d459f271457d6994666303638ab51d842c58fc9fa3dae56661a0634d029b01ee1a4f32694c000bf22631a5 SHA512 c6a656cf2322db721f60a8253deb70233c05f8c730681b50ebc772addfb414be97c67896b8bab7840dc805e64fca6d126aa67a8b8e9074bb82cbb096c3a62ceb

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.23.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.23.ebuild
new file mode 100644
index 000000000..7df5276ae
--- /dev/null
+++ b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.23.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop wrapper xdg
+
+MY_PN="eclipse"
+MY_PV="2022-03"
+DESCRIPTION="Eclipse IDE for Scientific Computing (C, C++, Fortran)"
+HOMEPAGE="https://www.eclipse.org/"
+SRC_URI="
+	amd64? ( https://download.eclipse.org/technology/epp/downloads/release/${MY_PV}/R/eclipse-parallel-${MY_PV}-R-linux-gtk-x86_64.tar.gz )
+	arm64? ( https://download.eclipse.org/technology/epp/downloads/release/${MY_PV}/R/eclipse-parallel-${MY_PV}-R-linux-gtk-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="
+	/opt/eclipse-parallel-bin/eclipse
+	/opt/eclipse-parallel-bin/plugins/org.eclipse.equinox.launcher.gtk.linux[.].*/eclipse_.*[.]so
+"
+
+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"
+
+	doicon -s 48 plugins/org.eclipse.platform_4.23.0.v20220308-0310/eclipse48.png
+	make_desktop_entry eclipse-parallel "Eclipse IDE Parallel ${MY_PV}" eclipse48 "Development;" || die "Failed making desktop entry!"
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/
@ 2022-04-17 12:42 Sergey Torokhov
  0 siblings, 0 replies; 22+ messages in thread
From: Sergey Torokhov @ 2022-04-17 12:42 UTC (permalink / raw
  To: gentoo-commits

commit:     be22c7576df2934f6777611c213755d1c4930dca
Author:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Sun Apr 17 12:40:52 2022 +0000
Commit:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
CommitDate: Sun Apr 17 12:40:52 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=be22c757

dev-util/eclipse-parallel-bin: use mirror url for SRC_URI instead of direct url

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

 dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.22.ebuild | 6 ++++--
 dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.23.ebuild | 6 ++++--
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.22.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.22.ebuild
index 6c8bff73d..4be4eadc7 100644
--- a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.22.ebuild
+++ b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.22.ebuild
@@ -7,11 +7,13 @@ inherit desktop wrapper xdg
 
 MY_PN="eclipse"
 MY_PV="2021-12"
+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? ( https://download.eclipse.org/technology/epp/downloads/release/${MY_PV}/R/eclipse-parallel-${MY_PV}-R-linux-gtk-x86_64.tar.gz )
-	arm64? ( https://download.eclipse.org/technology/epp/downloads/release/${MY_PV}/R/eclipse-parallel-${MY_PV}-R-linux-gtk-aarch64.tar.gz )
+	amd64? ( ${SRC_BASE}-x86_64.tar.gz )
+	arm64? ( ${SRC_BASE}-aarch64.tar.gz )
 "
 
 S="${WORKDIR}/${MY_PN}"

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.23.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.23.ebuild
index 7df5276ae..0a96782e5 100644
--- a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.23.ebuild
+++ b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.23.ebuild
@@ -7,11 +7,13 @@ inherit desktop wrapper xdg
 
 MY_PN="eclipse"
 MY_PV="2022-03"
+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? ( https://download.eclipse.org/technology/epp/downloads/release/${MY_PV}/R/eclipse-parallel-${MY_PV}-R-linux-gtk-x86_64.tar.gz )
-	arm64? ( https://download.eclipse.org/technology/epp/downloads/release/${MY_PV}/R/eclipse-parallel-${MY_PV}-R-linux-gtk-aarch64.tar.gz )
+	amd64? ( ${SRC_BASE}-x86_64.tar.gz )
+	arm64? ( ${SRC_BASE}-aarch64.tar.gz )
 "
 
 S="${WORKDIR}/${MY_PN}"


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/
@ 2022-04-17 12:42 Sergey Torokhov
  0 siblings, 0 replies; 22+ messages in thread
From: Sergey Torokhov @ 2022-04-17 12:42 UTC (permalink / raw
  To: gentoo-commits

commit:     53e75d83e45f9d2aeea1b80aaf805385c2469742
Author:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Sun Apr 17 12:38:39 2022 +0000
Commit:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
CommitDate: Sun Apr 17 12:38:39 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=53e75d83

dev-util/eclipse-parallel-bin: drop old 4.20, 4.21

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

 dev-util/eclipse-parallel-bin/Manifest             |  4 --
 .../eclipse-parallel-bin-4.20.ebuild               | 44 ----------------------
 .../eclipse-parallel-bin-4.21.ebuild               | 44 ----------------------
 3 files changed, 92 deletions(-)

diff --git a/dev-util/eclipse-parallel-bin/Manifest b/dev-util/eclipse-parallel-bin/Manifest
index d9a40858d..be4fead6d 100644
--- a/dev-util/eclipse-parallel-bin/Manifest
+++ b/dev-util/eclipse-parallel-bin/Manifest
@@ -1,7 +1,3 @@
-DIST eclipse-parallel-2021-06-R-linux-gtk-aarch64.tar.gz 335511560 BLAKE2B 71b277b38335df3e93db1bfb5920cfe692b2237f25669e13e83e779b53459913e9e6d904394e4e63e79ab668a899796d6e00ffe5db118ed46238c5da06e0602d SHA512 9d2e9d89f5021897292dd824a4e9cd495b707958d3c4f4afc0f19e0638af41787824e6b72b6bc84beaea54cb488b9de7d1b4a75ab7e341d54f0e1c0de40d228a
-DIST eclipse-parallel-2021-06-R-linux-gtk-x86_64.tar.gz 335565165 BLAKE2B d4c42681e0d5d1cccd83391776779ef82d429675ce4ae74dbd04edcd84aa1a9e146365a157f4168fdff763d78acfa8b4021cac7152ebaae02ceca6c727d0ab4b SHA512 61609e2d4455f1fa77928b90506f5c00da91e96635ba1011a7db5c43db45ea534155b202aadfc1693bf48c213af505704ad1599d9444160f5520dba80808cfcb
-DIST eclipse-parallel-2021-09-R-linux-gtk-aarch64.tar.gz 338674794 BLAKE2B fd64fc2f126a4bf7518213d4e30a70233729df661ce13d7ef8c16ed72435781488a5aadd53c952bce9608ecc318da49c4ee57867146b745e23b23cf9a8ffa8e1 SHA512 f8e8eb60cc50130343692ddd773c66a920ccea67af2886f7c41f56f56a59babb5cc44210914a07cfb6f7bed690b501b9c2515377794128dae4d7a9834262b0a9
-DIST eclipse-parallel-2021-09-R-linux-gtk-x86_64.tar.gz 338718848 BLAKE2B 0cea9d26a2b4e8dd8afb787e6736f49810a032f157b39e5dd8e15ebd6dc1de479e28a35f5cbeb4330aee95f5aead618e4cfb86ce5ae0f502f1bd11c9c3a2f1a9 SHA512 2ff7d935053abdeb33f29f1cbedbf1a6a4872cc59acc2681d07b8adf09ce57cde2b24dc388262b1963ef4984b341ae102f79ef380635da06325045d09ce9b9b2
 DIST eclipse-parallel-2021-12-R-linux-gtk-aarch64.tar.gz 322857025 BLAKE2B 4bfcfff5ba39199a434c123de98d087ba452e520e450b4621a947c97ca60815622ed20f7b11027992a9549bb218870fdbce8dddbc0b4b86e7ce35afe5eb0d8db SHA512 c5c8d39fda3d10bb80cf2b0ca3a918b00c5df1541e0258839b976b6fd7830ba929ffce1587fbeaf43082303ca19d0a9881ebe374db84cc91883f50c15ace9105
 DIST eclipse-parallel-2021-12-R-linux-gtk-x86_64.tar.gz 322889015 BLAKE2B 71fd13913965d677a1402df61371f838ec75449f43c43d4a2db6efa1b9ac3ca147895e7dabe85d47f9be060a2695380f1244f5d0d61b47b1ccf41ac508a1b956 SHA512 58996bf346e774386056124c8b7b4d8562f9766f873d088d922d33d40b4dc60ffbea919c2a88a2f16fc357ea7383c81de45f14c0dd93a594a773d7aa8bca66ec
 DIST eclipse-parallel-2022-03-R-linux-gtk-aarch64.tar.gz 445580573 BLAKE2B 30eb4d69f06e93d9f0065f1a97c798bb789fa4b2d73c430ef884f96c8eb1d3f0d12640b6e40c591f106e81c6d19ad487ed82091ede3e0ec797183afb26371083 SHA512 4bd02b24f84ad57728abc3f818a7c60d7e0913fe2415f8260546bcbc78f24aa259b876478353586df37d1e6d0d0bde43de15de0d20cc327b4c169c0abc295530

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild
deleted file mode 100644
index 0b8381357..000000000
--- a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.20.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit desktop wrapper xdg
-
-MY_PN="eclipse"
-MY_PV="2021-06"
-DESCRIPTION="Eclipse IDE for Scientific Computing (C, C++, Fortran)"
-HOMEPAGE="https://www.eclipse.org/"
-SRC_URI="
-	amd64? ( https://download.eclipse.org/technology/epp/downloads/release/${MY_PV}/R/eclipse-parallel-${MY_PV}-R-linux-gtk-x86_64.tar.gz )
-	arm64? ( https://download.eclipse.org/technology/epp/downloads/release/${MY_PV}/R/eclipse-parallel-${MY_PV}-R-linux-gtk-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-bin:11 dev-java/openjdk-jre-bin:11 )
-	x11-libs/gtk+:3
-"
-
-QA_FLAGS_IGNORED="
-	/opt/eclipse-parallel-bin/eclipse
-	/opt/eclipse-parallel-bin/plugins/org.eclipse.equinox.launcher.gtk.linux[.].*/eclipse_.*[.]so
-"
-
-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"
-
-	doicon -s 48 plugins/org.eclipse.platform_4.20.0.v20210611-1600/eclipse48.png
-	make_desktop_entry eclipse-parallel "Eclipse IDE Parallel ${MY_PV}" eclipse48 "Development;" || die "Failed making desktop entry!"
-}

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.21.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.21.ebuild
deleted file mode 100644
index 87d8d1567..000000000
--- a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.21.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit desktop wrapper xdg
-
-MY_PN="eclipse"
-MY_PV="2021-09"
-DESCRIPTION="Eclipse IDE for Scientific Computing (C, C++, Fortran)"
-HOMEPAGE="https://www.eclipse.org/"
-SRC_URI="
-	amd64? ( https://download.eclipse.org/technology/epp/downloads/release/${MY_PV}/R/eclipse-parallel-${MY_PV}-R-linux-gtk-x86_64.tar.gz )
-	arm64? ( https://download.eclipse.org/technology/epp/downloads/release/${MY_PV}/R/eclipse-parallel-${MY_PV}-R-linux-gtk-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-bin:11 dev-java/openjdk-jre-bin:11 )
-	x11-libs/gtk+:3
-"
-
-QA_FLAGS_IGNORED="
-	/opt/eclipse-parallel-bin/eclipse
-	/opt/eclipse-parallel-bin/plugins/org.eclipse.equinox.launcher.gtk.linux[.].*/eclipse_.*[.]so
-"
-
-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"
-
-	doicon -s 48 plugins/org.eclipse.platform_4.21.0.v20210906-0500/eclipse48.png
-	make_desktop_entry eclipse-parallel "Eclipse IDE Parallel ${MY_PV}" eclipse48 "Development;" || die "Failed making desktop entry!"
-}


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/
@ 2022-10-09 22:29 Sergey Torokhov
  0 siblings, 0 replies; 22+ messages in thread
From: Sergey Torokhov @ 2022-10-09 22:29 UTC (permalink / raw
  To: gentoo-commits

commit:     5461f983ef3829d153fbdc0ccf2598dd8e990f02
Author:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Sun Oct  9 22:28:48 2022 +0000
Commit:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
CommitDate: Sun Oct  9 22:28:48 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5461f983

dev-util/ecllipse-parallel-bin: 4.25 version bump

Closes: https://bugs.gentoo.org/859976

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

 dev-util/eclipse-parallel-bin/Manifest             |  2 +
 .../eclipse-parallel-bin-4.25.ebuild               | 51 ++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/dev-util/eclipse-parallel-bin/Manifest b/dev-util/eclipse-parallel-bin/Manifest
index be4fead6d..826cd37aa 100644
--- a/dev-util/eclipse-parallel-bin/Manifest
+++ b/dev-util/eclipse-parallel-bin/Manifest
@@ -2,3 +2,5 @@ DIST eclipse-parallel-2021-12-R-linux-gtk-aarch64.tar.gz 322857025 BLAKE2B 4bfcf
 DIST eclipse-parallel-2021-12-R-linux-gtk-x86_64.tar.gz 322889015 BLAKE2B 71fd13913965d677a1402df61371f838ec75449f43c43d4a2db6efa1b9ac3ca147895e7dabe85d47f9be060a2695380f1244f5d0d61b47b1ccf41ac508a1b956 SHA512 58996bf346e774386056124c8b7b4d8562f9766f873d088d922d33d40b4dc60ffbea919c2a88a2f16fc357ea7383c81de45f14c0dd93a594a773d7aa8bca66ec
 DIST eclipse-parallel-2022-03-R-linux-gtk-aarch64.tar.gz 445580573 BLAKE2B 30eb4d69f06e93d9f0065f1a97c798bb789fa4b2d73c430ef884f96c8eb1d3f0d12640b6e40c591f106e81c6d19ad487ed82091ede3e0ec797183afb26371083 SHA512 4bd02b24f84ad57728abc3f818a7c60d7e0913fe2415f8260546bcbc78f24aa259b876478353586df37d1e6d0d0bde43de15de0d20cc327b4c169c0abc295530
 DIST eclipse-parallel-2022-03-R-linux-gtk-x86_64.tar.gz 446729867 BLAKE2B 9ea786dc649333a5995224baae1229229718376c51d459f271457d6994666303638ab51d842c58fc9fa3dae56661a0634d029b01ee1a4f32694c000bf22631a5 SHA512 c6a656cf2322db721f60a8253deb70233c05f8c730681b50ebc772addfb414be97c67896b8bab7840dc805e64fca6d126aa67a8b8e9074bb82cbb096c3a62ceb
+DIST eclipse-parallel-2022-09-R-linux-gtk-aarch64.tar.gz 458827728 BLAKE2B 3cbf6157b54e415cb4da1d27c9b5145c5a7ea3108d9b54defab86c6c42acdc2a642fb848f485bb58508f4924a66ec1d763f866d2b1adabf3f017370a8c4bde1b SHA512 afdad4f8c81110f0cd5eae75c8dcb218bfa58b094ac0b180b91e6d7eef2def58f4a857367f8b9e96a6e1d0b223a0350c2be1ca9d9edf1d434a0a24f7383caf48
+DIST eclipse-parallel-2022-09-R-linux-gtk-x86_64.tar.gz 459079255 BLAKE2B 478dfd07b0e14800e600960d530e32d3589fa67dfa2939a57e2d132f8ad5d9d6b900c9fc12c511073585c5a2b610b89350535ed2a2e22f9f55efe513b0cec927 SHA512 fc25b8bb7a4ff8968e81a293f5047cebf888f2c85ed7f5ede872c20078819d53171d6b3c59e700d9d4045692582b9b2333476ff08bc50c1da911f6e77ac9bb33

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.25.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.25.ebuild
new file mode 100644
index 000000000..5df1d1cfd
--- /dev/null
+++ b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.25.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop wrapper xdg
+
+MY_PN="eclipse"
+MY_PV="2022-09"
+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="
+	/opt/eclipse-parallel-bin/eclipse
+	/opt/eclipse-parallel-bin/plugins/org.eclipse.equinox.launcher.gtk.linux[.].*/eclipse_.*[.]so
+	/opt/eclipse-parallel-bin/plugins/*
+"
+
+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"
+
+	doicon -s 48 plugins/org.eclipse.platform_4.25.0.v20220831-1800/eclipse48.png
+	make_desktop_entry eclipse-parallel "Eclipse IDE Parallel ${MY_PV}" eclipse48 "Development;" || die "Failed making desktop entry!"
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/
@ 2022-10-29 22:05 Sergey Torokhov
  0 siblings, 0 replies; 22+ messages in thread
From: Sergey Torokhov @ 2022-10-29 22:05 UTC (permalink / raw
  To: gentoo-commits

commit:     d990cc16ac9bdb8f96b47edb11b77af13ee145d7
Author:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Sat Oct 29 22:05:04 2022 +0000
Commit:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
CommitDate: Sat Oct 29 22:05:04 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d990cc16

dev-util/eclipse-parallel-bin: drop old 4.22

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

 dev-util/eclipse-parallel-bin/Manifest             |  2 -
 .../eclipse-parallel-bin-4.22.ebuild               | 50 ----------------------
 2 files changed, 52 deletions(-)

diff --git a/dev-util/eclipse-parallel-bin/Manifest b/dev-util/eclipse-parallel-bin/Manifest
index 826cd37aa..2ee337c57 100644
--- a/dev-util/eclipse-parallel-bin/Manifest
+++ b/dev-util/eclipse-parallel-bin/Manifest
@@ -1,5 +1,3 @@
-DIST eclipse-parallel-2021-12-R-linux-gtk-aarch64.tar.gz 322857025 BLAKE2B 4bfcfff5ba39199a434c123de98d087ba452e520e450b4621a947c97ca60815622ed20f7b11027992a9549bb218870fdbce8dddbc0b4b86e7ce35afe5eb0d8db SHA512 c5c8d39fda3d10bb80cf2b0ca3a918b00c5df1541e0258839b976b6fd7830ba929ffce1587fbeaf43082303ca19d0a9881ebe374db84cc91883f50c15ace9105
-DIST eclipse-parallel-2021-12-R-linux-gtk-x86_64.tar.gz 322889015 BLAKE2B 71fd13913965d677a1402df61371f838ec75449f43c43d4a2db6efa1b9ac3ca147895e7dabe85d47f9be060a2695380f1244f5d0d61b47b1ccf41ac508a1b956 SHA512 58996bf346e774386056124c8b7b4d8562f9766f873d088d922d33d40b4dc60ffbea919c2a88a2f16fc357ea7383c81de45f14c0dd93a594a773d7aa8bca66ec
 DIST eclipse-parallel-2022-03-R-linux-gtk-aarch64.tar.gz 445580573 BLAKE2B 30eb4d69f06e93d9f0065f1a97c798bb789fa4b2d73c430ef884f96c8eb1d3f0d12640b6e40c591f106e81c6d19ad487ed82091ede3e0ec797183afb26371083 SHA512 4bd02b24f84ad57728abc3f818a7c60d7e0913fe2415f8260546bcbc78f24aa259b876478353586df37d1e6d0d0bde43de15de0d20cc327b4c169c0abc295530
 DIST eclipse-parallel-2022-03-R-linux-gtk-x86_64.tar.gz 446729867 BLAKE2B 9ea786dc649333a5995224baae1229229718376c51d459f271457d6994666303638ab51d842c58fc9fa3dae56661a0634d029b01ee1a4f32694c000bf22631a5 SHA512 c6a656cf2322db721f60a8253deb70233c05f8c730681b50ebc772addfb414be97c67896b8bab7840dc805e64fca6d126aa67a8b8e9074bb82cbb096c3a62ceb
 DIST eclipse-parallel-2022-09-R-linux-gtk-aarch64.tar.gz 458827728 BLAKE2B 3cbf6157b54e415cb4da1d27c9b5145c5a7ea3108d9b54defab86c6c42acdc2a642fb848f485bb58508f4924a66ec1d763f866d2b1adabf3f017370a8c4bde1b SHA512 afdad4f8c81110f0cd5eae75c8dcb218bfa58b094ac0b180b91e6d7eef2def58f4a857367f8b9e96a6e1d0b223a0350c2be1ca9d9edf1d434a0a24f7383caf48

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.22.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.22.ebuild
deleted file mode 100644
index 4be4eadc7..000000000
--- a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.22.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit desktop wrapper xdg
-
-MY_PN="eclipse"
-MY_PV="2021-12"
-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="
-	/opt/eclipse-parallel-bin/eclipse
-	/opt/eclipse-parallel-bin/plugins/org.eclipse.equinox.launcher.gtk.linux[.].*/eclipse_.*[.]so
-"
-
-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"
-
-	doicon -s 48 plugins/org.eclipse.platform_4.22.0.v20211124-1800/eclipse48.png
-	make_desktop_entry eclipse-parallel "Eclipse IDE Parallel ${MY_PV}" eclipse48 "Development;" || die "Failed making desktop entry!"
-}


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/
@ 2022-12-09 17:10 Sergey Torokhov
  0 siblings, 0 replies; 22+ messages in thread
From: Sergey Torokhov @ 2022-12-09 17:10 UTC (permalink / raw
  To: gentoo-commits

commit:     03b892e28eff29a605528ea45f8ef284add4678d
Author:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Fri Dec  9 17:08:30 2022 +0000
Commit:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
CommitDate: Fri Dec  9 17:09:45 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=03b892e2

dev-util/eclipse-parallel-bin: update QA_FLAGS_IGNORED

Closes: https://bugs.gentoo.org/884665
Closes: https://bugs.gentoo.org/884667

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

 dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.23.ebuild | 5 +----
 dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.25.ebuild | 6 +-----
 2 files changed, 2 insertions(+), 9 deletions(-)

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.23.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.23.ebuild
index 0a96782e5..5b6fef550 100644
--- a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.23.ebuild
+++ b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.23.ebuild
@@ -32,10 +32,7 @@ RDEPEND="
 	x11-libs/gtk+:3
 "
 
-QA_FLAGS_IGNORED="
-	/opt/eclipse-parallel-bin/eclipse
-	/opt/eclipse-parallel-bin/plugins/org.eclipse.equinox.launcher.gtk.linux[.].*/eclipse_.*[.]so
-"
+QA_FLAGS_IGNORED=".*"
 
 src_install() {
 	insinto "/opt/${PN}"

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.25.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.25.ebuild
index 5df1d1cfd..36c0f76cf 100644
--- a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.25.ebuild
+++ b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.25.ebuild
@@ -32,11 +32,7 @@ RDEPEND="
 	x11-libs/gtk+:3
 "
 
-QA_FLAGS_IGNORED="
-	/opt/eclipse-parallel-bin/eclipse
-	/opt/eclipse-parallel-bin/plugins/org.eclipse.equinox.launcher.gtk.linux[.].*/eclipse_.*[.]so
-	/opt/eclipse-parallel-bin/plugins/*
-"
+QA_FLAGS_IGNORED=".*"
 
 src_install() {
 	insinto "/opt/${PN}"


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/
@ 2022-12-09 17:21 Sergey Torokhov
  0 siblings, 0 replies; 22+ messages in thread
From: Sergey Torokhov @ 2022-12-09 17:21 UTC (permalink / raw
  To: gentoo-commits

commit:     26c25d170a2f59f09100bafd38e740f3fcbd109c
Author:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Fri Dec  9 17:20:36 2022 +0000
Commit:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
CommitDate: Fri Dec  9 17:20:36 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=26c25d17

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

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

 dev-util/eclipse-parallel-bin/Manifest             |  2 +
 .../eclipse-parallel-bin-4.26.ebuild               | 47 ++++++++++++++++++++++
 2 files changed, 49 insertions(+)

diff --git a/dev-util/eclipse-parallel-bin/Manifest b/dev-util/eclipse-parallel-bin/Manifest
index 2ee337c57..80fd3c6bb 100644
--- a/dev-util/eclipse-parallel-bin/Manifest
+++ b/dev-util/eclipse-parallel-bin/Manifest
@@ -2,3 +2,5 @@ DIST eclipse-parallel-2022-03-R-linux-gtk-aarch64.tar.gz 445580573 BLAKE2B 30eb4
 DIST eclipse-parallel-2022-03-R-linux-gtk-x86_64.tar.gz 446729867 BLAKE2B 9ea786dc649333a5995224baae1229229718376c51d459f271457d6994666303638ab51d842c58fc9fa3dae56661a0634d029b01ee1a4f32694c000bf22631a5 SHA512 c6a656cf2322db721f60a8253deb70233c05f8c730681b50ebc772addfb414be97c67896b8bab7840dc805e64fca6d126aa67a8b8e9074bb82cbb096c3a62ceb
 DIST eclipse-parallel-2022-09-R-linux-gtk-aarch64.tar.gz 458827728 BLAKE2B 3cbf6157b54e415cb4da1d27c9b5145c5a7ea3108d9b54defab86c6c42acdc2a642fb848f485bb58508f4924a66ec1d763f866d2b1adabf3f017370a8c4bde1b SHA512 afdad4f8c81110f0cd5eae75c8dcb218bfa58b094ac0b180b91e6d7eef2def58f4a857367f8b9e96a6e1d0b223a0350c2be1ca9d9edf1d434a0a24f7383caf48
 DIST eclipse-parallel-2022-09-R-linux-gtk-x86_64.tar.gz 459079255 BLAKE2B 478dfd07b0e14800e600960d530e32d3589fa67dfa2939a57e2d132f8ad5d9d6b900c9fc12c511073585c5a2b610b89350535ed2a2e22f9f55efe513b0cec927 SHA512 fc25b8bb7a4ff8968e81a293f5047cebf888f2c85ed7f5ede872c20078819d53171d6b3c59e700d9d4045692582b9b2333476ff08bc50c1da911f6e77ac9bb33
+DIST eclipse-parallel-2022-12-R-linux-gtk-aarch64.tar.gz 456213881 BLAKE2B 0e8183c88a203608b80974f937db93a226a69c30f8cd8b6751b62f01c1308d13842bde4a89cdef1da6a313a3c74e62d5b4d2b91d4c7c342f94b14d261c1be271 SHA512 705ca4595811bf34912a4ed4dba1e2494a63bdede41327c2cc15809d86d6e282329067717fdfc2dc59166b595761513f6be938df2f20ca0344bf770894c92015
+DIST eclipse-parallel-2022-12-R-linux-gtk-x86_64.tar.gz 456460848 BLAKE2B b9e5637120b7a2b037373beee0c46a1a3dfd3da477ababef83f3212a4f1fdd78bc240627e8b8a3e5e6cb5c0d0d92b1b823ad4cb1fbe7aa93a0dd3de61d066e88 SHA512 ea13ee9787b343e5ee061155ea3b63b5a369862e102520becfd5efc98bd728440fbf2d22b81a42ad17a646ddef003a6ac7ddeac5f10ac44b6b20712470e0c261

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.26.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.26.ebuild
new file mode 100644
index 000000000..2e9868853
--- /dev/null
+++ b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.26.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop wrapper xdg
+
+MY_PN="eclipse"
+MY_PV="2022-12"
+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"
+
+	doicon -s 48 plugins/org.eclipse.platform_4.26.0.v20221123-1800/eclipse48.png
+	make_desktop_entry eclipse-parallel "Eclipse IDE Parallel ${MY_PV}" eclipse48 "Development;" || die "Failed making desktop entry!"
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/
@ 2023-01-18 21:32 Sergey Torokhov
  0 siblings, 0 replies; 22+ messages in thread
From: Sergey Torokhov @ 2023-01-18 21:32 UTC (permalink / raw
  To: gentoo-commits

commit:     86c28910f5f141df7c186ae029ae3062adf87a0d
Author:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Wed Jan 18 21:32:14 2023 +0000
Commit:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
CommitDate: Wed Jan 18 21:32:14 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=86c28910

dev-util/eclipse-parallel-bin: drop 4.23

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

 dev-util/eclipse-parallel-bin/Manifest             |  2 -
 .../eclipse-parallel-bin-4.23.ebuild               | 47 ----------------------
 2 files changed, 49 deletions(-)

diff --git a/dev-util/eclipse-parallel-bin/Manifest b/dev-util/eclipse-parallel-bin/Manifest
index 80fd3c6bb..e294d7cca 100644
--- a/dev-util/eclipse-parallel-bin/Manifest
+++ b/dev-util/eclipse-parallel-bin/Manifest
@@ -1,5 +1,3 @@
-DIST eclipse-parallel-2022-03-R-linux-gtk-aarch64.tar.gz 445580573 BLAKE2B 30eb4d69f06e93d9f0065f1a97c798bb789fa4b2d73c430ef884f96c8eb1d3f0d12640b6e40c591f106e81c6d19ad487ed82091ede3e0ec797183afb26371083 SHA512 4bd02b24f84ad57728abc3f818a7c60d7e0913fe2415f8260546bcbc78f24aa259b876478353586df37d1e6d0d0bde43de15de0d20cc327b4c169c0abc295530
-DIST eclipse-parallel-2022-03-R-linux-gtk-x86_64.tar.gz 446729867 BLAKE2B 9ea786dc649333a5995224baae1229229718376c51d459f271457d6994666303638ab51d842c58fc9fa3dae56661a0634d029b01ee1a4f32694c000bf22631a5 SHA512 c6a656cf2322db721f60a8253deb70233c05f8c730681b50ebc772addfb414be97c67896b8bab7840dc805e64fca6d126aa67a8b8e9074bb82cbb096c3a62ceb
 DIST eclipse-parallel-2022-09-R-linux-gtk-aarch64.tar.gz 458827728 BLAKE2B 3cbf6157b54e415cb4da1d27c9b5145c5a7ea3108d9b54defab86c6c42acdc2a642fb848f485bb58508f4924a66ec1d763f866d2b1adabf3f017370a8c4bde1b SHA512 afdad4f8c81110f0cd5eae75c8dcb218bfa58b094ac0b180b91e6d7eef2def58f4a857367f8b9e96a6e1d0b223a0350c2be1ca9d9edf1d434a0a24f7383caf48
 DIST eclipse-parallel-2022-09-R-linux-gtk-x86_64.tar.gz 459079255 BLAKE2B 478dfd07b0e14800e600960d530e32d3589fa67dfa2939a57e2d132f8ad5d9d6b900c9fc12c511073585c5a2b610b89350535ed2a2e22f9f55efe513b0cec927 SHA512 fc25b8bb7a4ff8968e81a293f5047cebf888f2c85ed7f5ede872c20078819d53171d6b3c59e700d9d4045692582b9b2333476ff08bc50c1da911f6e77ac9bb33
 DIST eclipse-parallel-2022-12-R-linux-gtk-aarch64.tar.gz 456213881 BLAKE2B 0e8183c88a203608b80974f937db93a226a69c30f8cd8b6751b62f01c1308d13842bde4a89cdef1da6a313a3c74e62d5b4d2b91d4c7c342f94b14d261c1be271 SHA512 705ca4595811bf34912a4ed4dba1e2494a63bdede41327c2cc15809d86d6e282329067717fdfc2dc59166b595761513f6be938df2f20ca0344bf770894c92015

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.23.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.23.ebuild
deleted file mode 100644
index 5b6fef550..000000000
--- a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.23.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit desktop wrapper xdg
-
-MY_PN="eclipse"
-MY_PV="2022-03"
-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"
-
-	doicon -s 48 plugins/org.eclipse.platform_4.23.0.v20220308-0310/eclipse48.png
-	make_desktop_entry eclipse-parallel "Eclipse IDE Parallel ${MY_PV}" eclipse48 "Development;" || die "Failed making desktop entry!"
-}


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/
@ 2023-03-15 19:36 Sergey Torokhov
  0 siblings, 0 replies; 22+ messages in thread
From: Sergey Torokhov @ 2023-03-15 19:36 UTC (permalink / raw
  To: gentoo-commits

commit:     5fe7c000000208f28d1a66a2af80327240ad19cc
Author:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Wed Mar 15 19:36:20 2023 +0000
Commit:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
CommitDate: Wed Mar 15 19:36:20 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5fe7c000

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

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

 dev-util/eclipse-parallel-bin/Manifest             |  2 +
 .../eclipse-parallel-bin-4.27.ebuild               | 47 ++++++++++++++++++++++
 2 files changed, 49 insertions(+)

diff --git a/dev-util/eclipse-parallel-bin/Manifest b/dev-util/eclipse-parallel-bin/Manifest
index e294d7cca..a30df5c69 100644
--- a/dev-util/eclipse-parallel-bin/Manifest
+++ b/dev-util/eclipse-parallel-bin/Manifest
@@ -2,3 +2,5 @@ DIST eclipse-parallel-2022-09-R-linux-gtk-aarch64.tar.gz 458827728 BLAKE2B 3cbf6
 DIST eclipse-parallel-2022-09-R-linux-gtk-x86_64.tar.gz 459079255 BLAKE2B 478dfd07b0e14800e600960d530e32d3589fa67dfa2939a57e2d132f8ad5d9d6b900c9fc12c511073585c5a2b610b89350535ed2a2e22f9f55efe513b0cec927 SHA512 fc25b8bb7a4ff8968e81a293f5047cebf888f2c85ed7f5ede872c20078819d53171d6b3c59e700d9d4045692582b9b2333476ff08bc50c1da911f6e77ac9bb33
 DIST eclipse-parallel-2022-12-R-linux-gtk-aarch64.tar.gz 456213881 BLAKE2B 0e8183c88a203608b80974f937db93a226a69c30f8cd8b6751b62f01c1308d13842bde4a89cdef1da6a313a3c74e62d5b4d2b91d4c7c342f94b14d261c1be271 SHA512 705ca4595811bf34912a4ed4dba1e2494a63bdede41327c2cc15809d86d6e282329067717fdfc2dc59166b595761513f6be938df2f20ca0344bf770894c92015
 DIST eclipse-parallel-2022-12-R-linux-gtk-x86_64.tar.gz 456460848 BLAKE2B b9e5637120b7a2b037373beee0c46a1a3dfd3da477ababef83f3212a4f1fdd78bc240627e8b8a3e5e6cb5c0d0d92b1b823ad4cb1fbe7aa93a0dd3de61d066e88 SHA512 ea13ee9787b343e5ee061155ea3b63b5a369862e102520becfd5efc98bd728440fbf2d22b81a42ad17a646ddef003a6ac7ddeac5f10ac44b6b20712470e0c261
+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

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.27.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.27.ebuild
new file mode 100644
index 000000000..041d36250
--- /dev/null
+++ b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.27.ebuild
@@ -0,0 +1,47 @@
+# 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-03"
+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"
+
+	doicon -s 48 plugins/org.eclipse.platform_4.27.0.v20230302-0300/eclipse48.png
+	make_desktop_entry eclipse-parallel "Eclipse IDE Parallel ${MY_PV}" eclipse48 "Development;" || die "Failed making desktop entry!"
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/
@ 2023-04-02 12:10 Sergey Torokhov
  0 siblings, 0 replies; 22+ messages in thread
From: Sergey Torokhov @ 2023-04-02 12:10 UTC (permalink / raw
  To: gentoo-commits

commit:     ebf8199ce54fa670b131f8c4d19f1c9b82f29449
Author:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Sun Apr  2 12:09:36 2023 +0000
Commit:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
CommitDate: Sun Apr  2 12:09:36 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ebf8199c

dev-util/eclipse-parallel-bin: drop old 4.25

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

 dev-util/eclipse-parallel-bin/Manifest             |  2 -
 .../eclipse-parallel-bin-4.25.ebuild               | 47 ----------------------
 2 files changed, 49 deletions(-)

diff --git a/dev-util/eclipse-parallel-bin/Manifest b/dev-util/eclipse-parallel-bin/Manifest
index a30df5c69..64c1e095e 100644
--- a/dev-util/eclipse-parallel-bin/Manifest
+++ b/dev-util/eclipse-parallel-bin/Manifest
@@ -1,5 +1,3 @@
-DIST eclipse-parallel-2022-09-R-linux-gtk-aarch64.tar.gz 458827728 BLAKE2B 3cbf6157b54e415cb4da1d27c9b5145c5a7ea3108d9b54defab86c6c42acdc2a642fb848f485bb58508f4924a66ec1d763f866d2b1adabf3f017370a8c4bde1b SHA512 afdad4f8c81110f0cd5eae75c8dcb218bfa58b094ac0b180b91e6d7eef2def58f4a857367f8b9e96a6e1d0b223a0350c2be1ca9d9edf1d434a0a24f7383caf48
-DIST eclipse-parallel-2022-09-R-linux-gtk-x86_64.tar.gz 459079255 BLAKE2B 478dfd07b0e14800e600960d530e32d3589fa67dfa2939a57e2d132f8ad5d9d6b900c9fc12c511073585c5a2b610b89350535ed2a2e22f9f55efe513b0cec927 SHA512 fc25b8bb7a4ff8968e81a293f5047cebf888f2c85ed7f5ede872c20078819d53171d6b3c59e700d9d4045692582b9b2333476ff08bc50c1da911f6e77ac9bb33
 DIST eclipse-parallel-2022-12-R-linux-gtk-aarch64.tar.gz 456213881 BLAKE2B 0e8183c88a203608b80974f937db93a226a69c30f8cd8b6751b62f01c1308d13842bde4a89cdef1da6a313a3c74e62d5b4d2b91d4c7c342f94b14d261c1be271 SHA512 705ca4595811bf34912a4ed4dba1e2494a63bdede41327c2cc15809d86d6e282329067717fdfc2dc59166b595761513f6be938df2f20ca0344bf770894c92015
 DIST eclipse-parallel-2022-12-R-linux-gtk-x86_64.tar.gz 456460848 BLAKE2B b9e5637120b7a2b037373beee0c46a1a3dfd3da477ababef83f3212a4f1fdd78bc240627e8b8a3e5e6cb5c0d0d92b1b823ad4cb1fbe7aa93a0dd3de61d066e88 SHA512 ea13ee9787b343e5ee061155ea3b63b5a369862e102520becfd5efc98bd728440fbf2d22b81a42ad17a646ddef003a6ac7ddeac5f10ac44b6b20712470e0c261
 DIST eclipse-parallel-2023-03-R-linux-gtk-aarch64.tar.gz 453078962 BLAKE2B b5ccf1b8937c970c8db38b351412d46c63c893734ecdd9c02518f9e1d5925b4ff33cc5621161e831ced5d9762e635aa0323686f28792ace640426925704d9395 SHA512 733d5fe2c46fb083714964cf66091cdc52dbc30d763e22e0f6c4eb506b50e7ddc7c0ae33e3dfd4ab2a33b3e9e00513d8c5d826770afd940d02f540884eb37381

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.25.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.25.ebuild
deleted file mode 100644
index 36c0f76cf..000000000
--- a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.25.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit desktop wrapper xdg
-
-MY_PN="eclipse"
-MY_PV="2022-09"
-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"
-
-	doicon -s 48 plugins/org.eclipse.platform_4.25.0.v20220831-1800/eclipse48.png
-	make_desktop_entry eclipse-parallel "Eclipse IDE Parallel ${MY_PV}" eclipse48 "Development;" || die "Failed making desktop entry!"
-}


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/
@ 2023-05-27 21:21 Sergey Torokhov
  0 siblings, 0 replies; 22+ messages in thread
From: Sergey Torokhov @ 2023-05-27 21:21 UTC (permalink / raw
  To: gentoo-commits

commit:     6b8c7ad08adf261dec2648723932251e0b4e106c
Author:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Sat May 27 20:39:03 2023 +0000
Commit:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
CommitDate: Sat May 27 20:39:03 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6b8c7ad0

dev-util/eclipse-parallel-bin: drop old 4.26

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

 dev-util/eclipse-parallel-bin/Manifest             |  2 -
 .../eclipse-parallel-bin-4.26.ebuild               | 47 ----------------------
 2 files changed, 49 deletions(-)

diff --git a/dev-util/eclipse-parallel-bin/Manifest b/dev-util/eclipse-parallel-bin/Manifest
index 64c1e095e..834158b30 100644
--- a/dev-util/eclipse-parallel-bin/Manifest
+++ b/dev-util/eclipse-parallel-bin/Manifest
@@ -1,4 +1,2 @@
-DIST eclipse-parallel-2022-12-R-linux-gtk-aarch64.tar.gz 456213881 BLAKE2B 0e8183c88a203608b80974f937db93a226a69c30f8cd8b6751b62f01c1308d13842bde4a89cdef1da6a313a3c74e62d5b4d2b91d4c7c342f94b14d261c1be271 SHA512 705ca4595811bf34912a4ed4dba1e2494a63bdede41327c2cc15809d86d6e282329067717fdfc2dc59166b595761513f6be938df2f20ca0344bf770894c92015
-DIST eclipse-parallel-2022-12-R-linux-gtk-x86_64.tar.gz 456460848 BLAKE2B b9e5637120b7a2b037373beee0c46a1a3dfd3da477ababef83f3212a4f1fdd78bc240627e8b8a3e5e6cb5c0d0d92b1b823ad4cb1fbe7aa93a0dd3de61d066e88 SHA512 ea13ee9787b343e5ee061155ea3b63b5a369862e102520becfd5efc98bd728440fbf2d22b81a42ad17a646ddef003a6ac7ddeac5f10ac44b6b20712470e0c261
 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

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.26.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.26.ebuild
deleted file mode 100644
index 2e9868853..000000000
--- a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.26.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit desktop wrapper xdg
-
-MY_PN="eclipse"
-MY_PV="2022-12"
-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"
-
-	doicon -s 48 plugins/org.eclipse.platform_4.26.0.v20221123-1800/eclipse48.png
-	make_desktop_entry eclipse-parallel "Eclipse IDE Parallel ${MY_PV}" eclipse48 "Development;" || die "Failed making desktop entry!"
-}


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/
@ 2023-05-27 22:22 Rahul Sandhu
  0 siblings, 0 replies; 22+ messages in thread
From: Rahul Sandhu @ 2023-05-27 22:22 UTC (permalink / raw
  To: gentoo-commits

commit:     5bf5362163918bff4bdfdf01c22b0fee9ae1af3a
Author:     Rahul Sandhu <rahul <AT> sandhuservices <DOT> dev>
AuthorDate: Sat May 27 22:22:07 2023 +0000
Commit:     Rahul Sandhu <rahul <AT> sandhuservices <DOT> dev>
CommitDate: Sat May 27 22:22:07 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5bf53621

dev-util/eclipse-parallel-bin: improve ebuild readability

Signed-off-by: Rahul Sandhu <rahul <AT> sandhuservices.dev>

 dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.27.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.27.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.27.ebuild
index 041d36250..ed79a8018 100644
--- a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.27.ebuild
+++ b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.27.ebuild
@@ -43,5 +43,6 @@ src_install() {
 	make_wrapper ${PN%-*} "/opt/${PN}/${MY_PN} -vm /opt/openjdk*/bin/java" "" "/opt/${PN}" "/opt/bin"
 
 	doicon -s 48 plugins/org.eclipse.platform_4.27.0.v20230302-0300/eclipse48.png
-	make_desktop_entry eclipse-parallel "Eclipse IDE Parallel ${MY_PV}" eclipse48 "Development;" || die "Failed making desktop entry!"
+	make_desktop_entry eclipse-parallel "Eclipse IDE Parallel ${MY_PV}" eclipse48 "Development;" \
+		|| die "Failed making desktop entry!"
 }


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/
@ 2023-09-12 13:58 Sergey Torokhov
  0 siblings, 0 replies; 22+ messages in thread
From: Sergey Torokhov @ 2023-09-12 13:58 UTC (permalink / raw
  To: gentoo-commits

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


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/
@ 2024-05-05 14:54 Sergey Torokhov
  0 siblings, 0 replies; 22+ messages in thread
From: Sergey Torokhov @ 2024-05-05 14:54 UTC (permalink / raw
  To: gentoo-commits

commit:     41dde7ea2fd1e15e8475009704b538888ef4df45
Author:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Sun May  5 14:53:49 2024 +0000
Commit:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
CommitDate: Sun May  5 14:53:49 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=41dde7ea

dev-util/eclipse-paralell-bin: drop old 4.27

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

 dev-util/eclipse-parallel-bin/Manifest             |  2 -
 .../eclipse-parallel-bin-4.27.ebuild               | 48 ----------------------
 2 files changed, 50 deletions(-)

diff --git a/dev-util/eclipse-parallel-bin/Manifest b/dev-util/eclipse-parallel-bin/Manifest
index fab48704d0..11487c49c5 100644
--- a/dev-util/eclipse-parallel-bin/Manifest
+++ b/dev-util/eclipse-parallel-bin/Manifest
@@ -1,4 +1,2 @@
-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.27.ebuild b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.27.ebuild
deleted file mode 100644
index ed79a80180..0000000000
--- a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.27.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# 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-03"
-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"
-
-	doicon -s 48 plugins/org.eclipse.platform_4.27.0.v20230302-0300/eclipse48.png
-	make_desktop_entry eclipse-parallel "Eclipse IDE Parallel ${MY_PV}" eclipse48 "Development;" \
-		|| die "Failed making desktop entry!"
-}


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

end of thread, other threads:[~2024-05-05 14:54 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-15 19:36 [gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/ Sergey Torokhov
  -- strict thread matches above, loose matches on Subject: below --
2024-05-05 14:54 Sergey Torokhov
2023-09-12 13:58 Sergey Torokhov
2023-05-27 22:22 Rahul Sandhu
2023-05-27 21:21 Sergey Torokhov
2023-04-02 12:10 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

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