dev-util/visualvm: removed obsolete 2.0.6

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
This commit is contained in:
Miroslav Šulc
2021-08-05 06:52:41 +02:00
parent d73be5ee44
commit ee59a7452f
2 changed files with 0 additions and 73 deletions

View File

@@ -1,3 +1,2 @@
DIST visualvm-2.0.6.tar.gz 39086223 BLAKE2B f5657d4ccc0063281226b4d70c35820c78333db5574bae5acadc321938cfe42a3e0e4c1752badcc3e01b5694f6081213f5da898f5a13587d44e36d18fbd5c2c7 SHA512 03ad628f753e31f26217366d8f5f184f4657ba55badd55f1466dbf00cda61e9c320cc8ddb82b228863b9c6416aec3e94a01c5429e2b2f4664c9daaccd02f5d7b
DIST visualvm-2.0.7.tar.gz 39155599 BLAKE2B 8a460cb161357114d829d41a7e4b2306e9e0023a6995aceed89cc12fc0b54d5e05402bc1b8c72d4cb3caba5a4844bfbebb4734d7f7c5663343dfb3bd4470945a SHA512 d75217fb1b2a8c4d1c44b600dc42d488be8447fc569f78c10c59954c7c64f8e1ccdeef2e6a7936e7708b9392bbd7634d7149c6d6cc797df1f0036c6c473398ff
DIST visualvm-2.1.tar.gz 37175908 BLAKE2B 2bc435b09af9061122eb62a8de4b4b9ce47bb8cc2b7e2bfba57767bee380f6db041ec758a54f5a90e21d9ee3a5e6db5af8c0f89fc347d8e49322caeb07db4233 SHA512 ae662df96224a366c54210b85d6a859fd7412ea6ebbbb4d6a5e6b1a75c04a8060ac08a524d8e58aa9a037ecebf7ada142d9633db389cd5332742a21d26e5ed17

View File

@@ -1,72 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
NBV=113
NBT=27102020
NBZ=nb${NBV}_platform_${NBT}.zip
inherit java-pkg-2 java-ant-2 desktop
DESCRIPTION="Integrates commandline JDK tools and profiling capabilities"
HOMEPAGE="https://visualvm.github.io"
# Netbeans plattform is already included in the main archive this time
# SRC_URI="https://github.com/oracle/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
# https://github.com/oracle/${PN}/releases/download/${PV}/${NBZ}"
SRC_URI="https://github.com/oracle/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2-with-linking-exception"
SLOT="7"
KEYWORDS="amd64"
RDEPEND="
>=virtual/jre-1.8"
# it does not compile with java 11
DEPEND="
virtual/jdk:1.8"
S="${WORKDIR}/${P}/${PN}"
QA_PREBUILT="
/usr/share/visualvm/platform/modules/lib/amd64/linux/libjnidispatch-nb.so
/usr/share/visualvm/cluster/lib/deployed/jdk1[56]/linux-amd64/libprofilerinterface.so
"
EANT_BUILD_TARGET=build
INSTALL_DIR=/usr/share/${PN}
src_unpack() {
unpack ${P}.tar.gz
cd "${S}" || die
# unpack ${NBZ}
unpack "${S}"/"${NBZ}" # archive is included in the main archive
}
src_prepare() {
default
# Remove unneeded binaries
rm -rv netbeans/platform/lib/*.{dll,exe} \
netbeans/platform/modules/lib/{amd64/*.dll,i386,x86} || die
find libs.profiler/lib.profiler/release/lib/deployed/jdk1? -mindepth 1 \
-maxdepth 1 ! -name linux-amd64 -exec rm -rv {} + || die
}
src_install() {
# this is the visualvm cluster
insinto ${INSTALL_DIR}
doins -r build/cluster netbeans/{harness,platform}
# configuration file that can be used to tweak visualvm startup parameters
insinto /etc/${PN}
newins "${FILESDIR}"/${PN}-r2.conf ${PN}.conf
# visualvm runtime script
newbin "${FILESDIR}"/${PN}-r2.sh ${PN}
# makes visualvm entry
make_desktop_entry ${PN} VisualVM java "Development;Java;"
}