diff options
-rw-r--r-- | Changes | 4 | ||||
-rw-r--r-- | META.yml | 3 | ||||
-rw-r--r-- | Makefile.PL | 1 |
3 files changed, 5 insertions, 3 deletions
@@ -1,5 +1,9 @@ | |||
1 | Revision history for Perl module Nagios::Plugin. | 1 | Revision history for Perl module Nagios::Plugin. |
2 | 2 | ||
3 | 0.15 19th December 2006 | ||
4 | - exposed Getopt and Threshold functionality from top level Nagios::Plugin | ||
5 | - exchanged Class::Struct for Class::Accessor | ||
6 | |||
3 | 0.14 18th October 2006 | 7 | 0.14 18th October 2006 |
4 | - Fixed version number due to CPAN upload | 8 | - Fixed version number due to CPAN upload |
5 | 9 | ||
@@ -1,13 +1,12 @@ | |||
1 | # http://module-build.sourceforge.net/META-spec.html | 1 | # http://module-build.sourceforge.net/META-spec.html |
2 | #XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX# | 2 | #XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX# |
3 | name: Nagios-Plugin | 3 | name: Nagios-Plugin |
4 | version: 0.14 | 4 | version: 0.15 |
5 | version_from: lib/Nagios/Plugin/Functions.pm | 5 | version_from: lib/Nagios/Plugin/Functions.pm |
6 | installdirs: site | 6 | installdirs: site |
7 | requires: | 7 | requires: |
8 | Carp: 0 | 8 | Carp: 0 |
9 | Class::Accessor: 0.22 | 9 | Class::Accessor: 0.22 |
10 | Class::Struct: 0 | ||
11 | Params::Validate: 0.24 | 10 | Params::Validate: 0.24 |
12 | Test::More: 0.62 | 11 | Test::More: 0.62 |
13 | 12 | ||
diff --git a/Makefile.PL b/Makefile.PL index 275883f..540b24b 100644 --- a/Makefile.PL +++ b/Makefile.PL | |||
@@ -6,7 +6,6 @@ WriteMakefile( | |||
6 | NAME => 'Nagios::Plugin', | 6 | NAME => 'Nagios::Plugin', |
7 | VERSION_FROM => 'lib/Nagios/Plugin/Functions.pm', # finds $VERSION | 7 | VERSION_FROM => 'lib/Nagios/Plugin/Functions.pm', # finds $VERSION |
8 | PREREQ_PM => { | 8 | PREREQ_PM => { |
9 | Class::Struct => 0, | ||
10 | Params::Validate => 0.24, | 9 | Params::Validate => 0.24, |
11 | Class::Accessor => 0.22, | 10 | Class::Accessor => 0.22, |
12 | Test::More => 0.62, | 11 | Test::More => 0.62, |