Skip to content

Commit

Permalink
Bug 996893: Perl 5.18 and newer throw tons of warnings about deprecat…
Browse files Browse the repository at this point in the history
…ed modules

r=dkl a=sgreen
  • Loading branch information
LpSolit committed Aug 13, 2014
1 parent c19dc4f commit 9f3d18d
Show file tree
Hide file tree
Showing 266 changed files with 565 additions and 189 deletions.
1 change: 1 addition & 0 deletions Bugzilla.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla;

use 5.10.1;
use strict;
use warnings;

# We want any compile errors to get to the browser, if possible.
BEGIN {
Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Attachment.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Attachment;

use 5.10.1;
use strict;
use warnings;

=head1 NAME
Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Attachment/PatchReader.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Attachment::PatchReader;

use 5.10.1;
use strict;
use warnings;

use Config;
use IO::Select;
Expand Down
2 changes: 2 additions & 0 deletions Bugzilla/Auth.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ package Bugzilla::Auth;

use 5.10.1;
use strict;
use warnings;

use fields qw(
_info_getter
_verifier
Expand Down
2 changes: 2 additions & 0 deletions Bugzilla/Auth/Login.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ package Bugzilla::Auth::Login;

use 5.10.1;
use strict;
use warnings;

use fields qw();

# Determines whether or not a user can logout. It's really a subroutine,
Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Auth/Login/APIKey.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Auth::Login::APIKey;

use 5.10.1;
use strict;
use warnings;

use base qw(Bugzilla::Auth::Login);

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Auth/Login/CGI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Auth::Login::CGI;

use 5.10.1;
use strict;
use warnings;

use parent qw(Bugzilla::Auth::Login);
use constant user_can_create_account => 1;
Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Auth/Login/Cookie.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Auth::Login::Cookie;

use 5.10.1;
use strict;
use warnings;

use base qw(Bugzilla::Auth::Login);
use fields qw(_login_token);
Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Auth/Login/Env.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Auth::Login::Env;

use 5.10.1;
use strict;
use warnings;

use parent qw(Bugzilla::Auth::Login);

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Auth/Login/Stack.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Auth::Login::Stack;

use 5.10.1;
use strict;
use warnings;

use base qw(Bugzilla::Auth::Login);
use fields qw(
Expand Down
2 changes: 2 additions & 0 deletions Bugzilla/Auth/Persist/Cookie.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ package Bugzilla::Auth::Persist::Cookie;

use 5.10.1;
use strict;
use warnings;

use fields qw();

use Bugzilla::Constants;
Expand Down
2 changes: 2 additions & 0 deletions Bugzilla/Auth/Verify.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ package Bugzilla::Auth::Verify;

use 5.10.1;
use strict;
use warnings;

use fields qw();

use Bugzilla::Constants;
Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Auth/Verify/DB.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Auth::Verify::DB;

use 5.10.1;
use strict;
use warnings;

use parent qw(Bugzilla::Auth::Verify);

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Auth/Verify/LDAP.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Auth::Verify::LDAP;

use 5.10.1;
use strict;
use warnings;

use base qw(Bugzilla::Auth::Verify);
use fields qw(
Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Auth/Verify/RADIUS.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Auth::Verify::RADIUS;

use 5.10.1;
use strict;
use warnings;

use parent qw(Bugzilla::Auth::Verify);

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Auth/Verify/Stack.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Auth::Verify::Stack;

use 5.10.1;
use strict;
use warnings;

use base qw(Bugzilla::Auth::Verify);
use fields qw(
Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Bug.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Bug;

use 5.10.1;
use strict;
use warnings;

use Bugzilla::Attachment;
use Bugzilla::Constants;
Expand Down
1 change: 1 addition & 0 deletions Bugzilla/BugMail.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::BugMail;

use 5.10.1;
use strict;
use warnings;

use Bugzilla::Error;
use Bugzilla::User;
Expand Down
1 change: 1 addition & 0 deletions Bugzilla/BugUrl.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::BugUrl;

use 5.10.1;
use strict;
use warnings;

use parent qw(Bugzilla::Object);

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/BugUrl/Bugzilla.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::BugUrl::Bugzilla;

use 5.10.1;
use strict;
use warnings;

use parent qw(Bugzilla::BugUrl);

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/BugUrl/Bugzilla/Local.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::BugUrl::Bugzilla::Local;

use 5.10.1;
use strict;
use warnings;

use parent qw(Bugzilla::BugUrl::Bugzilla);

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/BugUrl/Debian.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::BugUrl::Debian;

use 5.10.1;
use strict;
use warnings;

use parent qw(Bugzilla::BugUrl);

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/BugUrl/GitHub.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::BugUrl::GitHub;

use 5.10.1;
use strict;
use warnings;

use parent qw(Bugzilla::BugUrl);

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/BugUrl/Google.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::BugUrl::Google;

use 5.10.1;
use strict;
use warnings;

use parent qw(Bugzilla::BugUrl);

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/BugUrl/JIRA.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::BugUrl::JIRA;

use 5.10.1;
use strict;
use warnings;

use parent qw(Bugzilla::BugUrl);

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/BugUrl/Launchpad.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::BugUrl::Launchpad;

use 5.10.1;
use strict;
use warnings;

use parent qw(Bugzilla::BugUrl);

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/BugUrl/MantisBT.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::BugUrl::MantisBT;

use 5.10.1;
use strict;
use warnings;

use parent qw(Bugzilla::BugUrl);

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/BugUrl/SourceForge.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::BugUrl::SourceForge;

use 5.10.1;
use strict;
use warnings;

use parent qw(Bugzilla::BugUrl);

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/BugUrl/Trac.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::BugUrl::Trac;

use 5.10.1;
use strict;
use warnings;

use parent qw(Bugzilla::BugUrl);

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/BugUserLastVisit.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::BugUserLastVisit;

use 5.10.1;
use strict;
use warnings;

use parent qw(Bugzilla::Object);

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/CGI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::CGI;

use 5.10.1;
use strict;
use warnings;

use parent qw(CGI);

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Chart.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ package Bugzilla::Chart;

use 5.10.1;
use strict;
use warnings;

use Bugzilla::Error;
use Bugzilla::Util;
Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Classification.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Classification;

use 5.10.1;
use strict;
use warnings;

use Bugzilla::Constants;
use Bugzilla::Field;
Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Comment.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Comment;

use 5.10.1;
use strict;
use warnings;

use parent qw(Bugzilla::Object);

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Comment/TagWeights.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Comment::TagWeights;

use 5.10.1;
use strict;
use warnings;

use parent qw(Bugzilla::Object);

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Component.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Component;

use 5.10.1;
use strict;
use warnings;

use parent qw(Bugzilla::Field::ChoiceInterface Bugzilla::Object);

Expand Down
2 changes: 2 additions & 0 deletions Bugzilla/Config.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ package Bugzilla::Config;

use 5.10.1;
use strict;
use warnings;

use parent qw(Exporter);

use Bugzilla::Constants;
use Bugzilla::Hook;
use Data::Dumper;
Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Config/Admin.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Config::Admin;

use 5.10.1;
use strict;
use warnings;

use Bugzilla::Config::Common;

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Config/Advanced.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Config::Advanced;

use 5.10.1;
use strict;
use warnings;

use Bugzilla::Config::Common;

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Config/Attachment.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Config::Attachment;

use 5.10.1;
use strict;
use warnings;

use Bugzilla::Config::Common;

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Config/Auth.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Config::Auth;

use 5.10.1;
use strict;
use warnings;

use Bugzilla::Config::Common;

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Config/BugChange.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Config::BugChange;

use 5.10.1;
use strict;
use warnings;

use Bugzilla::Config::Common;
use Bugzilla::Status;
Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Config/BugFields.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Config::BugFields;

use 5.10.1;
use strict;
use warnings;

use Bugzilla::Config::Common;
use Bugzilla::Field;
Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Config/Common.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Config::Common;

use 5.10.1;
use strict;
use warnings;

use Email::Address;
use Socket;
Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Config/Core.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Config::Core;

use 5.10.1;
use strict;
use warnings;

use Bugzilla::Config::Common;

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Config/DependencyGraph.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Config::DependencyGraph;

use 5.10.1;
use strict;
use warnings;

use Bugzilla::Config::Common;

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Config/General.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Config::General;

use 5.10.1;
use strict;
use warnings;

use Bugzilla::Config::Common;

Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Config/GroupSecurity.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Config::GroupSecurity;

use 5.10.1;
use strict;
use warnings;

use Bugzilla::Config::Common;
use Bugzilla::Group;
Expand Down
1 change: 1 addition & 0 deletions Bugzilla/Config/LDAP.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package Bugzilla::Config::LDAP;

use 5.10.1;
use strict;
use warnings;

use Bugzilla::Config::Common;

Expand Down
Loading

0 comments on commit 9f3d18d

Please sign in to comment.