public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-java/jvmstat/
@ 2019-04-01  8:53 Patrice Clement
  0 siblings, 0 replies; 6+ messages in thread
From: Patrice Clement @ 2019-04-01  8:53 UTC (permalink / raw
  To: gentoo-commits

commit:     aad7f24806973b835e68e37d3918b6bc63d7f4c3
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 31 18:53:18 2019 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Mon Apr  1 08:51:35 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aad7f248

dev-java/jvmstat: clean up old.

Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 dev-java/jvmstat/jvmstat-3.0.ebuild | 54 -------------------------------------
 1 file changed, 54 deletions(-)

diff --git a/dev-java/jvmstat/jvmstat-3.0.ebuild b/dev-java/jvmstat/jvmstat-3.0.ebuild
deleted file mode 100644
index 2d11cc6a946..00000000000
--- a/dev-java/jvmstat/jvmstat-3.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit java-pkg-2 versionator
-
-MY_PV=$(replace_version_separator 1 '_')
-DESCRIPTION="Monitoring APIs and tools for monitoring the performance of the JVM"
-HOMEPAGE="http://java.sun.com/performance/jvmstat/"
-SRC_URI="jvmstat-${MY_PV}.zip"
-
-LICENSE="sun-bcla-jvmstat"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc"
-
-RESTRICT="fetch strip"
-
-DEPEND="app-arch/unzip"
-RDEPEND=">=virtual/jre-1.5"
-
-S="${WORKDIR}/jvmstat/"
-
-INSTTO="/opt/${PN}"
-
-pkg_nofetch() {
-
-	einfo "Please go to following URL:"
-	einfo " ${HOMEPAGE}"
-	einfo "download file named ${SRC_URI} and place it into"
-	einfo " your DISTDIR directory."
-
-}
-
-src_install() {
-
-	dodir "${INSTTO}"
-	cd "${S}"
-	cp -r jars bin "${D}/${INSTTO}"
-
-	dodoc README
-	use doc && dodoc -r docs
-
-	dodir /opt/bin
-	cat > "${D}/opt/bin/visualgc" <<-EOF
-	#!/bin/bash
-	export JVMSTAT_JAVA_HOME=$(java-config -O)
-	cd /opt/jvmstat/bin/
-	./visualgc \${@}
-	EOF
-	fperms 755 /opt/bin/visualgc
-
-}


^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-java/jvmstat/
@ 2019-04-01  8:53 Patrice Clement
  0 siblings, 0 replies; 6+ messages in thread
From: Patrice Clement @ 2019-04-01  8:53 UTC (permalink / raw
  To: gentoo-commits

commit:     9c08b9d9d2fbac46023c26e6321f49ab8fba6799
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 31 18:52:58 2019 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Mon Apr  1 08:51:34 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c08b9d9

dev-java/jvmstat: EAPI 6 bump.

Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 dev-java/jvmstat/jvmstat-3.0-r1.ebuild | 59 ++++++++++++++++++++++++++++++++++
 1 file changed, 59 insertions(+)

diff --git a/dev-java/jvmstat/jvmstat-3.0-r1.ebuild b/dev-java/jvmstat/jvmstat-3.0-r1.ebuild
new file mode 100644
index 00000000000..a8fd913ef6f
--- /dev/null
+++ b/dev-java/jvmstat/jvmstat-3.0-r1.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit java-pkg-2 versionator
+
+MY_PV=$(replace_version_separator 1 '_')
+
+DESCRIPTION="Monitoring APIs and tools for monitoring the performance of the JVM"
+HOMEPAGE="http://java.sun.com/performance/jvmstat/"
+SRC_URI="jvmstat-${MY_PV}.zip"
+
+LICENSE="sun-bcla-jvmstat"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+
+RESTRICT="fetch strip"
+
+DEPEND="
+	app-arch/unzip
+	>=virtual/jdk-1.5"
+
+RDEPEND="
+	>=virtual/jre-1.5"
+
+S="${WORKDIR}/jvmstat/"
+
+INSTTO="/opt/${PN}"
+
+pkg_nofetch() {
+	einfo "Please go to following URL:"
+	einfo " ${HOMEPAGE}"
+	einfo "download file named ${SRC_URI} and place it into"
+	einfo " your DISTDIR directory."
+}
+
+src_install() {
+	dodir "${INSTTO}"
+	cd "${S}" || die
+	cp -r jars bin "${D}/${INSTTO}" || die
+
+	einstalldocs
+
+	if use doc; then
+		dodoc -r docs
+	fi
+
+	dodir /opt/bin
+	cat > "${D}/opt/bin/visualgc" <<-EOF
+	#!/bin/bash
+	export JVMSTAT_JAVA_HOME=$(java-config -O)
+	cd /opt/jvmstat/bin/
+	./visualgc \${@}
+	EOF
+	fperms 755 /opt/bin/visualgc
+
+}


^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-java/jvmstat/
@ 2018-12-20 17:06 Ben Kohler
  0 siblings, 0 replies; 6+ messages in thread
From: Ben Kohler @ 2018-12-20 17:06 UTC (permalink / raw
  To: gentoo-commits

commit:     bdfd0079366390396bb4b93dd36e044b51de1b57
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 20 16:57:39 2018 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Thu Dec 20 17:05:53 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdfd0079

dev-java/jvmstat: don't reference ${DISTDIR} in pkg_nofetch

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 dev-java/jvmstat/jvmstat-3.0.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-java/jvmstat/jvmstat-3.0.ebuild b/dev-java/jvmstat/jvmstat-3.0.ebuild
index ebac4a87c59..2d11cc6a946 100644
--- a/dev-java/jvmstat/jvmstat-3.0.ebuild
+++ b/dev-java/jvmstat/jvmstat-3.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=0
@@ -28,8 +28,8 @@ pkg_nofetch() {
 
 	einfo "Please go to following URL:"
 	einfo " ${HOMEPAGE}"
-	einfo "download file named ${SRC_URI} and place it in:"
-	einfo " ${DISTDIR}"
+	einfo "download file named ${SRC_URI} and place it into"
+	einfo " your DISTDIR directory."
 
 }
 


^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-java/jvmstat/
@ 2017-12-18 23:30 Ulrich Müller
  0 siblings, 0 replies; 6+ messages in thread
From: Ulrich Müller @ 2017-12-18 23:30 UTC (permalink / raw
  To: gentoo-commits

commit:     a495b46ea3b08bc7a87466e6898b28c59e25c555
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 18 23:30:48 2017 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Mon Dec 18 23:30:48 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a495b46e

dev-java/jvmstat: Update Manifest hashes.

 dev-java/jvmstat/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/jvmstat/Manifest b/dev-java/jvmstat/Manifest
index 6a252a7e4b9..fea77e8de02 100644
--- a/dev-java/jvmstat/Manifest
+++ b/dev-java/jvmstat/Manifest
@@ -1 +1 @@
-DIST jvmstat-3_0.zip 153629 SHA256 3d3fad22aa65f356f6ecca050216f814fcdf20c0611a1f689969991d7a1ccb79 SHA512 c3967f5c11ef70aac3b3131c7ca1330c4ea377e59a2e9fb18329cfd9c82a8363efd960c9fb71e4d5f7e81867bd24e5bb6263d2f38b95878222c9184c0aaf4f12 WHIRLPOOL 33c476ca900bad34b5fe177ae77add08af3729974e93049f76da76d6c2a950af39f863faf1db9fce0b3634571fc4c59a8971b9b672175c9f1f8a43ec82f98228
+DIST jvmstat-3_0.zip 153629 BLAKE2B 9191873c9d719a0aab33e3eb7d8ef056dc93861f81c09ef10f7adea457fbfb39f347d34d0b84410457b0b0c52479620bde1060bc5fbc6f7dd1c23efe643d385c SHA512 c3967f5c11ef70aac3b3131c7ca1330c4ea377e59a2e9fb18329cfd9c82a8363efd960c9fb71e4d5f7e81867bd24e5bb6263d2f38b95878222c9184c0aaf4f12


^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-java/jvmstat/
@ 2017-04-08 21:57 Patrice Clement
  0 siblings, 0 replies; 6+ messages in thread
From: Patrice Clement @ 2017-04-08 21:57 UTC (permalink / raw
  To: gentoo-commits

commit:     130a57aa9c6c98d7bf27d73f2274fcc37b4bd5a5
Author:     Harri Nieminen <moikkis <AT> gmail <DOT> com>
AuthorDate: Sat Apr  1 18:06:15 2017 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sat Apr  8 21:52:11 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=130a57aa

dev-java/jvmstat: fix toolong DESCRIPTION.

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-java/jvmstat/jvmstat-3.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-java/jvmstat/jvmstat-3.0.ebuild b/dev-java/jvmstat/jvmstat-3.0.ebuild
index 9ca317db9bd..9e79f7c6a47 100644
--- a/dev-java/jvmstat/jvmstat-3.0.ebuild
+++ b/dev-java/jvmstat/jvmstat-3.0.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 inherit java-pkg-2 versionator
 
 MY_PV=$(replace_version_separator 1 '_')
-DESCRIPTION="Monitoring APIs and tools for monitoring the performance of the JVM in production environments"
+DESCRIPTION="Monitoring APIs and tools for monitoring the performance of the JVM"
 HOMEPAGE="http://java.sun.com/performance/jvmstat/"
 SRC_URI="jvmstat-${MY_PV}.zip"
 


^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-java/jvmstat/
@ 2017-03-29 17:27 Ulrich Müller
  0 siblings, 0 replies; 6+ messages in thread
From: Ulrich Müller @ 2017-03-29 17:27 UTC (permalink / raw
  To: gentoo-commits

commit:     123b1eae6df29c031a69df45076a3a3d73f9f3d4
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 29 17:21:56 2017 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Wed Mar 29 17:27:06 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=123b1eae

dev-java/jvmstat: Regenerate Manifest digests.

Bug: 612726
Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-java/jvmstat/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/jvmstat/Manifest b/dev-java/jvmstat/Manifest
index 3833ec68f35..6a252a7e4b9 100644
--- a/dev-java/jvmstat/Manifest
+++ b/dev-java/jvmstat/Manifest
@@ -1 +1 @@
-DIST jvmstat-3_0.zip 153629 SHA256 3d3fad22aa65f356f6ecca050216f814fcdf20c0611a1f689969991d7a1ccb79
+DIST jvmstat-3_0.zip 153629 SHA256 3d3fad22aa65f356f6ecca050216f814fcdf20c0611a1f689969991d7a1ccb79 SHA512 c3967f5c11ef70aac3b3131c7ca1330c4ea377e59a2e9fb18329cfd9c82a8363efd960c9fb71e4d5f7e81867bd24e5bb6263d2f38b95878222c9184c0aaf4f12 WHIRLPOOL 33c476ca900bad34b5fe177ae77add08af3729974e93049f76da76d6c2a950af39f863faf1db9fce0b3634571fc4c59a8971b9b672175c9f1f8a43ec82f98228


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

end of thread, other threads:[~2019-04-01  8:53 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-01  8:53 [gentoo-commits] repo/gentoo:master commit in: dev-java/jvmstat/ Patrice Clement
  -- strict thread matches above, loose matches on Subject: below --
2019-04-01  8:53 Patrice Clement
2018-12-20 17:06 Ben Kohler
2017-12-18 23:30 Ulrich Müller
2017-04-08 21:57 Patrice Clement
2017-03-29 17:27 Ulrich Müller

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