r77439 - in /trunk/libconfig-any-perl: Changes META.yml debian/changelog lib/Config/Any.pm t/20-parse.t
carnil at users.alioth.debian.org
carnil at users.alioth.debian.org
Thu Jul 14 12:03:08 UTC 2011
Author: carnil
Date: Thu Jul 14 12:03:05 2011
New Revision: 77439
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=77439
Log:
New upstream release
Modified:
trunk/libconfig-any-perl/Changes
trunk/libconfig-any-perl/META.yml
trunk/libconfig-any-perl/debian/changelog
trunk/libconfig-any-perl/lib/Config/Any.pm
trunk/libconfig-any-perl/t/20-parse.t
Modified: trunk/libconfig-any-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-any-perl/Changes?rev=77439&op=diff
==============================================================================
--- trunk/libconfig-any-perl/Changes (original)
+++ trunk/libconfig-any-perl/Changes Thu Jul 14 12:03:05 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: trunk/libconfig-any-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-any-perl/META.yml?rev=77439&op=diff
==============================================================================
--- trunk/libconfig-any-perl/META.yml (original)
+++ trunk/libconfig-any-perl/META.yml Thu Jul 14 12:03:05 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: trunk/libconfig-any-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-any-perl/debian/changelog?rev=77439&op=diff
==============================================================================
--- trunk/libconfig-any-perl/debian/changelog (original)
+++ trunk/libconfig-any-perl/debian/changelog Thu Jul 14 12:03:05 2011
@@ -1,3 +1,9 @@
+libconfig-any-perl (0.23-1) UNRELEASED; urgency=low
+
+ * New upstream release
+
+ -- Salvatore Bonaccorso <carnil at debian.org> Thu, 14 Jul 2011 14:01:02 +0200
+
libconfig-any-perl (0.22-1) unstable; urgency=low
* New upstream release
Modified: trunk/libconfig-any-perl/lib/Config/Any.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-any-perl/lib/Config/Any.pm?rev=77439&op=diff
==============================================================================
--- trunk/libconfig-any-perl/lib/Config/Any.pm (original)
+++ trunk/libconfig-any-perl/lib/Config/Any.pm Thu Jul 14 12:03:05 2011
@@ -6,7 +6,7 @@
use Carp;
use Module::Pluggable::Object ();
-our $VERSION = '0.22';
+our $VERSION = '0.23';
=head1 NAME
Modified: trunk/libconfig-any-perl/t/20-parse.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-any-perl/t/20-parse.t?rev=77439&op=diff
==============================================================================
--- trunk/libconfig-any-perl/t/20-parse.t (original)
+++ trunk/libconfig-any-perl/t/20-parse.t Thu Jul 14 12:03:05 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