Codebase list libcpanplus-dist-build-perl / 40e0ac0
Core deprecation warnings added, prior to de-coring with v5.20.0 git-svn-id: https://svn.perl.org/modules/CPANPLUS-Dist-Build/trunk@15566 50811bd7-b8ce-0310-adc1-d9db26280581 Chris Williams 11 years ago
4 changed file(s) with 14 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
00 Revision history for Perl extension CPANPLUS::Dist::Build.
1
2 0.70 Fri Jan 25 15:58:27 GMT 2013
3 - Add deprecation usage to warn if modules are loaded
4 from corelib. CPANPLUS::Dist::Build will be leaving
5 core with v5.20.0 and will still be available on
6 CPAN.
17
28 0.68 Wed Dec 5 00:17:04 GMT 2012
39 - Revert change to wrapper command-line
1818 requires 'Module::Build' => '0.32';
1919 requires 'File::Spec' => 0;
2020 requires 'ExtUtils::Install' => '1.42';
21 requires 'if' => 0;
2122 clean_files 't/dummy-cpanplus t/dummy-perl/lib/perl5';
2223 # overwrite the CP::D::B that shipped in core
23 if ( $] >= 5.009005 ) {
24 if ( $] >= 5.009005 && $] < 5.012 ) {
2425 install_as_core;
2526 }
2627 else {
00 package CPANPLUS::Dist::Build::Constants;
1
2 use if $] > 5.017, 'deprecate';
13
24 use strict;
35 use warnings;
810 require Exporter;
911 use vars qw[$VERSION @ISA @EXPORT];
1012
11 $VERSION = '0.68';
13 $VERSION = '0.70';
1214 @ISA = qw[Exporter];
1315 @EXPORT = qw[ BUILD_DIR BUILD CPDB_PERL_WRAPPER];
1416 }
00 package CPANPLUS::Dist::Build;
1
2 use if $] > 5.017, 'deprecate';
13
24 use strict;
35 use warnings;
2931
3032 local $Params::Check::VERBOSE = 1;
3133
32 $VERSION = '0.68';
34 $VERSION = '0.70';
3335
3436 =pod
3537