commit: e623813915f68309626aed3f17974445ec3cf81e Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org> AuthorDate: Sun Feb 13 09:08:26 2022 +0000 Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org> CommitDate: Sun Feb 13 09:11:47 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6238139
dev-java/tijmp: treeclean Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org> dev-java/tijmp/Manifest | 1 - .../tijmp/files/tijmp-0.8-respect-javacflags.patch | 11 ----- dev-java/tijmp/files/tijmp-jni.h.patch | 34 ---------------- dev-java/tijmp/metadata.xml | 15 ------- dev-java/tijmp/tijmp-0.8-r1.ebuild | 47 ---------------------- profiles/package.mask | 1 - 6 files changed, 109 deletions(-) diff --git a/dev-java/tijmp/Manifest b/dev-java/tijmp/Manifest deleted file mode 100644 index 111556b129d2..000000000000 --- a/dev-java/tijmp/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST tijmp-0.8.tar.gz 347809 BLAKE2B d18fd0ba9145fb9277404a24fa26a65e4cbba34e62dfa0b080bc380d61a3dd11aab23e2c7fb982a97cb40fa216b1b3347c949cee52f7462f0113c3adef993c8d SHA512 911efd93c1548db45fcf8fd924675329aa82c6853ffe93074768646d08f80f4b076f336dba0da293d1acb084a12eb62c68803fa9408e2b64b2b82ab62db1de25 diff --git a/dev-java/tijmp/files/tijmp-0.8-respect-javacflags.patch b/dev-java/tijmp/files/tijmp-0.8-respect-javacflags.patch deleted file mode 100644 index 96902aedf4ec..000000000000 --- a/dev-java/tijmp/files/tijmp-0.8-respect-javacflags.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/Makefile.am -+++ b/Makefile.am -@@ -18,7 +18,7 @@ - java_files := $(foreach dir,$(dirs),$(find_files)) - class_files := $(patsubst $(jdir)/%.java,%.class,$(java_files)) - --JCFLAGS := -source 1.6 -encoding ISO-8859-1 -Xlint:unchecked -deprecation -+JCFLAGS := $(JAVACFLAGS) -encoding ISO-8859-1 -Xlint:unchecked -deprecation - - # standard java compilation.. - JAVACOMPILE := $(JAVAC) $(JCFLAGS) -sourcepath $(jdir) -d $(top_builddir) diff --git a/dev-java/tijmp/files/tijmp-jni.h.patch b/dev-java/tijmp/files/tijmp-jni.h.patch deleted file mode 100644 index 02a9b43670b0..000000000000 --- a/dev-java/tijmp/files/tijmp-jni.h.patch +++ /dev/null @@ -1,34 +0,0 @@ -# Patch by Vlastimil Babka <[email protected]> -# Some JDK's such as ibm-jdk-bin don't have jni_md.h, so make the test more robust ---- a/configure.ac 2009-01-10 00:29:01.000000000 +0100 -+++ b/configure.ac 2010-04-05 12:17:35.000000000 +0200 -@@ -24,22 +24,16 @@ - JAVA_HOME=/usr/local/jdk - fi - --jni_md=no --AC_CHECK_HEADERS($JAVA_HOME/include/$java_os/jni_md.h, -- jni_md=found) -+dnl ok, maybe we dont always need include/$java_os but we use an -I for it anyway... -+CPPFLAGS="$CPPFLAGS -I$JAVA_HOME/include -I$JAVA_HOME/include/$java_os" - --if test $jni_md = no --then --AC_CHECK_HEADERS($JAVA_HOME/include/jni_md.h, -- jni_md=found) --fi -+jni_h=no -+AC_CHECK_HEADERS($JAVA_HOME/include/jni.h, -+ jni_h=found) - --if test $jni_md = no -+if test $jni_h = no - then -- AC_MSG_ERROR(Does JAVA_HOME point to the java SDK directory?) --else --dnl ok, maybe we dont need include/$java_os but we use an -I for it anyway... -- CPPFLAGS="$CPPFLAGS -I$JAVA_HOME/include -I$JAVA_HOME/include/$java_os" -+ AC_MSG_ERROR(Could not find jni.h. Does JAVA_HOME point to the java SDK directory?) - fi - - AC_CHECK_HEADER($JAVA_HOME/include/jvmti.h, diff --git a/dev-java/tijmp/metadata.xml b/dev-java/tijmp/metadata.xml deleted file mode 100644 index 2843279173e1..000000000000 --- a/dev-java/tijmp/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="project"> - <email>[email protected]</email> - <name>Java</name> -</maintainer> - -<longdescription> -JMP is a profiler for java that can be used to trace objects usage and -method timings. JMP uses the JVMPI interface to gather statistics -and interact with the JVM. JMP uses a GTK+ interface to show the status. -</longdescription> - -</pkgmetadata> diff --git a/dev-java/tijmp/tijmp-0.8-r1.ebuild b/dev-java/tijmp/tijmp-0.8-r1.ebuild deleted file mode 100644 index dfe78930f1a1..000000000000 --- a/dev-java/tijmp/tijmp-0.8-r1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools java-pkg-2 - -DESCRIPTION="Java Memory Profiler" -HOMEPAGE="http://www.khelekore.org/jmp/tijmp/" -SRC_URI="http://www.khelekore.org/jmp/tijmp/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 x86" - -RDEPEND=" - >=virtual/jre-1.6" - -DEPEND=" - >=virtual/jdk-1.6" - -PATCHES=( - "${FILESDIR}/${PN}-jni.h.patch" - "${FILESDIR}/${P}-respect-javacflags.patch" -) - -src_prepare() { - default - eautoreconf -} - -src_install() { - emake DESTDIR="${D}" jardir="/usr/share/${PN}/lib/" install - java-pkg_regjar "${D}/usr/share/${PN}/lib/${PN}.jar" - java-pkg_regso "${D}/usr/$(get_libdir)/lib${PN}.so" - - cat > "${T}/${PN}" <<- "EOF" || die -#!/usr/bin/env bash -java -Dtijmp.jar="$(java-config -p tijmp)" -agentlib:tijmp "${@}" -EOF - dobin "${T}/${PN}" -} - -pkg_postinst() { - einfo "For your convenience, ${PN} wrapper can be used to run java" - einfo "with profiling. Just use it in place of the 'java' command." -} diff --git a/profiles/package.mask b/profiles/package.mask index 8617096006eb..1d9eb3c35e64 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -237,7 +237,6 @@ dev-java/junitperf dev-java/kunststoff dev-java/saxpath dev-java/sun-jaf -dev-java/tijmp # Ulrich Müller <[email protected]> (2022-01-15) # Pretest versions, masked for testing.
