diff options
author | Dylan William Hardison <dylan@hardison.net> | 2016-04-26 17:02:49 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2016-04-26 17:02:49 +0200 |
commit | c44470a368465adfe329fcfc32492829a21878da (patch) | |
tree | 84a4e0a7cfd1784f33451aa949ac4860ee813a69 | |
parent | 8506c4e0760251a4ad21df08d9a853f526df182e (diff) | |
download | bugzilla-c44470a368465adfe329fcfc32492829a21878da.tar.gz bugzilla-c44470a368465adfe329fcfc32492829a21878da.tar.xz |
fix module metadata
-rw-r--r-- | META.json | 9 | ||||
-rw-r--r-- | META.yml | 9 | ||||
-rw-r--r-- | Makefile.PL | 2 | ||||
-rw-r--r-- | t/critic-core.ini | 9 |
4 files changed, 19 insertions, 10 deletions
@@ -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" } @@ -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 ###################################################################### |