summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGervase Markham <gerv@gerv.net>2016-09-12 18:28:58 +0200
committerGervase Markham <gerv@mozilla.org>2016-09-12 18:32:00 +0200
commita43b2bbd196e4afe9c8d77dc5e4d0b09e1c1f3bd (patch)
treeb2b223a9297ac546f63f4aa02b993e2df434d0ed
parent22ef8ffbfe67a63c7cdbdcd7d5cbf197c6b86fed (diff)
downloadbugzilla-a43b2bbd196e4afe9c8d77dc5e4d0b09e1c1f3bd.tar.gz
bugzilla-a43b2bbd196e4afe9c8d77dc5e4d0b09e1c1f3bd.tar.xz
Bug 1294596 - remove optional Test::Taint references, as it's now mandatory. r=dylan
-rw-r--r--META.json2
-rw-r--r--META.yml2
-rw-r--r--Makefile.PL3
3 files changed, 1 insertions, 6 deletions
diff --git a/META.json b/META.json
index 8b939e496..0a0ca7b7a 100644
--- a/META.json
+++ b/META.json
@@ -158,7 +158,6 @@
"runtime" : {
"requires" : {
"JSON::RPC" : "0",
- "Test::Taint" : "1.06"
}
}
}
@@ -337,7 +336,6 @@
"runtime" : {
"requires" : {
"SOAP::Lite" : "0.712",
- "Test::Taint" : "1.06",
"XMLRPC::Lite" : "0.712"
}
}
diff --git a/META.yml b/META.yml
index 3e7792e9c..eeb5ab800 100644
--- a/META.yml
+++ b/META.yml
@@ -87,7 +87,6 @@ optional_features:
description: 'JSON-RPC Interface'
requires:
JSON::RPC: '0'
- Test::Taint: '1.06'
markdown:
description: 'Markdown syntax support for comments'
requires:
@@ -164,7 +163,6 @@ optional_features:
description: 'XML-RPC Interface'
requires:
SOAP::Lite: '0.712'
- Test::Taint: '1.06'
XMLRPC::Lite: '0.712'
recommends:
CPAN::Meta::Prereqs: '2.132830'
diff --git a/Makefile.PL b/Makefile.PL
index cbe3c8a46..ca3176202 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -174,7 +174,6 @@ my %optional_features = (
requires => {
'XMLRPC::Lite' => '0.712',
'SOAP::Lite' => '0.712',
- 'Test::Taint' => '1.06'
}
}
}
@@ -228,7 +227,7 @@ my %optional_features = (
description => 'JSON-RPC Interface',
prereqs => {
runtime =>
- { requires => { 'JSON::RPC' => 0, 'Test::Taint' => '1.06' } }
+ { requires => { 'JSON::RPC' => 0 } }
}
},
graphical_reports => {