Hello community, here is the log from the commit of package perl-File-Remove for openSUSE:Factory checked in at 2016-04-12 19:33:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/perl-File-Remove (Old) and /work/SRC/openSUSE:Factory/.perl-File-Remove.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-File-Remove" Changes: -------- --- /work/SRC/openSUSE:Factory/perl-File-Remove/perl-File-Remove.changes 2016-03-16 10:36:03.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.perl-File-Remove.new/perl-File-Remove.changes 2016-04-12 19:33:28.000000000 +0200 @@ -1,0 +2,13 @@ +Mon Apr 4 09:42:40 UTC 2016 - co...@suse.com + +- updated to 1.56 + see /usr/share/doc/packages/perl-File-Remove/Changes + + 1.56 2016-03-23 - Shlomi Fish + - Remove the Build.PL so there won't be two build files. + - https://github.com/shlomif/File-Remove/pull/1 + - I think it doesn't matter too much with Dist-Zilla, but to avoid + future complaints, I decided to comply with the request. + - Thanks to Karen Etheridge (ETHER) for the report. + +------------------------------------------------------------------- Old: ---- File-Remove-1.55.tar.gz New: ---- File-Remove-1.56.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl-File-Remove.spec ++++++ --- /var/tmp/diff_new_pack.BJ9Lsw/_old 2016-04-12 19:33:28.000000000 +0200 +++ /var/tmp/diff_new_pack.BJ9Lsw/_new 2016-04-12 19:33:28.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package perl-File-Remove # -# Copyright (c) 2016 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: perl-File-Remove -Version: 1.55 +Version: 1.56 Release: 0 %define cpan_name File-Remove Summary: Remove files and directories @@ -32,7 +32,6 @@ BuildRequires: perl-macros BuildRequires: perl(Cwd) >= 3.29 BuildRequires: perl(File::Spec) >= 3.29 -BuildRequires: perl(Module::Build) >= 0.2800 Requires: perl(Cwd) >= 3.29 Requires: perl(File::Spec) >= 3.29 %{perl_requires} @@ -51,14 +50,15 @@ find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644 %build -%{__perl} Build.PL installdirs=vendor -./Build build flags=%{?_smp_mflags} +%{__perl} Makefile.PL INSTALLDIRS=vendor +%{__make} %{?_smp_mflags} %check -./Build test +%{__make} test %install -./Build install destdir=%{buildroot} create_packlist=0 +%perl_make_install +%perl_process_packlist %perl_gen_filelist %files -f %{name}.files ++++++ File-Remove-1.55.tar.gz -> File-Remove-1.56.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/File-Remove-1.55/Build.PL new/File-Remove-1.56/Build.PL --- old/File-Remove-1.55/Build.PL 2016-01-11 15:12:07.000000000 +0100 +++ new/File-Remove-1.56/Build.PL 1970-01-01 01:00:00.000000000 +0100 @@ -1,74 +0,0 @@ - -# This file was automatically generated by Dist::Zilla::Plugin::ModuleBuild v5.043. -use strict; -use warnings; - -use Module::Build 0.28; - - -my %module_build_args = ( - "build_requires" => { - "Module::Build" => "0.28" - }, - "configure_requires" => { - "ExtUtils::MakeMaker" => 0, - "Module::Build" => "0.28" - }, - "dist_abstract" => "Remove files and directories", - "dist_author" => [ - "Shlomi Fish <shlomif\@cpan.org>" - ], - "dist_name" => "File-Remove", - "dist_version" => "1.55", - "license" => "perl", - "module_name" => "File::Remove", - "recursive_test_files" => 1, - "requires" => { - "Cwd" => "3.29", - "File::Glob" => 0, - "File::Path" => 0, - "File::Spec" => "3.29", - "constant" => 0, - "perl" => "5.006", - "strict" => 0, - "vars" => 0 - }, - "test_requires" => { - "File::Copy" => 0, - "File::Spec" => "3.29", - "File::Spec::Functions" => 0, - "File::Temp" => 0, - "IO::Handle" => 0, - "IPC::Open3" => 0, - "Test::More" => 0, - "blib" => "1.01", - "perl" => "5.006", - "warnings" => 0 - } -); - - -my %fallback_build_requires = ( - "File::Copy" => 0, - "File::Spec" => "3.29", - "File::Spec::Functions" => 0, - "File::Temp" => 0, - "IO::Handle" => 0, - "IPC::Open3" => 0, - "Module::Build" => "0.28", - "Test::More" => 0, - "blib" => "1.01", - "perl" => "5.006", - "warnings" => 0 -); - - -unless ( eval { Module::Build->VERSION(0.4004) } ) { - delete $module_build_args{test_requires}; - $module_build_args{build_requires} = \%fallback_build_requires; -} - -my $build = Module::Build->new(%module_build_args); - - -$build->create_build_script; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/File-Remove-1.55/Changes new/File-Remove-1.56/Changes --- old/File-Remove-1.55/Changes 2016-01-11 15:12:07.000000000 +0100 +++ new/File-Remove-1.56/Changes 2016-03-23 11:22:38.000000000 +0100 @@ -1,5 +1,12 @@ Revision history for Perl extension File-Remove +1.56 2016-03-23 - Shlomi Fish + - Remove the Build.PL so there won't be two build files. + - https://github.com/shlomif/File-Remove/pull/1 + - I think it doesn't matter too much with Dist-Zilla, but to avoid + future complaints, I decided to comply with the request. + - Thanks to Karen Etheridge (ETHER) for the report. + 1.55 2016-01-11 - Shlomi Fish - Add the "{ glob => 0 }" option to remove(). - See https://rt.cpan.org/Ticket/Display.html?id=78405 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/File-Remove-1.55/MANIFEST new/File-Remove-1.56/MANIFEST --- old/File-Remove-1.55/MANIFEST 2016-01-11 15:12:07.000000000 +0100 +++ new/File-Remove-1.56/MANIFEST 2016-03-23 11:22:38.000000000 +0100 @@ -1,5 +1,4 @@ # This file was automatically generated by Dist::Zilla::Plugin::Manifest v5.043. -Build.PL Changes LICENSE MANIFEST diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/File-Remove-1.55/META.yml new/File-Remove-1.56/META.yml --- old/File-Remove-1.55/META.yml 2016-01-11 15:12:07.000000000 +0100 +++ new/File-Remove-1.56/META.yml 2016-03-23 11:22:38.000000000 +0100 @@ -9,14 +9,12 @@ File::Temp: '0' IO::Handle: '0' IPC::Open3: '0' - Module::Build: '0.28' Test::More: '0' blib: '1.01' perl: '5.006' warnings: '0' configure_requires: ExtUtils::MakeMaker: '0' - Module::Build: '0.28' dynamic_config: 0 generated_by: 'Dist::Zilla version 5.043, CPAN::Meta::Converter version 2.150005' license: perl @@ -36,4 +34,4 @@ resources: bugtracker: http://rt.cpan.org/NoAuth/Bugs.html?Dist=File-Remove repository: git://github.com/shlomif/File-Remove.git -version: '1.55' +version: '1.56' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/File-Remove-1.55/Makefile.PL new/File-Remove-1.56/Makefile.PL --- old/File-Remove-1.55/Makefile.PL 2016-01-11 15:12:07.000000000 +0100 +++ new/File-Remove-1.56/Makefile.PL 2016-03-23 11:22:38.000000000 +0100 @@ -9,12 +9,8 @@ my %WriteMakefileArgs = ( "ABSTRACT" => "Remove files and directories", "AUTHOR" => "Shlomi Fish <shlomif\@cpan.org>", - "BUILD_REQUIRES" => { - "Module::Build" => "0.28" - }, "CONFIGURE_REQUIRES" => { - "ExtUtils::MakeMaker" => 0, - "Module::Build" => "0.28" + "ExtUtils::MakeMaker" => 0 }, "DISTNAME" => "File-Remove", "LICENSE" => "perl", @@ -40,7 +36,7 @@ "blib" => "1.01", "warnings" => 0 }, - "VERSION" => "1.55", + "VERSION" => "1.56", "test" => { "TESTS" => "t/*.t" } @@ -57,7 +53,6 @@ "File::Temp" => 0, "IO::Handle" => 0, "IPC::Open3" => 0, - "Module::Build" => "0.28", "Test::More" => 0, "blib" => "1.01", "constant" => 0, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/File-Remove-1.55/README new/File-Remove-1.56/README --- old/File-Remove-1.55/README 2016-01-11 15:12:07.000000000 +0100 +++ new/File-Remove-1.56/README 2016-03-23 11:22:38.000000000 +0100 @@ -1,7 +1,7 @@ This archive contains the distribution File-Remove, -version 1.55: +version 1.56: Remove files and directories diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/File-Remove-1.55/dist.ini new/File-Remove-1.56/dist.ini --- old/File-Remove-1.55/dist.ini 2016-01-11 15:12:07.000000000 +0100 +++ new/File-Remove-1.56/dist.ini 2016-03-23 11:22:38.000000000 +0100 @@ -8,7 +8,6 @@ -bundle = @Basic -remove = License [AutoPrereqs] -[ModuleBuild] [PodSyntaxTests] [PodCoverageTests] [MetaResources] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/File-Remove-1.55/lib/File/Remove.pm new/File-Remove-1.56/lib/File/Remove.pm --- old/File-Remove-1.55/lib/File/Remove.pm 2016-01-11 15:12:07.000000000 +0100 +++ new/File-Remove-1.56/lib/File/Remove.pm 2016-03-23 11:22:38.000000000 +0100 @@ -6,7 +6,7 @@ use vars qw{ $VERSION @ISA @EXPORT_OK }; use vars qw{ $DEBUG $unlink $rmdir }; BEGIN { - $VERSION = '1.55'; + $VERSION = '1.56'; # $VERSION = eval $VERSION; @ISA = qw{ Exporter }; @EXPORT_OK = qw{ remove rm clear trash }; @@ -281,7 +281,7 @@ =head1 VERSION -version 1.55 +version 1.56 =head1 SYNOPSIS