Hello community, here is the log from the commit of package perl-Params-Util for openSUSE:Factory checked in at Tue May 31 13:06:31 CEST 2011.
-------- --- perl-Params-Util/perl-Params-Util.changes 2011-04-01 07:37:38.000000000 +0200 +++ /mounts/work_src_done/STABLE/perl-Params-Util/perl-Params-Util.changes 2011-04-30 17:19:50.000000000 +0200 @@ -1,0 +2,6 @@ +Sat Apr 30 15:18:28 UTC 2011 - [email protected] + +- updated to 1.04 + - Fixed #67522 have_compiler returns + +------------------------------------------------------------------- calling whatdependson for head-i586 Old: ---- Params-Util-1.03.tar.gz New: ---- Params-Util-1.04.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl-Params-Util.spec ++++++ --- /var/tmp/diff_new_pack.GY2Xkz/_old 2011-05-31 13:06:10.000000000 +0200 +++ /var/tmp/diff_new_pack.GY2Xkz/_new 2011-05-31 13:06:10.000000000 +0200 @@ -18,21 +18,18 @@ Name: perl-Params-Util -Version: 1.03 +Version: 1.04 Release: 1 License: GPL+ or Artistic %define cpan_name Params-Util Summary: Simple, compact and correct param-checking functions Url: http://search.cpan.org/dist/Params-Util/ Group: Development/Libraries/Perl -#Source: http://www.cpan.org/authors/id/A/AD/ADAMK/Params-Util-%{version}.tar.gz -Source: %{cpan_name}-%{version}.tar.gz +Source: http://www.cpan.org/authors/id/A/AD/ADAMK/%{cpan_name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: perl BuildRequires: perl-macros -BuildRequires: perl(File::Spec) >= 0.80 -BuildRequires: perl(Scalar::Util) >= 1.18 -Requires: perl(Scalar::Util) >= 1.18 +BuildRequires: perl(ExtUtils::CBuilder) >= 0.27 %{perl_requires} %description @@ -82,7 +79,7 @@ %{__rm} -rf %{buildroot} %files -f %{name}.files -%defattr(644,root,root,755) +%defattr(-,root,root,755) %doc Changes LICENSE README %changelog ++++++ Params-Util-1.03.tar.gz -> Params-Util-1.04.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Params-Util-1.03/Changes new/Params-Util-1.04/Changes --- old/Params-Util-1.03/Changes 2010-11-22 02:58:31.000000000 +0100 +++ new/Params-Util-1.04/Changes 2011-04-20 09:15:25.000000000 +0200 @@ -1,5 +1,8 @@ Revision history for Perl extension Params-Util +1.04 Wed 20 Apr 2011 + - Fixed #67522 have_compiler returns + 1.03 Mon 22 Nov 2010 - No CPAN Testers failures, moving to production release diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Params-Util-1.03/META.yml new/Params-Util-1.04/META.yml --- old/Params-Util-1.03/META.yml 2010-11-22 02:58:53.000000000 +0100 +++ new/Params-Util-1.04/META.yml 2011-04-20 09:15:53.000000000 +0200 @@ -1,6 +1,6 @@ --- #YAML:1.0 name: Params-Util -version: 1.03 +version: 1.04 abstract: Simple, compact and correct param-checking functions author: - Adam Kennedy <[email protected]> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Params-Util-1.03/Makefile.PL new/Params-Util-1.04/Makefile.PL --- old/Params-Util-1.03/Makefile.PL 2010-11-22 02:58:31.000000000 +0100 +++ new/Params-Util-1.04/Makefile.PL 2011-04-20 09:15:25.000000000 +0200 @@ -134,14 +134,14 @@ } # Do a simple compile that consumes the headers we need - my $object = undef; - my @libs = (); + my @libs = (); + my $object = undef; + my $builder = ExtUtils::CBuilder->new( quiet => 1 ); + unless ( $builder->have_compiler ) { + # Lack of a compiler at all + return 0; + } eval { - my $builder = ExtUtils::CBuilder->new( quiet => 1 ); - unless ( $builder->have_compiler ) { - # Simple lack of a compiler at all - return 0; - } $object = $builder->compile( source => 'sanexs.c', ); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Params-Util-1.03/README new/Params-Util-1.04/README --- old/Params-Util-1.03/README 2010-11-22 02:58:31.000000000 +0100 +++ new/Params-Util-1.04/README 2011-04-20 09:15:25.000000000 +0200 @@ -378,7 +378,7 @@ Params::Validate COPYRIGHT - Copyright 2005 - 2010 Adam Kennedy. + Copyright 2005 - 2011 Adam Kennedy. This program 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/Params-Util-1.03/lib/Params/Util.pm new/Params-Util-1.04/lib/Params/Util.pm --- old/Params-Util-1.03/lib/Params/Util.pm 2010-11-22 02:58:31.000000000 +0100 +++ new/Params-Util-1.04/lib/Params/Util.pm 2011-04-20 09:15:25.000000000 +0200 @@ -64,7 +64,7 @@ use vars qw{$VERSION @ISA @EXPORT_OK %EXPORT_TAGS}; -$VERSION = '1.03'; +$VERSION = '1.04'; @ISA = qw{ Exporter DynaLoader @@ -801,7 +801,7 @@ =head1 COPYRIGHT -Copyright 2005 - 2010 Adam Kennedy. +Copyright 2005 - 2011 Adam Kennedy. This program 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/Params-Util-1.03/xt/pmv.t new/Params-Util-1.04/xt/pmv.t --- old/Params-Util-1.03/xt/pmv.t 2010-11-22 02:58:31.000000000 +0100 +++ new/Params-Util-1.04/xt/pmv.t 2011-04-20 09:15:25.000000000 +0200 @@ -9,7 +9,7 @@ } my @MODULES = ( - 'Perl::MinimumVersion 1.25', + 'Perl::MinimumVersion 1.27', 'Test::MinimumVersion 0.101080', ); ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
