diff options
author | Matt Selsky <selsky@columbia.edu> | 2013-01-01 23:59:13 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2013-01-01 23:59:13 +0100 |
commit | 91ad0813c473f7de1fc0aef3b17e7bc03fb67050 (patch) | |
tree | ffdfc11be664e5af96b0f4079345636fc3cfb14a /extensions/Example | |
parent | 4663186fdcb2ac1142d3697e27a8f67ce3c92510 (diff) | |
download | bugzilla-91ad0813c473f7de1fc0aef3b17e7bc03fb67050.tar.gz bugzilla-91ad0813c473f7de1fc0aef3b17e7bc03fb67050.tar.xz |
Bug 816870: All extensions must require Perl 5.10.1 to pass tests
r/a=LpSolit
Diffstat (limited to 'extensions/Example')
-rw-r--r-- | extensions/Example/Config.pm | 2 | ||||
-rw-r--r-- | extensions/Example/Extension.pm | 2 | ||||
-rw-r--r-- | extensions/Example/lib/Auth/Login.pm | 2 | ||||
-rw-r--r-- | extensions/Example/lib/Auth/Verify.pm | 2 | ||||
-rw-r--r-- | extensions/Example/lib/Config.pm | 2 | ||||
-rw-r--r-- | extensions/Example/lib/Util.pm | 2 | ||||
-rw-r--r-- | extensions/Example/lib/WebService.pm | 2 |
7 files changed, 14 insertions, 0 deletions
diff --git a/extensions/Example/Config.pm b/extensions/Example/Config.pm index b40ed9906..13635dc7f 100644 --- a/extensions/Example/Config.pm +++ b/extensions/Example/Config.pm @@ -6,6 +6,8 @@ # defined by the Mozilla Public License, v. 2.0. package Bugzilla::Extension::Example; + +use 5.10.1; use strict; use constant NAME => 'Example'; use constant REQUIRED_MODULES => [ diff --git a/extensions/Example/Extension.pm b/extensions/Example/Extension.pm index 7fc9072dc..c0015803e 100644 --- a/extensions/Example/Extension.pm +++ b/extensions/Example/Extension.pm @@ -6,6 +6,8 @@ # defined by the Mozilla Public License, v. 2.0. package Bugzilla::Extension::Example; + +use 5.10.1; use strict; use parent qw(Bugzilla::Extension); diff --git a/extensions/Example/lib/Auth/Login.pm b/extensions/Example/lib/Auth/Login.pm index 03ca2481d..c1cfe62cc 100644 --- a/extensions/Example/lib/Auth/Login.pm +++ b/extensions/Example/lib/Auth/Login.pm @@ -6,6 +6,8 @@ # defined by the Mozilla Public License, v. 2.0. package Bugzilla::Extension::Example::Auth::Login; + +use 5.10.1; use strict; use parent qw(Bugzilla::Auth::Login); use constant user_can_create_account => 0; diff --git a/extensions/Example/lib/Auth/Verify.pm b/extensions/Example/lib/Auth/Verify.pm index 0a0b40232..df5059a05 100644 --- a/extensions/Example/lib/Auth/Verify.pm +++ b/extensions/Example/lib/Auth/Verify.pm @@ -6,6 +6,8 @@ # defined by the Mozilla Public License, v. 2.0. package Bugzilla::Extension::Example::Auth::Verify; + +use 5.10.1; use strict; use parent qw(Bugzilla::Auth::Verify); use Bugzilla::Constants; diff --git a/extensions/Example/lib/Config.pm b/extensions/Example/lib/Config.pm index b0497a783..fac0046af 100644 --- a/extensions/Example/lib/Config.pm +++ b/extensions/Example/lib/Config.pm @@ -6,6 +6,8 @@ # defined by the Mozilla Public License, v. 2.0. package Bugzilla::Extension::Example::Config; + +use 5.10.1; use strict; use warnings; diff --git a/extensions/Example/lib/Util.pm b/extensions/Example/lib/Util.pm index b4ed3e0a4..ccc349c9c 100644 --- a/extensions/Example/lib/Util.pm +++ b/extensions/Example/lib/Util.pm @@ -6,6 +6,8 @@ # defined by the Mozilla Public License, v. 2.0. package Bugzilla::Extension::Example::Util; + +use 5.10.1; use strict; use warnings; diff --git a/extensions/Example/lib/WebService.pm b/extensions/Example/lib/WebService.pm index e5e14af53..c8c120616 100644 --- a/extensions/Example/lib/WebService.pm +++ b/extensions/Example/lib/WebService.pm @@ -6,6 +6,8 @@ # defined by the Mozilla Public License, v. 2.0. package Bugzilla::Extension::Example::WebService; + +use 5.10.1; use strict; use warnings; use parent qw(Bugzilla::WebService); |