Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package perl-File-Rename for
openSUSE:Factory checked in at 2022-05-12 22:58:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-File-Rename (Old)
and /work/SRC/openSUSE:Factory/.perl-File-Rename.new.1538 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-File-Rename"
Thu May 12 22:58:26 2022 rev:2 rq:976129 version:1.31
Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-File-Rename/perl-File-Rename.changes
2022-02-02 22:45:01.606062481 +0100
+++
/work/SRC/openSUSE:Factory/.perl-File-Rename.new.1538/perl-File-Rename.changes
2022-05-12 22:58:53.536678537 +0200
@@ -1,0 +2,8 @@
+Tue May 10 16:34:50 UTC 2022 - Tina M??ller <[email protected]>
+
+- updated to 1.31
+ * No user-visible changes
+- Update change-command-name.patch (upstream files were converted to
+ dos line endings)
+
+-------------------------------------------------------------------
Old:
----
File-Rename-1.30.tar.gz
New:
----
File-Rename-1.31.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-File-Rename.spec ++++++
--- /var/tmp/diff_new_pack.MExEBN/_old 2022-05-12 22:58:54.400679697 +0200
+++ /var/tmp/diff_new_pack.MExEBN/_new 2022-05-12 22:58:54.404679702 +0200
@@ -18,7 +18,7 @@
%define cpan_name File-Rename
Name: perl-File-Rename
-Version: 1.30
+Version: 1.31
Release: 0
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Perl extension for renaming multiple files
@@ -30,7 +30,7 @@
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
-BuildRequires: perl(Module::Build)
+BuildRequires: perl(Module::Build) >= 0.400000
%{perl_requires}
%description
++++++ File-Rename-1.30.tar.gz -> File-Rename-1.31.tar.gz ++++++
++++ 3833 lines of diff (skipped)
++++++ change-command-name.patch ++++++
--- /var/tmp/diff_new_pack.MExEBN/_old 2022-05-12 22:58:54.480679804 +0200
+++ /var/tmp/diff_new_pack.MExEBN/_new 2022-05-12 22:58:54.484679810 +0200
@@ -3,29 +3,32 @@
This is not only the upstream's choice of an alternative name, but also makes
us compatible with Debian
(see
https://salsa.debian.org/perl-team/modules/packages/rename/-/blob/master/debian/rules
)
---- a/Build.PL 2021-03-23 00:23:07.000000000 +0100
-+++ b/Build.PL 2022-01-07 12:51:51.209121400 +0100
+diff --git a/Build.PL b/Build.PL
+index 8912e96..7692ec4 100644
+--- a/Build.PL
++++ b/Build.PL
@@ -1,9 +1,7 @@
- use strict;
- use Module::Build;
- use File::Spec;
--my $script = File::Spec->catfile( 'script',
-- Module::Build->os_type eq 'Windows'
-- ? 'file-rename' : 'rename' );
-+my $script = File::Spec->catfile( 'script', 'file-rename' );
-
- Module::Build -> new (
- license => 'perl',
-
---- a/t/testlib.pl 2021-08-02 18:14:10.000000000 +0200
-+++ b/t/testlib.pl 2022-01-07 14:20:21.696859600 +0100
-@@ -130,7 +130,7 @@
- }
-
- sub script_name {
-- return +(is_windows() ? 'file-rename' : 'rename');
-+ return +('file-rename');
- }
-
- 1;
+ use strict;
+ use Module::Build;
+ use File::Spec;
+-my $script = File::Spec->catfile( 'script',
+- Module::Build->os_type eq 'Windows'
+- ? 'file-rename' : 'rename' );
++my $script = File::Spec->catfile( 'script', 'file-rename' );
+
+ Module::Build -> new (
+ license => 'perl',
+diff --git a/t/testlib.pl b/t/testlib.pl
+index 34dcb64..fa5256a 100644
+--- a/t/testlib.pl
++++ b/t/testlib.pl
+@@ -130,7 +130,7 @@ sub is_windows {
+ }
+
+ sub script_name {
+- return +(is_windows() ? 'file-rename' : 'rename');
++ return +('file-rename');
+ }
+
+ 1;