Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package spu-tools for openSUSE:Factory checked in at 2025-07-09 17:27:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/spu-tools (Old) and /work/SRC/openSUSE:Factory/.spu-tools.new.7373 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "spu-tools" Wed Jul 9 17:27:47 2025 rev:23 rq:1291314 version:2.3.0 Changes: -------- --- /work/SRC/openSUSE:Factory/spu-tools/spu-tools.changes 2024-02-26 19:48:51.453428281 +0100 +++ /work/SRC/openSUSE:Factory/.spu-tools.new.7373/spu-tools.changes 2025-07-09 17:28:20.479381421 +0200 @@ -1,0 +2,7 @@ +Tue Jul 8 08:08:22 UTC 2025 - pgaj...@suse.com + +- added patches + build with gcc15 + + spu-tools-gcc15.patch + +------------------------------------------------------------------- New: ---- spu-tools-gcc15.patch ----------(New B)---------- New: build with gcc15 + spu-tools-gcc15.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ spu-tools.spec ++++++ --- /var/tmp/diff_new_pack.pYgiRa/_old 2025-07-09 17:28:21.027404287 +0200 +++ /var/tmp/diff_new_pack.pYgiRa/_new 2025-07-09 17:28:21.027404287 +0200 @@ -32,6 +32,8 @@ # match ps3flash for package installation Supplements: modalias(ps3:8) Patch0: spu-tools-2.3.0-as-needed.patch +# build with gcc15 +Patch1: spu-tools-gcc15.patch %description The spu-tools package contains user space tools for Cell/B.E. ++++++ spu-tools-gcc15.patch ++++++ --- spu-top.c 2025-07-08 07:55:16.045199847 +0000 +++ spu-top.c 2025-07-08 08:05:23.329460812 +0000 @@ -119,6 +119,10 @@ static void quit() endwin(); exit(0); } +static void quit_sig(int unused) +{ + quit(); +} /* Initializes ncurses library */ static void init_ncurses() @@ -411,12 +415,12 @@ int main(int argc, char **argv) /* Handle signals */ atexit(quit); - signal(SIGALRM, quit); - signal(SIGHUP, quit); - signal(SIGINT, quit); - signal(SIGPIPE, quit); - signal(SIGQUIT, quit); - signal(SIGTERM, quit); + signal(SIGALRM, quit_sig); + signal(SIGHUP, quit_sig); + signal(SIGINT, quit_sig); + signal(SIGPIPE, quit_sig); + signal(SIGQUIT, quit_sig); + signal(SIGTERM, quit_sig); last_time.tv_sec = 0; last_time.tv_usec = 0;