From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B7D7F1382C5 for ; Wed, 17 Mar 2021 02:17:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1721BE0822; Wed, 17 Mar 2021 02:17:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DE2FCE0822 for ; Wed, 17 Mar 2021 02:17:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CF321340F17 for ; Wed, 17 Mar 2021 02:17:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ECCBB5A7 for ; Wed, 17 Mar 2021 02:17:49 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1615947460.ca3401a4a560a67573282577c2cf3dd6dc193378.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-gfx/gephi-bin/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-gfx/gephi-bin/Manifest media-gfx/gephi-bin/gephi-bin-0.9.2.ebuild media-gfx/gephi-bin/metadata.xml X-VCS-Directories: media-gfx/gephi-bin/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: ca3401a4a560a67573282577c2cf3dd6dc193378 X-VCS-Branch: dev Date: Wed, 17 Mar 2021 02:17:49 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d47673c7-9d54-4c33-b50c-1ecbd134d8b3 X-Archives-Hash: fe617a92eb9dc5de6f2ebc395ea9cb1f commit: ca3401a4a560a67573282577c2cf3dd6dc193378 Author: Alessandro Barbieri gmail com> AuthorDate: Wed Mar 17 02:17:19 2021 +0000 Commit: Alessandro Barbieri gmail com> 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 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 @@ + + + + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + https://github.com/gephi/gephi/issues + https://github.com/gephi/gephi/wiki/Releases + gephi/gephi + + +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. + +