GIT_SILENT: Bump all module requirements to Perl 5.14.

wilder
Michael Pyne 11 years ago
parent 06671957fa
commit aaca655198
  1. 2
      modules/ksb/BuildException.pm
  2. 2
      modules/ksb/BuildSystem.pm
  3. 2
      modules/ksb/BuildSystem/Autotools.pm
  4. 2
      modules/ksb/BuildSystem/CMakeBootstrap.pm
  5. 2
      modules/ksb/BuildSystem/KDE4.pm
  6. 2
      modules/ksb/BuildSystem/QMake.pm
  7. 2
      modules/ksb/BuildSystem/Qt4.pm
  8. 2
      modules/ksb/Debug.pm
  9. 2
      modules/ksb/DependencyResolver.pm
  10. 2
      modules/ksb/IPC.pm
  11. 2
      modules/ksb/IPC/Null.pm
  12. 2
      modules/ksb/IPC/Pipe.pm
  13. 2
      modules/ksb/KDEXMLReader.pm
  14. 2
      modules/ksb/Module/BranchGroupResolver.pm
  15. 2
      modules/ksb/ModuleSet/KDEProjects.pm
  16. 2
      modules/ksb/ModuleSet/Null.pm
  17. 2
      modules/ksb/PhaseList.pm
  18. 2
      modules/ksb/RecursiveFH.pm
  19. 2
      modules/ksb/Updater.pm
  20. 2
      modules/ksb/Updater/Bzr.pm
  21. 2
      modules/ksb/Updater/KDEProject.pm
  22. 2
      modules/ksb/Updater/KDEProjectMetadata.pm
  23. 2
      modules/ksb/Updater/Svn.pm
  24. 2
      modules/ksb/Util.pm
  25. 2
      modules/ksb/Version.pm
  26. 2
      modules/ksb/l10nSystem.pm

@ -3,7 +3,7 @@ package ksb::BuildException;
# A class to wrap 'exception' messages for the script, allowing them to be
# dispatch based on type and automatically stringified.
use v5.10; # Needed for state keyword
use 5.014; # Needed for state keyword
use strict;
use warnings;
use overload

@ -6,7 +6,7 @@ package ksb::BuildSystem;
use strict;
use warnings;
use v5.10;
use 5.014;
our $VERSION = '0.10';

@ -4,7 +4,7 @@ package ksb::BuildSystem::Autotools;
use strict;
use warnings;
use v5.10;
use 5.014;
our $VERSION = '0.10';

@ -5,7 +5,7 @@ package ksb::BuildSystem::CMakeBootstrap;
use strict;
use warnings;
use v5.10;
use 5.014;
our $VERSION = '0.10';

@ -4,7 +4,7 @@ package ksb::BuildSystem::KDE4;
use strict;
use warnings;
use v5.10;
use 5.014;
our $VERSION = '0.10';

@ -4,7 +4,7 @@ package ksb::BuildSystem::QMake;
use strict;
use warnings;
use v5.10;
use 5.014;
our $VERSION = '0.10';

@ -4,7 +4,7 @@ package ksb::BuildSystem::Qt4;
use strict;
use warnings;
use v5.10;
use 5.014;
our $VERSION = '0.10';

@ -4,7 +4,7 @@ package ksb::Debug;
use strict;
use warnings;
use v5.10;
use 5.014;
our $VERSION = '0.10';

@ -8,7 +8,7 @@ package ksb::DependencyResolver;
use strict;
use warnings;
use v5.10;
use 5.014;
our $VERSION = '0.20';

@ -7,7 +7,7 @@ package ksb::IPC;
use strict;
use warnings;
use v5.10;
use 5.014;
no if $] >= 5.018, 'warnings', 'experimental::smartmatch';
our $VERSION = '0.20';

@ -4,7 +4,7 @@ package ksb::IPC::Null;
use strict;
use warnings;
use v5.10;
use 5.014;
our $VERSION = '0.10';

@ -4,7 +4,7 @@ package ksb::IPC::Pipe;
use strict;
use warnings;
use v5.10;
use 5.014;
our $VERSION = '0.20';

@ -12,7 +12,7 @@ package ksb::KDEXMLReader;
use strict;
use warnings;
use v5.10;
use 5.014;
our $VERSION = '0.10';

@ -8,7 +8,7 @@ package ksb::Module::BranchGroupResolver;
use strict;
use warnings;
use v5.10;
use 5.014;
our $VERSION = '0.10';

@ -15,7 +15,7 @@ package ksb::ModuleSet::KDEProjects;
use strict;
use warnings;
use v5.10;
use 5.014;
no if $] >= 5.018, 'warnings', 'experimental::smartmatch';
our $VERSION = '0.10';

@ -7,7 +7,7 @@ package ksb::ModuleSet::Null;
use strict;
use warnings;
use v5.10;
use 5.014;
our $VERSION = '0.10';
our @ISA = qw(ksb::ModuleSet);

@ -5,7 +5,7 @@ package ksb::PhaseList;
use strict;
use warnings;
use v5.10;
use 5.014;
our $VERSION = '0.10';

@ -2,7 +2,7 @@ package ksb::RecursiveFH;
use strict;
use warnings;
use v5.10;
use 5.014;
our $VERSION = '0.10';

@ -5,7 +5,7 @@ package ksb::Updater;
use strict;
use warnings;
use v5.10;
use 5.014;
our $VERSION = '0.10';

@ -4,7 +4,7 @@ package ksb::Updater::Bzr;
use strict;
use warnings;
use v5.10;
use 5.014;
our $VERSION = '0.10';

@ -5,7 +5,7 @@ package ksb::Updater::KDEProject;
use strict;
use warnings;
use v5.10;
use 5.014;
our $VERSION = '0.10';

@ -5,7 +5,7 @@ package ksb::Updater::KDEProjectMetadata;
use strict;
use warnings;
use v5.10;
use 5.014;
our $VERSION = '0.20';

@ -5,7 +5,7 @@ package ksb::Updater::Svn;
use strict;
use warnings;
use v5.10;
use 5.014;
our $VERSION = '0.10';

@ -2,7 +2,7 @@ package ksb::Util;
# Useful utilities, which are exported into the calling module's namespace by default.
use v5.10; # Needed for state keyword
use 5.014; # Needed for state keyword
use strict;
use warnings;

@ -4,7 +4,7 @@ package ksb::Version;
use strict;
use warnings;
use v5.10;
use 5.014;
# It is expected that future git tags will be in the form 'YY.MM' and will
# be time-based instead of event-based as with previous releases.

@ -5,7 +5,7 @@ package ksb::l10nSystem;
use strict;
use warnings;
use v5.10;
use 5.014;
our $VERSION = '0.10';

Loading…
Cancel
Save