r77437 - in /branches/upstream/libconfig-any-perl/current: Changes META.yml lib/Config/Any.pm t/20-parse.t

carnil at users.alioth.debian.org carnil at users.alioth.debian.org
Thu Jul 14 12:00:51 UTC 2011


Author: carnil
Date: Thu Jul 14 12:00:40 2011
New Revision: 77437

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=77437
Log:
[svn-upgrade] new version libconfig-any-perl (0.23)

Modified:
    branches/upstream/libconfig-any-perl/current/Changes
    branches/upstream/libconfig-any-perl/current/META.yml
    branches/upstream/libconfig-any-perl/current/lib/Config/Any.pm
    branches/upstream/libconfig-any-perl/current/t/20-parse.t

Modified: branches/upstream/libconfig-any-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-any-perl/current/Changes?rev=77437&op=diff
==============================================================================
--- branches/upstream/libconfig-any-perl/current/Changes (original)
+++ branches/upstream/libconfig-any-perl/current/Changes Thu Jul 14 12:00:40 2011
@@ -1,4 +1,7 @@
 Revision history for Config-Any
+
+0.23 2011-07-13
+    - fix test suite's method of checking availability of plugins
 
 0.22 2011-07-04
     - add XML::NamespaceSupport to XML format deps, silence YAML warnings in 

Modified: branches/upstream/libconfig-any-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-any-perl/current/META.yml?rev=77437&op=diff
==============================================================================
--- branches/upstream/libconfig-any-perl/current/META.yml (original)
+++ branches/upstream/libconfig-any-perl/current/META.yml Thu Jul 14 12:00:40 2011
@@ -24,4 +24,4 @@
 resources:
   license: http://dev.perl.org/licenses/
   repository: git://git.shadowcat.co.uk/p5sagit/Config-Any.git
-version: 0.22
+version: 0.23

Modified: branches/upstream/libconfig-any-perl/current/lib/Config/Any.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-any-perl/current/lib/Config/Any.pm?rev=77437&op=diff
==============================================================================
--- branches/upstream/libconfig-any-perl/current/lib/Config/Any.pm (original)
+++ branches/upstream/libconfig-any-perl/current/lib/Config/Any.pm Thu Jul 14 12:00:40 2011
@@ -6,7 +6,7 @@
 use Carp;
 use Module::Pluggable::Object ();
 
-our $VERSION = '0.22';
+our $VERSION = '0.23';
 
 =head1 NAME
 

Modified: branches/upstream/libconfig-any-perl/current/t/20-parse.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-any-perl/current/t/20-parse.t?rev=77437&op=diff
==============================================================================
--- branches/upstream/libconfig-any-perl/current/t/20-parse.t (original)
+++ branches/upstream/libconfig-any-perl/current/t/20-parse.t Thu Jul 14 12:00:40 2011
@@ -31,12 +31,7 @@
 
     my ( $ext ) = $f =~ m{ \. ( [^\.]+ ) \z }xms;
     my $mod = $ext_map{ $ext };
-    my $mod_load_result;
-    eval {
-        $mod_load_result = $mod->load( $f );
-        delete $INC{ $f } if $ext eq 'pl';
-    };
-    return $@ ? ( 1, $mod ) : ( 0, $mod );
+    return !$mod->is_supported ? ( 1, $mod ) : ( 0, $mod );
 }
 
 for my $f ( map { "t/conf/conf.$_" } keys %ext_map ) {




More information about the Pkg-perl-cvs-commits mailing list