In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/a1f2a8e1cd00212abafa68f24524f23f9a6b0efb?hp=bc1644f1ea23213883e5ccb511a8df05762b7e39>
- Log ----------------------------------------------------------------- commit a1f2a8e1cd00212abafa68f24524f23f9a6b0efb Author: Chris 'BinGOs' Williams <[email protected]> Date: Sat Jan 17 16:12:41 2015 +0000 Update Module-Load-Conditional to CPAN version 0.64 [DELTA] 0.64 Sat Jan 17 13:33:57 GMT 2015 * Resolve an edge-case with DEPRECATED [ https://rt.cpan.org/Public/Bug/Display.html?id=101555 ] ----------------------------------------------------------------------- Summary of changes: Porting/Maintainers.pl | 2 +- cpan/Module-Load-Conditional/lib/Module/Load/Conditional.pm | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 53b69b8..67da3e2 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -802,7 +802,7 @@ use File::Glob qw(:case); }, 'Module::Load::Conditional' => { - 'DISTRIBUTION' => 'BINGOS/Module-Load-Conditional-0.62.tar.gz', + 'DISTRIBUTION' => 'BINGOS/Module-Load-Conditional-0.64.tar.gz', 'FILES' => q[cpan/Module-Load-Conditional], }, diff --git a/cpan/Module-Load-Conditional/lib/Module/Load/Conditional.pm b/cpan/Module-Load-Conditional/lib/Module/Load/Conditional.pm index 422f56b..ace55ad 100644 --- a/cpan/Module-Load-Conditional/lib/Module/Load/Conditional.pm +++ b/cpan/Module-Load-Conditional/lib/Module/Load/Conditional.pm @@ -22,7 +22,7 @@ BEGIN { $FIND_VERSION $ERROR $CHECK_INC_HASH]; use Exporter; @ISA = qw[Exporter]; - $VERSION = '0.62'; + $VERSION = '0.64'; $VERBOSE = 0; $DEPRECATED = 0; $FIND_VERSION = 1; @@ -313,7 +313,8 @@ sub check_install { $href->{uptodate} = 0 if exists $Module::CoreList::version{ 0+$] }{ $args->{module} } and Module::CoreList::is_deprecated( $args->{module} ) and - $Config::Config{privlibexp} eq $href->{dir}; + $Config::Config{privlibexp} eq $href->{dir} + and $Config::Config{privlibexp} ne $Config::Config{sitelibexp}; } return $href; -- Perl5 Master Repository
