Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package strip-nondeterminism for openSUSE:Factory checked in at 2023-01-12 22:42:32 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/strip-nondeterminism (Old) and /work/SRC/openSUSE:Factory/.strip-nondeterminism.new.32243 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "strip-nondeterminism" Thu Jan 12 22:42:32 2023 rev:7 rq:1057779 version:1.12.0 Changes: -------- --- /work/SRC/openSUSE:Factory/strip-nondeterminism/strip-nondeterminism.changes 2021-06-16 20:33:36.954994754 +0200 +++ /work/SRC/openSUSE:Factory/.strip-nondeterminism.new.32243/strip-nondeterminism.changes 2023-01-12 22:42:33.228277789 +0100 @@ -1,0 +2,6 @@ +Wed Jan 11 11:53:54 UTC 2023 - Dominique Leuenberger <dims...@opensuse.org> + +- Add f1017c67.patch: Support the magic format as returned by file + 5.44 (plus commit dc71304b). + +------------------------------------------------------------------- New: ---- f1017c67.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ strip-nondeterminism.spec ++++++ --- /var/tmp/diff_new_pack.jFZdDV/_old 2023-01-12 22:42:34.196283276 +0100 +++ /var/tmp/diff_new_pack.jFZdDV/_new 2023-01-12 22:42:34.200283298 +0100 @@ -1,7 +1,7 @@ # # spec file for package strip-nondeterminism # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -28,6 +28,7 @@ Source2: rpmmacros Source3: strip-all-nondeterminism Source4: %{name}.keyring +Patch0: https://salsa.debian.org/reproducible-builds/strip-nondeterminism/-/commit/f1017c67.patch BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: perl-base ++++++ f1017c67.patch ++++++ >From f1017c675abea533bd60272f1bedfbccf759b9c9 Mon Sep 17 00:00:00 2001 From: FC Stegerman <f...@obfusk.net> Date: Sun, 1 Jan 2023 22:14:22 +0100 Subject: [PATCH] update pyzip regex for latest file(1) --- lib/File/StripNondeterminism.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/File/StripNondeterminism.pm b/lib/File/StripNondeterminism.pm index fc5451e..338a514 100644 --- a/lib/File/StripNondeterminism.pm +++ b/lib/File/StripNondeterminism.pm @@ -111,7 +111,7 @@ sub get_normalizer_for_file($) { } # pyzip - check last due to call to file(1) - if (_get_file_type($_) =~ m/python3 script executable \(binary data\)/) { + if (_get_file_type($_) =~ m/python3 script executable \((Zip archive|binary data)\)/) { my $handler = _handler('pyzip'); return $handler if File::StripNondeterminism::handlers::pyzip::is_pyzip_file($_); -- GitLab