[gentoo-commits] repo/gentoo:master commit in: dev-java/jvmstat/

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

dev-java/jvmstat: EAPI 6 bump.

Signed-off-by: Patrice Clement  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 000..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
+
+}



[gentoo-commits] repo/gentoo:master commit in: dev-java/jvmstat/

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

dev-java/jvmstat: clean up old.

Signed-off-by: Patrice Clement  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..000
--- 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
-
-}



[gentoo-commits] repo/gentoo:master commit in: dev-java/jvmstat/

2018-12-20 Thread Ben Kohler
commit: bdfd0079366390396bb4b93dd36e044b51de1b57
Author: Ben Kohler  gentoo  org>
AuthorDate: Thu Dec 20 16:57:39 2018 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Thu Dec 20 17:05:53 2018 +
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  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."
 
 }
 



[gentoo-commits] repo/gentoo:master commit in: dev-java/jvmstat/

2017-12-18 Thread Ulrich Müller
commit: a495b46ea3b08bc7a87466e6898b28c59e25c555
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Dec 18 23:30:48 2017 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Dec 18 23:30:48 2017 +
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



[gentoo-commits] repo/gentoo:master commit in: dev-java/jvmstat/

2017-04-08 Thread Patrice Clement
commit: 130a57aa9c6c98d7bf27d73f2274fcc37b4bd5a5
Author: Harri Nieminen  gmail  com>
AuthorDate: Sat Apr  1 18:06:15 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Apr  8 21:52:11 2017 +
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"
 



[gentoo-commits] repo/gentoo:master commit in: dev-java/jvmstat/

2017-03-29 Thread Ulrich Müller
commit: 123b1eae6df29c031a69df45076a3a3d73f9f3d4
Author: Ulrich Müller  gentoo  org>
AuthorDate: Wed Mar 29 17:21:56 2017 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Wed Mar 29 17:27:06 2017 +
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