public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: media-gfx/gephi-bin/
@ 2021-03-17 10:43 Andrew Ammerlaan
  0 siblings, 0 replies; 7+ messages in thread
From: Andrew Ammerlaan @ 2021-03-17 10:43 UTC (permalink / raw
  To: gentoo-commits

commit:     ca3401a4a560a67573282577c2cf3dd6dc193378
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Wed Mar 17 02:17:19 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Wed Mar 17 02:17:40 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ca3401a4

media-gfx/gephi-bin: new package

uses maven so it's binary for now

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 media-gfx/gephi-bin/Manifest               |  1 +
 media-gfx/gephi-bin/gephi-bin-0.9.2.ebuild | 47 ++++++++++++++++++++++++++++++
 media-gfx/gephi-bin/metadata.xml           | 22 ++++++++++++++
 3 files changed, 70 insertions(+)

diff --git a/media-gfx/gephi-bin/Manifest b/media-gfx/gephi-bin/Manifest
new file mode 100644
index 00000000..76e18d1c
--- /dev/null
+++ b/media-gfx/gephi-bin/Manifest
@@ -0,0 +1 @@
+DIST gephi-0.9.2-linux.tar.gz 80846981 BLAKE2B fccf8bc9ce1e1d422582ba5ac223c0608ac130150cb76eb079409f2357a24d097487d5b05d63c34a607757c2fb11d822202618c331fe3148c20a545ad36504cf SHA512 ea90a2f7c8e4cb63364dd0245bde68527048e5d2a807422c4ab3bf7d05373af982c4cde50774131d0a810ef0c31a7cbfaef3f4b1c46e458c7696c856072d20cd

diff --git a/media-gfx/gephi-bin/gephi-bin-0.9.2.ebuild b/media-gfx/gephi-bin/gephi-bin-0.9.2.ebuild
new file mode 100644
index 00000000..08701750
--- /dev/null
+++ b/media-gfx/gephi-bin/gephi-bin-0.9.2.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+MYPN="${PN/-bin/}"
+MYP="${MYPN}-${PV}"
+
+DESCRIPTION="The Open Graph Viz Platform"
+HOMEPAGE="https://gephi.org/"
+SRC_URI="https://github.com/gephi/gephi/releases/download/v${PV}/${MYP}-linux.tar.gz"
+
+LICENSE="CDDL GPL-3"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~x86"
+RESTRICT="strip"
+RDEPEND="virtual/jre:1.8"
+
+S="${WORKDIR}"
+
+QA_PREBUILT="
+	/opt/${MYPN}/platform/modules/lib/amd64/linux/libjnidispatch-422.so
+	/opt/${MYPN}/platform/modules/lib/i386/linux/libjnidispatch-422.so
+"
+
+src_prepare() {
+	#remove windows things
+	rm -r "${S}/${MYP}"/bin/*.exe || die
+	rm -r "${S}/${MYP}"/platform/lib/*.exe || die
+	rm -r "${S}/${MYP}"/platform/lib/*.dll || die
+	rm -r "${S}/${MYP}/platform/modules/lib/x86" || die #windows only
+	rm -r "${S}/${MYP}"/platform/modules/lib/amd64/*.dll || die
+
+	use amd64 && rm -rf "${S}/${MYP}/platform/modules/lib/i386"
+	use x86 && rm -rf "${S}/${MYP}/platform/modules/lib/amd64"
+
+	eapply_user
+}
+
+src_install() {
+	insinto "/opt/${MYPN}"
+	doins -r "${MYP}"/*
+	keepdir "/opt/${MYPN}/etc"
+	fperms a+x "/opt/${MYPN}/bin/gephi"
+	fperms a+x "/opt/${MYPN}/platform/lib/nbexec"
+	dosym "../../opt/${MYPN}/bin/gephi" "${EPREFIX}/usr/bin/gephi"
+}

diff --git a/media-gfx/gephi-bin/metadata.xml b/media-gfx/gephi-bin/metadata.xml
new file mode 100644
index 00000000..f600f36b
--- /dev/null
+++ b/media-gfx/gephi-bin/metadata.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>lssndrbarbieri@gmail.com</email>
+    <name>Alessandro Barbieri</name>
+  </maintainer>
+  <upstream>
+    <bugs-to>https://github.com/gephi/gephi/issues</bugs-to>
+    <changelog>https://github.com/gephi/gephi/wiki/Releases</changelog>
+    <remote-id type="github">gephi/gephi</remote-id>
+  </upstream>
+  <longdescription lang="en">
+Gephi is an award-winning open-source platform for visualizing and manipulating large graphs. It runs on Windows, Mac OS X and Linux. Localization is available in English, French, Spanish, Japanese, Russian, Brazilian Portuguese, Chinese, Czech and German.
+
+Fast Powered by a built-in OpenGL engine, Gephi is able to push the envelope with very large networks. Visualize networks up to a million elements. All actions (e.g. layout, filter, drag) run in real-time.
+
+Simple Easy to install and get started. An UI that is centered around the visualization. Like Photoshop™ for graphs.
+
+Modular Extend Gephi with plug-ins. The architecture is built on top of Netbeans Platform and can be extended or reused easily through well-written APIs.
+  </longdescription>
+</pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:master commit in: media-gfx/gephi-bin/
@ 2021-03-17 10:43 Andrew Ammerlaan
  0 siblings, 0 replies; 7+ messages in thread
From: Andrew Ammerlaan @ 2021-03-17 10:43 UTC (permalink / raw
  To: gentoo-commits

commit:     0f81c02f229d0413efda1986607251450222d9aa
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Wed Mar 17 02:41:01 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Wed Mar 17 02:41:01 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0f81c02f

media-gfx/gephi-bin: autodetect javahome

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 media-gfx/gephi-bin/gephi-bin-0.9.2.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/media-gfx/gephi-bin/gephi-bin-0.9.2.ebuild b/media-gfx/gephi-bin/gephi-bin-0.9.2.ebuild
index 08701750..25f378c2 100644
--- a/media-gfx/gephi-bin/gephi-bin-0.9.2.ebuild
+++ b/media-gfx/gephi-bin/gephi-bin-0.9.2.ebuild
@@ -24,6 +24,8 @@ QA_PREBUILT="
 "
 
 src_prepare() {
+	sed -e 's|\#jdkhome="\/path\/to\/jdk"|jdkhome=\$(java-config -O)|g' -i "${S}/${MYP}/etc/gephi.conf"
+
 	#remove windows things
 	rm -r "${S}/${MYP}"/bin/*.exe || die
 	rm -r "${S}/${MYP}"/platform/lib/*.exe || die


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

* [gentoo-commits] repo/proj/guru:master commit in: media-gfx/gephi-bin/
@ 2022-04-21 17:46 Arthur Zamarin
  0 siblings, 0 replies; 7+ messages in thread
From: Arthur Zamarin @ 2022-04-21 17:46 UTC (permalink / raw
  To: gentoo-commits

commit:     4de14ea66ca66e1944c1ba5973f2a6748241c8bb
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Wed Apr 20 22:36:31 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Apr 20 22:37:06 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4de14ea6

media-gfx/gephi-bin: add 0.9.4, drop 0.9.2

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 media-gfx/gephi-bin/Manifest                       |  2 +-
 ...phi-bin-0.9.2.ebuild => gephi-bin-0.9.4.ebuild} | 31 ++++++++++++----------
 2 files changed, 18 insertions(+), 15 deletions(-)

diff --git a/media-gfx/gephi-bin/Manifest b/media-gfx/gephi-bin/Manifest
index b09f60de1..37fd2f4d7 100644
--- a/media-gfx/gephi-bin/Manifest
+++ b/media-gfx/gephi-bin/Manifest
@@ -1,2 +1,2 @@
-DIST gephi-0.9.2-linux.tar.gz 80846981 BLAKE2B fccf8bc9ce1e1d422582ba5ac223c0608ac130150cb76eb079409f2357a24d097487d5b05d63c34a607757c2fb11d822202618c331fe3148c20a545ad36504cf SHA512 ea90a2f7c8e4cb63364dd0245bde68527048e5d2a807422c4ab3bf7d05373af982c4cde50774131d0a810ef0c31a7cbfaef3f4b1c46e458c7696c856072d20cd
 DIST gephi-0.9.3-linux-x64.tar.gz 141499507 BLAKE2B eb7f31f9f33308678a7429bf1eddf7fd5a89d3a175ab84505d57e3de9f8c387eb951bcc435c3d0075248847f11b5ed99a7eb8110ebd875c4dbd2a164d41deb53 SHA512 4d88d2c1371f54f2bdefc1b9b7ee1e6d68ba29e8c447c55ba29fc75acdc1b69c21e1c236efe95605cc5ef4a4ca0237615cbcec0293fa73a91d7b3d7ecf3e67b1
+DIST gephi-0.9.4-linux-x64.tar.gz 141531065 BLAKE2B 2511b5de51cd8cd0bb835141910be722138e43fc76f6e18182334d09165bd10e25a092ea9678104e583f90fad72f4b73ec2f62058cc099fc74857c10193a15d2 SHA512 6d04fc25ece184ba104563b0cc4569df3b71edd055407e0de594092592cc3dd42313d87fc2e7d629f8ce28e05ce5486af66812bda581b2f9a067679472232e54

diff --git a/media-gfx/gephi-bin/gephi-bin-0.9.2.ebuild b/media-gfx/gephi-bin/gephi-bin-0.9.4.ebuild
similarity index 63%
rename from media-gfx/gephi-bin/gephi-bin-0.9.2.ebuild
rename to media-gfx/gephi-bin/gephi-bin-0.9.4.ebuild
index 25f378c20..f953a0958 100644
--- a/media-gfx/gephi-bin/gephi-bin-0.9.2.ebuild
+++ b/media-gfx/gephi-bin/gephi-bin-0.9.4.ebuild
@@ -1,30 +1,30 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="7"
+EAPI=8
 
 MYPN="${PN/-bin/}"
 MYP="${MYPN}-${PV}"
 
 DESCRIPTION="The Open Graph Viz Platform"
-HOMEPAGE="https://gephi.org/"
-SRC_URI="https://github.com/gephi/gephi/releases/download/v${PV}/${MYP}-linux.tar.gz"
+HOMEPAGE="
+	https://gephi.org/
+	https://github.com/gephi/gephi
+"
+SRC_URI="https://github.com/gephi/gephi/releases/download/v${PV}/${MYP}-linux-x64.tar.gz"
+S="${WORKDIR}"
 
 LICENSE="CDDL GPL-3"
 SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
-RESTRICT="strip"
+KEYWORDS="-* ~amd64"
 RDEPEND="virtual/jre:1.8"
 
-S="${WORKDIR}"
+RESTRICT="strip"
 
-QA_PREBUILT="
-	/opt/${MYPN}/platform/modules/lib/amd64/linux/libjnidispatch-422.so
-	/opt/${MYPN}/platform/modules/lib/i386/linux/libjnidispatch-422.so
-"
+QA_PREBUILT="/opt/${MYPN}/platform/modules/lib/amd64/linux/libjnidispatch-nb.so"
 
 src_prepare() {
-	sed -e 's|\#jdkhome="\/path\/to\/jdk"|jdkhome=\$(java-config -O)|g' -i "${S}/${MYP}/etc/gephi.conf"
+	sed -e 's|jdkhome=.*|jdkhome=\$(java-config -O)|g' -i "${S}/${MYP}/etc/gephi.conf" || die
 
 	#remove windows things
 	rm -r "${S}/${MYP}"/bin/*.exe || die
@@ -33,8 +33,11 @@ src_prepare() {
 	rm -r "${S}/${MYP}/platform/modules/lib/x86" || die #windows only
 	rm -r "${S}/${MYP}"/platform/modules/lib/amd64/*.dll || die
 
-	use amd64 && rm -rf "${S}/${MYP}/platform/modules/lib/i386"
-	use x86 && rm -rf "${S}/${MYP}/platform/modules/lib/amd64"
+	rm -rf "${S}/${MYP}/platform/modules/lib/i386" || die
+	rm -rf "${S}/${MYP}/platform/modules/lib/aarch64" || die
+
+	# remove bundled jre
+	rm -rf "${S}/${MYP}/jre-x64" || die
 
 	eapply_user
 }


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

* [gentoo-commits] repo/proj/guru:master commit in: media-gfx/gephi-bin/
@ 2022-05-05  4:07 Haelwenn Monnier
  0 siblings, 0 replies; 7+ messages in thread
From: Haelwenn Monnier @ 2022-05-05  4:07 UTC (permalink / raw
  To: gentoo-commits

commit:     237d014b28197aaec97cad44f580385f5b278d51
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Tue May  3 18:52:33 2022 +0000
Commit:     Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Tue May  3 20:21:34 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=237d014b

media-gfx/gephi-bin: add 0.9.5, drop 0.9.3

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 media-gfx/gephi-bin/Manifest                                           | 2 +-
 media-gfx/gephi-bin/{gephi-bin-0.9.3.ebuild => gephi-bin-0.9.5.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/gephi-bin/Manifest b/media-gfx/gephi-bin/Manifest
index 37fd2f4d7..297977511 100644
--- a/media-gfx/gephi-bin/Manifest
+++ b/media-gfx/gephi-bin/Manifest
@@ -1,2 +1,2 @@
-DIST gephi-0.9.3-linux-x64.tar.gz 141499507 BLAKE2B eb7f31f9f33308678a7429bf1eddf7fd5a89d3a175ab84505d57e3de9f8c387eb951bcc435c3d0075248847f11b5ed99a7eb8110ebd875c4dbd2a164d41deb53 SHA512 4d88d2c1371f54f2bdefc1b9b7ee1e6d68ba29e8c447c55ba29fc75acdc1b69c21e1c236efe95605cc5ef4a4ca0237615cbcec0293fa73a91d7b3d7ecf3e67b1
 DIST gephi-0.9.4-linux-x64.tar.gz 141531065 BLAKE2B 2511b5de51cd8cd0bb835141910be722138e43fc76f6e18182334d09165bd10e25a092ea9678104e583f90fad72f4b73ec2f62058cc099fc74857c10193a15d2 SHA512 6d04fc25ece184ba104563b0cc4569df3b71edd055407e0de594092592cc3dd42313d87fc2e7d629f8ce28e05ce5486af66812bda581b2f9a067679472232e54
+DIST gephi-0.9.5-linux-x64.tar.gz 141580518 BLAKE2B f49c0c6537b6a2ae0a57f08464b249fa6c12a80c6b63cecdd9a9202643eb075b76051bf871618556521a6258fda11289d2595bd6aa22c0fa70200685c23da5f7 SHA512 fc0c1200e3bbbc348a6acb3df7362f55825bd02659b84183ca669a967efec6dc25fb3cb26fd231104988e416c5abe7c4c689b940fae8eee8d4e60271092fe079

diff --git a/media-gfx/gephi-bin/gephi-bin-0.9.3.ebuild b/media-gfx/gephi-bin/gephi-bin-0.9.5.ebuild
similarity index 100%
rename from media-gfx/gephi-bin/gephi-bin-0.9.3.ebuild
rename to media-gfx/gephi-bin/gephi-bin-0.9.5.ebuild


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

* [gentoo-commits] repo/proj/guru:master commit in: media-gfx/gephi-bin/
@ 2022-06-29 15:37 Florian Schmaus
  0 siblings, 0 replies; 7+ messages in thread
From: Florian Schmaus @ 2022-06-29 15:37 UTC (permalink / raw
  To: gentoo-commits

commit:     bf708cb65c26795c406de359c45cada1c0d09e31
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Tue Jun 28 15:40:52 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Tue Jun 28 15:40:52 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bf708cb6

media-gfx/gephi-bin: add 0.9.6, drop 0.9.4

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 media-gfx/gephi-bin/Manifest                                           | 2 +-
 media-gfx/gephi-bin/{gephi-bin-0.9.4.ebuild => gephi-bin-0.9.6.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/gephi-bin/Manifest b/media-gfx/gephi-bin/Manifest
index 297977511..859b7cfd2 100644
--- a/media-gfx/gephi-bin/Manifest
+++ b/media-gfx/gephi-bin/Manifest
@@ -1,2 +1,2 @@
-DIST gephi-0.9.4-linux-x64.tar.gz 141531065 BLAKE2B 2511b5de51cd8cd0bb835141910be722138e43fc76f6e18182334d09165bd10e25a092ea9678104e583f90fad72f4b73ec2f62058cc099fc74857c10193a15d2 SHA512 6d04fc25ece184ba104563b0cc4569df3b71edd055407e0de594092592cc3dd42313d87fc2e7d629f8ce28e05ce5486af66812bda581b2f9a067679472232e54
 DIST gephi-0.9.5-linux-x64.tar.gz 141580518 BLAKE2B f49c0c6537b6a2ae0a57f08464b249fa6c12a80c6b63cecdd9a9202643eb075b76051bf871618556521a6258fda11289d2595bd6aa22c0fa70200685c23da5f7 SHA512 fc0c1200e3bbbc348a6acb3df7362f55825bd02659b84183ca669a967efec6dc25fb3cb26fd231104988e416c5abe7c4c689b940fae8eee8d4e60271092fe079
+DIST gephi-0.9.6-linux-x64.tar.gz 141861129 BLAKE2B 7991d6370f7d95c7c8fcaf355541e74bbf579c26a0a869448d7f1478eaaa3d8cef8a780df2f269e2b690dcbf5194dddf3a50eaf09b65c83a4c0dda80760b4aa3 SHA512 c1db889bf8423d59a28400b5b2e70d7df157e9d68d30eb7c06528faadaaa617797cd88f8b5a10f962043f92ff82c03e02fbade140897a0358616959b6f8ead05

diff --git a/media-gfx/gephi-bin/gephi-bin-0.9.4.ebuild b/media-gfx/gephi-bin/gephi-bin-0.9.6.ebuild
similarity index 100%
rename from media-gfx/gephi-bin/gephi-bin-0.9.4.ebuild
rename to media-gfx/gephi-bin/gephi-bin-0.9.6.ebuild


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

* [gentoo-commits] repo/proj/guru:master commit in: media-gfx/gephi-bin/
@ 2024-02-06  9:20 Florian Schmaus
  0 siblings, 0 replies; 7+ messages in thread
From: Florian Schmaus @ 2024-02-06  9:20 UTC (permalink / raw
  To: gentoo-commits

commit:     4b3ccccb1edddb3b828685e7acf935e492cf661d
Author:     Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Tue Feb  6 09:18:56 2024 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Tue Feb  6 09:20:05 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4b3ccccb

media-gfx/gephi-bin: add 0.10.1

Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 media-gfx/gephi-bin/Manifest                |  1 +
 media-gfx/gephi-bin/gephi-bin-0.10.1.ebuild | 60 +++++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)

diff --git a/media-gfx/gephi-bin/Manifest b/media-gfx/gephi-bin/Manifest
index 859b7cfd2e..d6defe4748 100644
--- a/media-gfx/gephi-bin/Manifest
+++ b/media-gfx/gephi-bin/Manifest
@@ -1,2 +1,3 @@
+DIST gephi-0.10.1-linux-x64.tar.gz 149246671 BLAKE2B 921d8b780043de03d8c9b538be3dce0c0f23623e1024ca5d37736f468533655985e480c48c944c55d90ab8309f22103dab44eefd82086ed0be8178aa9a2989c2 SHA512 cf92298e0db9c3038db68227056acd9379d15a2dcbb726fd5dc92e47295924b24acb7fe5fab02cf533208bffb83bc725421d2be1d908d8129b4475db984f91d3
 DIST gephi-0.9.5-linux-x64.tar.gz 141580518 BLAKE2B f49c0c6537b6a2ae0a57f08464b249fa6c12a80c6b63cecdd9a9202643eb075b76051bf871618556521a6258fda11289d2595bd6aa22c0fa70200685c23da5f7 SHA512 fc0c1200e3bbbc348a6acb3df7362f55825bd02659b84183ca669a967efec6dc25fb3cb26fd231104988e416c5abe7c4c689b940fae8eee8d4e60271092fe079
 DIST gephi-0.9.6-linux-x64.tar.gz 141861129 BLAKE2B 7991d6370f7d95c7c8fcaf355541e74bbf579c26a0a869448d7f1478eaaa3d8cef8a780df2f269e2b690dcbf5194dddf3a50eaf09b65c83a4c0dda80760b4aa3 SHA512 c1db889bf8423d59a28400b5b2e70d7df157e9d68d30eb7c06528faadaaa617797cd88f8b5a10f962043f92ff82c03e02fbade140897a0358616959b6f8ead05

diff --git a/media-gfx/gephi-bin/gephi-bin-0.10.1.ebuild b/media-gfx/gephi-bin/gephi-bin-0.10.1.ebuild
new file mode 100644
index 0000000000..065c20e9ba
--- /dev/null
+++ b/media-gfx/gephi-bin/gephi-bin-0.10.1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MYPN="${PN/-bin/}"
+MYP="${MYPN}-${PV}"
+
+DESCRIPTION="The Open Graph Viz Platform"
+HOMEPAGE="
+	https://gephi.org/
+	https://github.com/gephi/gephi
+"
+SRC_URI="https://github.com/gephi/gephi/releases/download/v${PV}/${MYP}-linux-x64.tar.gz"
+S="${WORKDIR}"
+
+LICENSE="CDDL GPL-3"
+SLOT="0"
+KEYWORDS="-* ~amd64"
+MY_JAVA_DEPEND=">=virtual/jre-11"
+RDEPEND="${MY_JAVA_DEPEND}"
+
+RESTRICT="strip"
+
+QA_PREBUILT="/opt/${MYPN}/platform/modules/lib/amd64/linux/libjnidispatch-nb.so"
+
+src_prepare() {
+	default
+
+	local gephi_conf="${MYP}/etc/gephi.conf"
+	sed -e '/jdkhome=.*/d' -i "${gephi_conf}" || die
+	# Extra newline since gephi.conf does not end with a newline char.
+	cat <<-EOF >> "${gephi_conf}"
+
+	gentoo_java_vm="\$(depend-java-query --get-vm '${MY_JAVA_DEPEND}')"
+	jdkhome="\$(java-config -P \${gentoo_java_vm} | grep JAVA_HOME | cut -d '=' -f 2)"
+EOF
+
+	#remove windows things
+	rm -r "${MYP}"/bin/*.exe || die
+	rm -r "${MYP}"/platform/lib/*.exe || die
+	rm -r "${MYP}"/platform/lib/*.dll || die
+	rm -r "${MYP}/platform/modules/lib/x86" || die #windows only
+	rm -r "${MYP}"/platform/modules/lib/amd64/*.dll || die
+
+	rm -rf "${MYP}/platform/modules/lib/i386" || die
+	rm -rf "${MYP}/platform/modules/lib/aarch64" || die
+
+	# remove bundled jre
+	rm -rf "${MYP}/jre-x64" || die
+}
+
+src_install() {
+	insinto "/opt/${MYPN}"
+	doins -r "${MYP}"/*
+	keepdir "/opt/${MYPN}/etc"
+	fperms a+x "/opt/${MYPN}/bin/gephi"
+	fperms a+x "/opt/${MYPN}/platform/lib/nbexec"
+	dosym "../../opt/${MYPN}/bin/gephi" "${EPREFIX}/usr/bin/gephi"
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: media-gfx/gephi-bin/
@ 2024-02-06  9:20 Florian Schmaus
  0 siblings, 0 replies; 7+ messages in thread
From: Florian Schmaus @ 2024-02-06  9:20 UTC (permalink / raw
  To: gentoo-commits

commit:     719db52b27af3b2423fa47df0d869e0955e68a75
Author:     Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Tue Feb  6 09:19:16 2024 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Tue Feb  6 09:20:06 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=719db52b

media-gfx/gephi-bin: drop 0.9.5

Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 media-gfx/gephi-bin/Manifest               |  1 -
 media-gfx/gephi-bin/gephi-bin-0.9.5.ebuild | 52 ------------------------------
 2 files changed, 53 deletions(-)

diff --git a/media-gfx/gephi-bin/Manifest b/media-gfx/gephi-bin/Manifest
index d6defe4748..eaa7522e44 100644
--- a/media-gfx/gephi-bin/Manifest
+++ b/media-gfx/gephi-bin/Manifest
@@ -1,3 +1,2 @@
 DIST gephi-0.10.1-linux-x64.tar.gz 149246671 BLAKE2B 921d8b780043de03d8c9b538be3dce0c0f23623e1024ca5d37736f468533655985e480c48c944c55d90ab8309f22103dab44eefd82086ed0be8178aa9a2989c2 SHA512 cf92298e0db9c3038db68227056acd9379d15a2dcbb726fd5dc92e47295924b24acb7fe5fab02cf533208bffb83bc725421d2be1d908d8129b4475db984f91d3
-DIST gephi-0.9.5-linux-x64.tar.gz 141580518 BLAKE2B f49c0c6537b6a2ae0a57f08464b249fa6c12a80c6b63cecdd9a9202643eb075b76051bf871618556521a6258fda11289d2595bd6aa22c0fa70200685c23da5f7 SHA512 fc0c1200e3bbbc348a6acb3df7362f55825bd02659b84183ca669a967efec6dc25fb3cb26fd231104988e416c5abe7c4c689b940fae8eee8d4e60271092fe079
 DIST gephi-0.9.6-linux-x64.tar.gz 141861129 BLAKE2B 7991d6370f7d95c7c8fcaf355541e74bbf579c26a0a869448d7f1478eaaa3d8cef8a780df2f269e2b690dcbf5194dddf3a50eaf09b65c83a4c0dda80760b4aa3 SHA512 c1db889bf8423d59a28400b5b2e70d7df157e9d68d30eb7c06528faadaaa617797cd88f8b5a10f962043f92ff82c03e02fbade140897a0358616959b6f8ead05

diff --git a/media-gfx/gephi-bin/gephi-bin-0.9.5.ebuild b/media-gfx/gephi-bin/gephi-bin-0.9.5.ebuild
deleted file mode 100644
index f953a0958e..0000000000
--- a/media-gfx/gephi-bin/gephi-bin-0.9.5.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MYPN="${PN/-bin/}"
-MYP="${MYPN}-${PV}"
-
-DESCRIPTION="The Open Graph Viz Platform"
-HOMEPAGE="
-	https://gephi.org/
-	https://github.com/gephi/gephi
-"
-SRC_URI="https://github.com/gephi/gephi/releases/download/v${PV}/${MYP}-linux-x64.tar.gz"
-S="${WORKDIR}"
-
-LICENSE="CDDL GPL-3"
-SLOT="0"
-KEYWORDS="-* ~amd64"
-RDEPEND="virtual/jre:1.8"
-
-RESTRICT="strip"
-
-QA_PREBUILT="/opt/${MYPN}/platform/modules/lib/amd64/linux/libjnidispatch-nb.so"
-
-src_prepare() {
-	sed -e 's|jdkhome=.*|jdkhome=\$(java-config -O)|g' -i "${S}/${MYP}/etc/gephi.conf" || die
-
-	#remove windows things
-	rm -r "${S}/${MYP}"/bin/*.exe || die
-	rm -r "${S}/${MYP}"/platform/lib/*.exe || die
-	rm -r "${S}/${MYP}"/platform/lib/*.dll || die
-	rm -r "${S}/${MYP}/platform/modules/lib/x86" || die #windows only
-	rm -r "${S}/${MYP}"/platform/modules/lib/amd64/*.dll || die
-
-	rm -rf "${S}/${MYP}/platform/modules/lib/i386" || die
-	rm -rf "${S}/${MYP}/platform/modules/lib/aarch64" || die
-
-	# remove bundled jre
-	rm -rf "${S}/${MYP}/jre-x64" || die
-
-	eapply_user
-}
-
-src_install() {
-	insinto "/opt/${MYPN}"
-	doins -r "${MYP}"/*
-	keepdir "/opt/${MYPN}/etc"
-	fperms a+x "/opt/${MYPN}/bin/gephi"
-	fperms a+x "/opt/${MYPN}/platform/lib/nbexec"
-	dosym "../../opt/${MYPN}/bin/gephi" "${EPREFIX}/usr/bin/gephi"
-}


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

end of thread, other threads:[~2024-02-06  9:20 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-03-17 10:43 [gentoo-commits] repo/proj/guru:master commit in: media-gfx/gephi-bin/ Andrew Ammerlaan
  -- strict thread matches above, loose matches on Subject: below --
2021-03-17 10:43 Andrew Ammerlaan
2022-04-21 17:46 Arthur Zamarin
2022-05-05  4:07 Haelwenn Monnier
2022-06-29 15:37 Florian Schmaus
2024-02-06  9:20 Florian Schmaus
2024-02-06  9:20 Florian Schmaus

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