Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package frozen-bubble for openSUSE:Factory checked in at 2024-07-09 20:06:35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/frozen-bubble (Old) and /work/SRC/openSUSE:Factory/.frozen-bubble.new.2080 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "frozen-bubble" Tue Jul 9 20:06:35 2024 rev:35 rq:1186435 version:2.212 Changes: -------- --- /work/SRC/openSUSE:Factory/frozen-bubble/frozen-bubble.changes 2024-03-07 22:02:40.799348979 +0100 +++ /work/SRC/openSUSE:Factory/.frozen-bubble.new.2080/frozen-bubble.changes 2024-07-09 20:07:19.099973647 +0200 @@ -1,0 +2,6 @@ +Fri Jul 5 19:03:51 UTC 2024 - Giacomo Comes <gcomes....@gmail.com> + +- add patch perl-5.40.patch + * fix build with perl 5.40 + +------------------------------------------------------------------- New: ---- perl-5.40.patch BETA DEBUG BEGIN: New: - add patch perl-5.40.patch * fix build with perl 5.40 BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ frozen-bubble.spec ++++++ --- /var/tmp/diff_new_pack.xbcdmC/_old 2024-07-09 20:07:19.755997550 +0200 +++ /var/tmp/diff_new_pack.xbcdmC/_new 2024-07-09 20:07:19.755997550 +0200 @@ -1,7 +1,7 @@ # # spec file for package frozen-bubble # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -39,6 +39,8 @@ Patch5: appdata.patch # PATCH-FIX-OPENSUSE get a strange check silent - what's the sense of checking snprintf when the buffer size is correct Patch6: silencebadsnprintfcheck.patch +# PATCH-FIX-OPENSUSE fix build with perl 5.40 +Patch7: perl-5.40.patch BuildRequires: Mesa-devel BuildRequires: SDL_Pango-devel BuildRequires: SDL_image-devel @@ -109,6 +111,7 @@ %patch -P 4 -p1 %patch -P 5 -p1 %patch -P 6 -p1 +%patch -P 7 -p1 %build perl Build.PL destdir=%{buildroot} installdirs=vendor --prefix=%{_prefix} ++++++ perl-5.40.patch ++++++ diff -Nraub a/inc/My/Builder.pm b/inc/My/Builder.pm --- a/inc/My/Builder.pm 2024-07-05 14:58:12.281058474 -0400 +++ b/inc/My/Builder.pm 2024-07-05 14:59:33.198132707 -0400 @@ -9,7 +9,7 @@ use File::Spec::Functions qw(catdir catfile rootdir); use IO::File qw(); use Alien::SDL; -use Module::Build '0.36' => qw(); +use Module::Build qw(); use autodie qw(:all move read_file write_file); use parent 'Module::Build'; use Locale::Maketext::Extract;