Accepting request 824720 from devel:languages:perl:autoupdate
updated to 1.13 see /usr/share/doc/packages/perl-jmx4perl/CHANGES 1.13 (2020-05-12) - Fixed bug in output for Tomcat 8 check_jmx4perl Nagios check - Changed CLI interface of 'jmx4perl list' and the possible arguments for LIST request. Note, that this change is not backwards compatible. However the fix is trivial: Instead of providing a full path into the LIST response as single argument (e.g. 'java.lang/type=Memory/HeapMemoryUsage') you have to provide two arguments for the MBean and the path into MBean's meta data (e.g. 'java.lang:type=Memory' and'HeapMemoryUsage') - Fixed Dockerfile - Add Tomcat 8 specific checks OBS-URL: https://build.opensuse.org/request/show/824720 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-jmx4perl?expand=0&rev=5
This commit is contained in:
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:685d378f1d7388d63c1896e4d951a9381a583e9265dec81121f355e4861909a7
|
|
||||||
size 359611
|
|
3
jmx4perl-1.13.tar.gz
Normal file
3
jmx4perl-1.13.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:54b062dc7b897b30b96e37cd2abe794a52456d4bb8590a84caa4eb0ad98f34a0
|
||||||
|
size 360445
|
@@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 13 10:38:48 UTC 2020 - Tina Müller <timueller+perl@suse.de>
|
||||||
|
|
||||||
|
updated to 1.13
|
||||||
|
see /usr/share/doc/packages/perl-jmx4perl/CHANGES
|
||||||
|
|
||||||
|
1.13 (2020-05-12)
|
||||||
|
- Fixed bug in output for Tomcat 8 check_jmx4perl Nagios check
|
||||||
|
- Changed CLI interface of 'jmx4perl list' and the possible arguments
|
||||||
|
for LIST request. Note, that this change is not backwards compatible.
|
||||||
|
However the fix is trivial: Instead of providing a full path into the
|
||||||
|
LIST response as single argument (e.g. 'java.lang/type=Memory/HeapMemoryUsage')
|
||||||
|
you have to provide two arguments for the MBean and the path into MBean's
|
||||||
|
meta data (e.g. 'java.lang:type=Memory' and'HeapMemoryUsage')
|
||||||
|
- Fixed Dockerfile
|
||||||
|
- Add Tomcat 8 specific checks
|
||||||
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Sep 20 09:32:52 UTC 2015 - coolo@suse.com
|
Sun Sep 20 09:32:52 UTC 2015 - coolo@suse.com
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-jmx4perl
|
# spec file for package perl-jmx4perl
|
||||||
#
|
#
|
||||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2020 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -12,19 +12,19 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: perl-jmx4perl
|
Name: perl-jmx4perl
|
||||||
Version: 1.12
|
Version: 1.13
|
||||||
Release: 0
|
Release: 0
|
||||||
%define cpan_name jmx4perl
|
%define cpan_name jmx4perl
|
||||||
Summary: Easy JMX access to Java EE applications
|
Summary: Easy JMX access to Java EE applications
|
||||||
License: GPL-1.0+
|
License: GPL-1.0-or-later
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
Url: http://search.cpan.org/dist/jmx4perl/
|
URL: https://metacpan.org/release/%{cpan_name}
|
||||||
Source0: http://www.cpan.org/authors/id/R/RO/ROLAND/%{cpan_name}-%{version}.tar.gz
|
Source0: https://cpan.metacpan.org/authors/id/R/RO/ROLAND/%{cpan_name}-%{version}.tar.gz
|
||||||
Source1: cpanspec.yml
|
Source1: cpanspec.yml
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@@ -73,10 +73,10 @@ Easy JMX access to Java EE applications
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{cpan_name}-%{version}
|
%setup -q -n %{cpan_name}-%{version}
|
||||||
find . -type f -print0 | xargs -0 chmod 644
|
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -name "configure" -print0 | xargs -0 chmod 644
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__perl} Build.PL installdirs=vendor
|
perl Build.PL installdirs=vendor
|
||||||
./Build build flags=%{?_smp_mflags}
|
./Build build flags=%{?_smp_mflags}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
@@ -88,6 +88,7 @@ find . -type f -print0 | xargs -0 chmod 644
|
|||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,755)
|
%defattr(-,root,root,755)
|
||||||
%doc CHANGES config docker examples it LICENSE README scripts
|
%doc CHANGES examples README
|
||||||
|
%license LICENSE
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Reference in New Issue
Block a user