Hello community, here is the log from the commit of package perl-Config-Any for openSUSE:Factory checked in at 2013-10-08 18:19:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/perl-Config-Any (Old) and /work/SRC/openSUSE:Factory/.perl-Config-Any.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Config-Any" Changes: -------- --- /work/SRC/openSUSE:Factory/perl-Config-Any/perl-Config-Any.changes 2012-01-04 07:26:13.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.perl-Config-Any.new/perl-Config-Any.changes 2013-10-08 18:20:03.000000000 +0200 @@ -1,0 +2,7 @@ +Fri Oct 4 09:11:31 UTC 2013 - [email protected] + +- updated to 0.24 + - remove 4-year-old warning about YAML::XS not being installed + - add JSON::PP to list of available JSON parsers (RT #86959) + +------------------------------------------------------------------- Old: ---- Config-Any-0.23.tar.gz New: ---- Config-Any-0.24.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl-Config-Any.spec ++++++ --- /var/tmp/diff_new_pack.RhXk8V/_old 2013-10-08 18:20:04.000000000 +0200 +++ /var/tmp/diff_new_pack.RhXk8V/_new 2013-10-08 18:20:04.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package perl-Config-Any # -# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -15,12 +15,13 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # + Name: perl-Config-Any -Version: 0.23 +Version: 0.24 Release: 0 %define cpan_name Config-Any Summary: Load configuration from different file formats, transparently -License: GPL-1.0+ or Artistic-1.0 +License: Artistic-1.0 or GPL-1.0+ Group: Development/Libraries/Perl Url: http://search.cpan.org/dist/Config-Any/ Source: http://www.cpan.org/authors/id/B/BR/BRICAS/%{cpan_name}-%{version}.tar.gz @@ -62,9 +63,6 @@ %perl_process_packlist %perl_gen_filelist -%clean -%{__rm} -rf %{buildroot} - %files -f %{name}.files %defattr(-,root,root,755) %doc Changes README ++++++ Config-Any-0.23.tar.gz -> Config-Any-0.24.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Config-Any-0.23/Changes new/Config-Any-0.24/Changes --- old/Config-Any-0.23/Changes 2011-07-13 17:16:58.000000000 +0200 +++ new/Config-Any-0.24/Changes 2013-09-10 20:41:40.000000000 +0200 @@ -1,5 +1,9 @@ Revision history for Config-Any +0.24 2013-09-10 + - remove 4-year-old warning about YAML::XS not being installed + - add JSON::PP to list of available JSON parsers (RT #86959) + 0.23 2011-07-13 - fix test suite's method of checking availability of plugins diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Config-Any-0.23/META.yml new/Config-Any-0.24/META.yml --- old/Config-Any-0.23/META.yml 2011-07-13 17:17:09.000000000 +0200 +++ new/Config-Any-0.24/META.yml 2013-09-10 20:42:32.000000000 +0200 @@ -3,12 +3,13 @@ author: - 'Joel Bernstein <[email protected]>' build_requires: - ExtUtils::MakeMaker: 6.42 + ExtUtils::MakeMaker: 6.59 Test::More: 0 configure_requires: - ExtUtils::MakeMaker: 6.42 + ExtUtils::MakeMaker: 6.59 distribution_type: module -generated_by: 'Module::Install version 1.01' +dynamic_config: 1 +generated_by: 'Module::Install version 1.06' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -24,4 +25,4 @@ resources: license: http://dev.perl.org/licenses/ repository: git://git.shadowcat.co.uk/p5sagit/Config-Any.git -version: 0.23 +version: 0.24 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Config-Any-0.23/inc/Module/Install/Base.pm new/Config-Any-0.24/inc/Module/Install/Base.pm --- old/Config-Any-0.23/inc/Module/Install/Base.pm 2011-07-13 17:17:09.000000000 +0200 +++ new/Config-Any-0.24/inc/Module/Install/Base.pm 2013-09-10 20:42:32.000000000 +0200 @@ -4,7 +4,7 @@ use strict 'vars'; use vars qw{$VERSION}; BEGIN { - $VERSION = '1.01'; + $VERSION = '1.06'; } # Suspend handler for "redefined" warnings diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Config-Any-0.23/inc/Module/Install/Can.pm new/Config-Any-0.24/inc/Module/Install/Can.pm --- old/Config-Any-0.23/inc/Module/Install/Can.pm 2011-07-13 17:17:09.000000000 +0200 +++ new/Config-Any-0.24/inc/Module/Install/Can.pm 2013-09-10 20:42:32.000000000 +0200 @@ -3,13 +3,12 @@ use strict; use Config (); -use File::Spec (); use ExtUtils::MakeMaker (); use Module::Install::Base (); use vars qw{$VERSION @ISA $ISCORE}; BEGIN { - $VERSION = '1.01'; + $VERSION = '1.06'; @ISA = 'Module::Install::Base'; $ISCORE = 1; } @@ -29,7 +28,7 @@ eval { require $mod; $pkg->VERSION($ver || 0); 1 }; } -# check if we can run some command +# Check if we can run some command sub can_run { my ($self, $cmd) = @_; @@ -38,14 +37,88 @@ for my $dir ((split /$Config::Config{path_sep}/, $ENV{PATH}), '.') { next if $dir eq ''; - my $abs = File::Spec->catfile($dir, $_[1]); + require File::Spec; + my $abs = File::Spec->catfile($dir, $cmd); return $abs if (-x $abs or $abs = MM->maybe_command($abs)); } return; } -# can we locate a (the) C compiler +# Can our C compiler environment build XS files +sub can_xs { + my $self = shift; + + # Ensure we have the CBuilder module + $self->configure_requires( 'ExtUtils::CBuilder' => 0.27 ); + + # Do we have the configure_requires checker? + local $@; + eval "require ExtUtils::CBuilder;"; + if ( $@ ) { + # They don't obey configure_requires, so it is + # someone old and delicate. Try to avoid hurting + # them by falling back to an older simpler test. + return $self->can_cc(); + } + + # Do we have a working C compiler + my $builder = ExtUtils::CBuilder->new( + quiet => 1, + ); + unless ( $builder->have_compiler ) { + # No working C compiler + return 0; + } + + # Write a C file representative of what XS becomes + require File::Temp; + my ( $FH, $tmpfile ) = File::Temp::tempfile( + "compilexs-XXXXX", + SUFFIX => '.c', + ); + binmode $FH; + print $FH <<'END_C'; +#include "EXTERN.h" +#include "perl.h" +#include "XSUB.h" + +int main(int argc, char **argv) { + return 0; +} + +int boot_sanexs() { + return 1; +} + +END_C + close $FH; + + # Can the C compiler access the same headers XS does + my @libs = (); + my $object = undef; + eval { + local $^W = 0; + $object = $builder->compile( + source => $tmpfile, + ); + @libs = $builder->link( + objects => $object, + module_name => 'sanexs', + ); + }; + my $result = $@ ? 0 : 1; + + # Clean up all the build files + foreach ( $tmpfile, $object, @libs ) { + next unless defined $_; + 1 while unlink; + } + + return $result; +} + +# Can we locate a (the) C compiler sub can_cc { my $self = shift; my @chunks = split(/ /, $Config::Config{cc}) or return; @@ -78,4 +151,4 @@ __END__ -#line 156 +#line 236 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Config-Any-0.23/inc/Module/Install/Fetch.pm new/Config-Any-0.24/inc/Module/Install/Fetch.pm --- old/Config-Any-0.23/inc/Module/Install/Fetch.pm 2011-07-13 17:17:09.000000000 +0200 +++ new/Config-Any-0.24/inc/Module/Install/Fetch.pm 2013-09-10 20:42:32.000000000 +0200 @@ -6,7 +6,7 @@ use vars qw{$VERSION @ISA $ISCORE}; BEGIN { - $VERSION = '1.01'; + $VERSION = '1.06'; @ISA = 'Module::Install::Base'; $ISCORE = 1; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Config-Any-0.23/inc/Module/Install/Makefile.pm new/Config-Any-0.24/inc/Module/Install/Makefile.pm --- old/Config-Any-0.23/inc/Module/Install/Makefile.pm 2011-07-13 17:17:09.000000000 +0200 +++ new/Config-Any-0.24/inc/Module/Install/Makefile.pm 2013-09-10 20:42:32.000000000 +0200 @@ -8,7 +8,7 @@ use vars qw{$VERSION @ISA $ISCORE}; BEGIN { - $VERSION = '1.01'; + $VERSION = '1.06'; @ISA = 'Module::Install::Base'; $ISCORE = 1; } @@ -215,18 +215,22 @@ require ExtUtils::MakeMaker; if ( $perl_version and $self->_cmp($perl_version, '5.006') >= 0 ) { - # MakeMaker can complain about module versions that include - # an underscore, even though its own version may contain one! - # Hence the funny regexp to get rid of it. See RT #35800 - # for details. - my $v = $ExtUtils::MakeMaker::VERSION =~ /^(\d+\.\d+)/; - $self->build_requires( 'ExtUtils::MakeMaker' => $v ); - $self->configure_requires( 'ExtUtils::MakeMaker' => $v ); + # This previous attempted to inherit the version of + # ExtUtils::MakeMaker in use by the module author, but this + # was found to be untenable as some authors build releases + # using future dev versions of EU:MM that nobody else has. + # Instead, #toolchain suggests we use 6.59 which is the most + # stable version on CPAN at time of writing and is, to quote + # ribasushi, "not terminally fucked, > and tested enough". + # TODO: We will now need to maintain this over time to push + # the version up as new versions are released. + $self->build_requires( 'ExtUtils::MakeMaker' => 6.59 ); + $self->configure_requires( 'ExtUtils::MakeMaker' => 6.59 ); } else { # Allow legacy-compatibility with 5.005 by depending on the # most recent EU:MM that supported 5.005. - $self->build_requires( 'ExtUtils::MakeMaker' => 6.42 ); - $self->configure_requires( 'ExtUtils::MakeMaker' => 6.42 ); + $self->build_requires( 'ExtUtils::MakeMaker' => 6.36 ); + $self->configure_requires( 'ExtUtils::MakeMaker' => 6.36 ); } # Generate the MakeMaker params @@ -241,7 +245,6 @@ 'all_from' if you prefer) in Makefile.PL. EOT - $DB::single = 1; if ( $self->tests ) { my @tests = split ' ', $self->tests; my %seen; @@ -412,4 +415,4 @@ __END__ -#line 541 +#line 544 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Config-Any-0.23/inc/Module/Install/Metadata.pm new/Config-Any-0.24/inc/Module/Install/Metadata.pm --- old/Config-Any-0.23/inc/Module/Install/Metadata.pm 2011-07-13 17:17:09.000000000 +0200 +++ new/Config-Any-0.24/inc/Module/Install/Metadata.pm 2013-09-10 20:42:32.000000000 +0200 @@ -6,7 +6,7 @@ use vars qw{$VERSION @ISA $ISCORE}; BEGIN { - $VERSION = '1.01'; + $VERSION = '1.06'; @ISA = 'Module::Install::Base'; $ISCORE = 1; } @@ -151,15 +151,21 @@ sub install_as_vendor { $_[0]->installdirs('vendor') } sub dynamic_config { - my $self = shift; - unless ( @_ ) { - warn "You MUST provide an explicit true/false value to dynamic_config\n"; - return $self; + my $self = shift; + my $value = @_ ? shift : 1; + if ( $self->{values}->{dynamic_config} ) { + # Once dynamic we never change to static, for safety + return 0; } - $self->{values}->{dynamic_config} = $_[0] ? 1 : 0; + $self->{values}->{dynamic_config} = $value ? 1 : 0; return 1; } +# Convenience command +sub static_config { + shift->dynamic_config(0); +} + sub perl_version { my $self = shift; return $self->{values}->{perl_version} unless @_; @@ -170,7 +176,7 @@ # Normalize the version $version = $self->_perl_version($version); - # We don't support the reall old versions + # We don't support the really old versions unless ( $version >= 5.005 ) { die "Module::Install only supports 5.005 or newer (use ExtUtils::MakeMaker)\n"; } @@ -582,7 +588,7 @@ sub requires_from { my $self = shift; my $content = Module::Install::_readperl($_[0]); - my @requires = $content =~ m/^use\s+([^\W\d]\w*(?:::\w+)*)\s+([\d\.]+)/mg; + my @requires = $content =~ m/^use\s+([^\W\d]\w*(?:::\w+)*)\s+(v?[\d\.]+)/mg; while ( @requires ) { my $module = shift @requires; my $version = shift @requires; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Config-Any-0.23/inc/Module/Install/Win32.pm new/Config-Any-0.24/inc/Module/Install/Win32.pm --- old/Config-Any-0.23/inc/Module/Install/Win32.pm 2011-07-13 17:17:09.000000000 +0200 +++ new/Config-Any-0.24/inc/Module/Install/Win32.pm 2013-09-10 20:42:32.000000000 +0200 @@ -6,7 +6,7 @@ use vars qw{$VERSION @ISA $ISCORE}; BEGIN { - $VERSION = '1.01'; + $VERSION = '1.06'; @ISA = 'Module::Install::Base'; $ISCORE = 1; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Config-Any-0.23/inc/Module/Install/WriteAll.pm new/Config-Any-0.24/inc/Module/Install/WriteAll.pm --- old/Config-Any-0.23/inc/Module/Install/WriteAll.pm 2011-07-13 17:17:09.000000000 +0200 +++ new/Config-Any-0.24/inc/Module/Install/WriteAll.pm 2013-09-10 20:42:32.000000000 +0200 @@ -6,7 +6,7 @@ use vars qw{$VERSION @ISA $ISCORE}; BEGIN { - $VERSION = '1.01'; + $VERSION = '1.06'; @ISA = qw{Module::Install::Base}; $ISCORE = 1; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Config-Any-0.23/inc/Module/Install.pm new/Config-Any-0.24/inc/Module/Install.pm --- old/Config-Any-0.23/inc/Module/Install.pm 2011-07-13 17:17:09.000000000 +0200 +++ new/Config-Any-0.24/inc/Module/Install.pm 2013-09-10 20:42:32.000000000 +0200 @@ -31,7 +31,7 @@ # This is not enforced yet, but will be some time in the next few # releases once we can make sure it won't clash with custom # Module::Install extensions. - $VERSION = '1.01'; + $VERSION = '1.06'; # Storage for the pseudo-singleton $MAIN = undef; @@ -451,7 +451,7 @@ } sub _cmp ($$) { - _version($_[0]) <=> _version($_[1]); + _version($_[1]) <=> _version($_[2]); } # Cloned from Params::Util::_CLASS @@ -467,4 +467,4 @@ 1; -# Copyright 2008 - 2011 Adam Kennedy. +# Copyright 2008 - 2012 Adam Kennedy. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Config-Any-0.23/lib/Config/Any/Base.pm new/Config-Any-0.24/lib/Config/Any/Base.pm --- old/Config-Any-0.23/lib/Config/Any/Base.pm 2011-05-25 04:06:03.000000000 +0200 +++ new/Config-Any-0.24/lib/Config/Any/Base.pm 2013-08-15 03:13:16.000000000 +0200 @@ -18,7 +18,7 @@ =head2 is_supported( ) Allows us to determine if the file format can be loaded. The can be done via -one of two subclass methds: +one of two subclass methods: =over 4 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Config-Any-0.23/lib/Config/Any/General.pm new/Config-Any-0.24/lib/Config/Any/General.pm --- old/Config-Any-0.23/lib/Config/Any/General.pm 2011-05-25 04:28:18.000000000 +0200 +++ new/Config-Any-0.24/lib/Config/Any/General.pm 2013-09-10 20:41:56.000000000 +0200 @@ -76,7 +76,7 @@ =head1 COPYRIGHT AND LICENSE -Copyright 2006-2011 by Brian Cassidy +Copyright 2006-2013 by Brian Cassidy Portions Copyright 2006 Portugal Telecom diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Config-Any-0.23/lib/Config/Any/INI.pm new/Config-Any-0.24/lib/Config/Any/INI.pm --- old/Config-Any-0.23/lib/Config/Any/INI.pm 2011-05-25 04:28:18.000000000 +0200 +++ new/Config-Any-0.24/lib/Config/Any/INI.pm 2013-09-10 20:41:56.000000000 +0200 @@ -103,7 +103,7 @@ =head1 COPYRIGHT AND LICENSE -Copyright 2006-2011 by Brian Cassidy, portions copyright 2006, 2007 by Joel Bernstein +Copyright 2006-2013 by Brian Cassidy, portions copyright 2006, 2007 by Joel Bernstein This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Config-Any-0.23/lib/Config/Any/JSON.pm new/Config-Any-0.24/lib/Config/Any/JSON.pm --- old/Config-Any-0.23/lib/Config/Any/JSON.pm 2011-05-25 04:28:18.000000000 +0200 +++ new/Config-Any-0.24/lib/Config/Any/JSON.pm 2013-09-10 20:41:40.000000000 +0200 @@ -68,6 +68,12 @@ return JSON::Syck::Load( $content ); } + eval { require JSON::PP; JSON::PP->VERSION( 2 ); }; + unless( $@ ) { + my $decoder = JSON::PP->new->relaxed; + return $decoder->decode( $content ); + } + require JSON; eval { JSON->VERSION( 2 ); }; return $@ ? JSON::jsonToObj( $content ) : JSON::from_json( $content ); @@ -80,7 +86,7 @@ =cut -sub requires_any_of { 'JSON::DWIW', 'JSON::XS', 'JSON::Syck', 'JSON' } +sub requires_any_of { 'JSON::DWIW', 'JSON::XS', 'JSON::Syck', 'JSON::PP', 'JSON' } =head1 AUTHOR @@ -88,7 +94,7 @@ =head1 COPYRIGHT AND LICENSE -Copyright 2006-2011 by Brian Cassidy +Copyright 2006-2013 by Brian Cassidy This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Config-Any-0.23/lib/Config/Any/Perl.pm new/Config-Any-0.24/lib/Config/Any/Perl.pm --- old/Config-Any-0.23/lib/Config/Any/Perl.pm 2011-05-25 04:28:18.000000000 +0200 +++ new/Config-Any-0.24/lib/Config/Any/Perl.pm 2013-09-10 20:41:56.000000000 +0200 @@ -62,7 +62,7 @@ =head1 COPYRIGHT AND LICENSE -Copyright 2006-2011 by Brian Cassidy +Copyright 2006-2013 by Brian Cassidy This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Config-Any-0.23/lib/Config/Any/XML.pm new/Config-Any-0.24/lib/Config/Any/XML.pm --- old/Config-Any-0.23/lib/Config/Any/XML.pm 2011-07-04 16:27:31.000000000 +0200 +++ new/Config-Any-0.24/lib/Config/Any/XML.pm 2013-09-10 20:41:56.000000000 +0200 @@ -102,7 +102,7 @@ =head1 COPYRIGHT AND LICENSE -Copyright 2006-2011 by Brian Cassidy +Copyright 2006-2013 by Brian Cassidy This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Config-Any-0.23/lib/Config/Any/YAML.pm new/Config-Any-0.24/lib/Config/Any/YAML.pm --- old/Config-Any-0.23/lib/Config/Any/YAML.pm 2011-07-04 16:27:31.000000000 +0200 +++ new/Config-Any-0.24/lib/Config/Any/YAML.pm 2013-09-10 20:41:34.000000000 +0200 @@ -41,8 +41,6 @@ =cut -our $NO_YAML_XS_WARNING; - sub load { my $class = shift; my $file = shift; @@ -52,11 +50,6 @@ return YAML::XS::LoadFile( $file ); } - Carp::carp - 'Use of YAML::Syck or YAML to parse config files is DEPRECATED. ' - . 'Please install YAML::XS for proper YAML support' - unless $NO_YAML_XS_WARNING; - eval { require YAML::Syck; YAML::Syck->VERSION( '0.70' ) }; unless ( $@ ) { open( my $fh, $file ) or die $!; @@ -84,7 +77,7 @@ =head1 COPYRIGHT AND LICENSE -Copyright 2006-2011 by Brian Cassidy +Copyright 2006-2013 by Brian Cassidy This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Config-Any-0.23/lib/Config/Any.pm new/Config-Any-0.24/lib/Config/Any.pm --- old/Config-Any-0.23/lib/Config/Any.pm 2011-07-13 17:17:02.000000000 +0200 +++ new/Config-Any-0.24/lib/Config/Any.pm 2013-09-10 20:41:56.000000000 +0200 @@ -6,7 +6,7 @@ use Carp; use Module::Pluggable::Object (); -our $VERSION = '0.23'; +our $VERSION = '0.24'; =head1 NAME diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Config-Any-0.23/t/10-branches.t new/Config-Any-0.24/t/10-branches.t --- old/Config-Any-0.23/t/10-branches.t 2011-07-04 16:27:31.000000000 +0200 +++ new/Config-Any-0.24/t/10-branches.t 2013-09-10 20:41:34.000000000 +0200 @@ -8,7 +8,6 @@ use_ok( 'Config::Any' ); use_ok( 'Config::Any::YAML' ); -$Config::Any::YAML::NO_YAML_XS_WARNING = 1; { my @warnings; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Config-Any-0.23/t/20-parse.t new/Config-Any-0.24/t/20-parse.t --- old/Config-Any-0.23/t/20-parse.t 2011-07-08 21:30:20.000000000 +0200 +++ new/Config-Any-0.24/t/20-parse.t 2013-09-10 20:41:34.000000000 +0200 @@ -14,8 +14,6 @@ use Config::Any::XML; use Config::Any::YAML; -$Config::Any::YAML::NO_YAML_XS_WARNING = 1; - our %ext_map = ( conf => 'Config::Any::General', ini => 'Config::Any::INI', diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Config-Any-0.23/t/55-yaml.t new/Config-Any-0.24/t/55-yaml.t --- old/Config-Any-0.23/t/55-yaml.t 2011-07-04 16:27:31.000000000 +0200 +++ new/Config-Any-0.24/t/55-yaml.t 2013-09-10 20:41:34.000000000 +0200 @@ -5,8 +5,6 @@ use Test::More; use Config::Any::YAML; -$Config::Any::YAML::NO_YAML_XS_WARNING = 1; - if ( !Config::Any::YAML->is_supported ) { plan skip_all => 'YAML format not supported'; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Config-Any-0.23/t/62-multi.t new/Config-Any-0.24/t/62-multi.t --- old/Config-Any-0.23/t/62-multi.t 2011-07-04 16:27:31.000000000 +0200 +++ new/Config-Any-0.24/t/62-multi.t 2013-09-10 20:41:34.000000000 +0200 @@ -7,8 +7,6 @@ use Config::Any; use Config::Any::YAML; -$Config::Any::YAML::NO_YAML_XS_WARNING = 1; - my $file = 't/multi/conf.yml'; my @expect = ( { name => 'TestApp', -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
