Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package perl-File-Unpack for
openSUSE:Factory checked in at 2021-02-23 20:22:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-File-Unpack (Old)
and /work/SRC/openSUSE:Factory/.perl-File-Unpack.new.2378 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-File-Unpack"
Tue Feb 23 20:22:06 2021 rev:7 rq:874594 version:0.70
Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-File-Unpack/perl-File-Unpack.changes
2019-07-13 14:00:52.346889289 +0200
+++
/work/SRC/openSUSE:Factory/.perl-File-Unpack.new.2378/perl-File-Unpack.changes
2021-02-23 20:23:23.079813769 +0100
@@ -1,0 +2,5 @@
+Wed Feb 23 11:41:50 UTC 2021 - Sebastian Riedel <[email protected]>
+
+- Take 12.diff from https://github.com/jnweiger/perl-File-Unpack/pull/12
+
+-------------------------------------------------------------------
New:
----
12.diff
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-File-Unpack.spec ++++++
--- /var/tmp/diff_new_pack.yizvBm/_old 2021-02-23 20:23:23.843814444 +0100
+++ /var/tmp/diff_new_pack.yizvBm/_new 2021-02-23 20:23:23.847814448 +0100
@@ -1,7 +1,7 @@
#
# spec file for package perl-File-Unpack
#
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -29,7 +29,8 @@
Patch3:
https://patch-diff.githubusercontent.com/raw/jnweiger/perl-File-Unpack/pull/9.diff
Patch4:
https://patch-diff.githubusercontent.com/raw/jnweiger/perl-File-Unpack/pull/10.diff
Patch5:
https://patch-diff.githubusercontent.com/raw/jnweiger/perl-File-Unpack/pull/11.diff
-Url: https://github.com/jnweiger/perl-File-Unpack
+Patch6:
https://patch-diff.githubusercontent.com/raw/jnweiger/perl-File-Unpack/pull/12.diff
+URL: https://github.com/jnweiger/perl-File-Unpack
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl(Test::CheckManifest)
@@ -189,6 +190,7 @@
%patch3 -p1
%patch4 -p1
%patch5 -p1
+%patch6 -p1
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
++++++ 12.diff ++++++
diff --git a/Unpack.pm b/Unpack.pm
index d5354ac..1cc7348 100644
--- a/Unpack.pm
+++ b/Unpack.pm
@@ -1662,7 +1662,7 @@ sub _unused_pathname
## try to come up with a very similar name, just different suffix.
## be compatible with path name shortening in unpack()
my $test_path = $wanted_path . '._';
- for my $i ('', 1..999)
+ for my $i ('', 1..99999)
{
# All our mime detectors work on file contents, rather than on
suffixes.
# Thus messing with the suffix should be okay here.