summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--META.json9
-rw-r--r--META.yml9
-rw-r--r--Makefile.PL2
-rw-r--r--t/critic-core.ini9
4 files changed, 19 insertions, 10 deletions
diff --git a/META.json b/META.json
index cfb9e0e96..e09eded53 100644
--- a/META.json
+++ b/META.json
@@ -4,7 +4,7 @@
"Bugzilla Developers <developers@bugzilla.org>"
],
"dynamic_config" : 1,
- "generated_by" : "ExtUtils::MakeMaker version 7.0401, CPAN::Meta::Converter version 2.150005",
+ "generated_by" : "ExtUtils::MakeMaker version 7.1, CPAN::Meta::Converter version 2.150005",
"license" : [
"unknown"
],
@@ -348,7 +348,7 @@
},
"runtime" : {
"requires" : {
- "CGI" : "3.51",
+ "CGI" : "4.09",
"DBI" : "1.614",
"Date::Format" : "2.23",
"DateTime" : "0.75",
@@ -362,11 +362,12 @@
"Math::Random::ISAAC" : "v1.0.1",
"Template" : "2.24",
"URI" : "1.55",
- "perl" : "5.010001"
+ "perl" : "5.014000"
}
},
"test" : {
"requires" : {
+ "Pod::Checker" : "0",
"Pod::Coverage" : "0",
"Test::More" : "0",
"Test::Perl::Critic" : "0"
@@ -375,5 +376,5 @@
},
"release_status" : "stable",
"version" : "5.1",
- "x_serialization_backend" : "JSON::PP version 2.27300"
+ "x_serialization_backend" : "JSON::PP version 2.27203"
}
diff --git a/META.yml b/META.yml
index 907d969ce..e42d4a602 100644
--- a/META.yml
+++ b/META.yml
@@ -4,13 +4,14 @@ author:
- 'Bugzilla Developers <developers@bugzilla.org>'
build_requires:
ExtUtils::MakeMaker: '0'
+ Pod::Checker: '0'
Pod::Coverage: '0'
Test::More: '0'
Test::Perl::Critic: '0'
configure_requires:
ExtUtils::MakeMaker: '6.55'
dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 7.0401, CPAN::Meta::Converter version 2.150005'
+generated_by: 'ExtUtils::MakeMaker version 7.1, CPAN::Meta::Converter version 2.150005'
license: unknown
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -162,7 +163,7 @@ optional_features:
Test::Taint: '1.06'
XMLRPC::Lite: '0.712'
requires:
- CGI: '3.51'
+ CGI: '4.09'
DBI: '1.614'
Date::Format: '2.23'
DateTime: '0.75'
@@ -176,6 +177,6 @@ requires:
Math::Random::ISAAC: v1.0.1
Template: '2.24'
URI: '1.55'
- perl: '5.010001'
+ perl: '5.014000'
version: '5.1'
-x_serialization_backend: 'CPAN::Meta::YAML version 0.012'
+x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff --git a/Makefile.PL b/Makefile.PL
index 5742f8429..63e7a23b4 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -118,7 +118,7 @@ my %optional_features = (
description => 'Documentation',
},
xmlrpc => {
- description => 'XML-RPC Interfaze',
+ description => 'XML-RPC Interface',
prereqs => {
runtime =>
{ requires => { 'XMLRPC::Lite' => '0.712', 'SOAP::Lite' => '0.712', 'Test::Taint' => '1.06' } }
diff --git a/t/critic-core.ini b/t/critic-core.ini
index 258913d1c..308af6c69 100644
--- a/t/critic-core.ini
+++ b/t/critic-core.ini
@@ -26,11 +26,18 @@ severity = 5
[-Variables::ProhibitConditionalDeclarations]
[-Subroutines::ProhibitReturnSort]
[-TestingAndDebugging::ProhibitNoStrict]
-[Subroutines::ProhibitSubroutinePrototypes]
+
+# we can deal with this later.
+[-Subroutines::ProhibitSubroutinePrototypes]
+
[-Subroutines::ProhibitNestedSubs]
[-ControlStructures::ProhibitMutatingListFunctions]
[-InputOutput::ProhibitInteractiveTest]
+[BuiltinFunctions::ProhibitBooleanGrep]
+severity = 5
+[InputOutput::RequireEncodingWithUTF8Layer]
+severity = 3
######################################################################