Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package asclock for openSUSE:Factory checked in at 2025-05-20 22:45:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/asclock (Old) and /work/SRC/openSUSE:Factory/.asclock.new.30101 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "asclock" Tue May 20 22:45:44 2025 rev:18 rq:1278753 version:2.0.12 Changes: -------- --- /work/SRC/openSUSE:Factory/asclock/asclock.changes 2024-08-17 12:41:45.924811652 +0200 +++ /work/SRC/openSUSE:Factory/.asclock.new.30101/asclock.changes 2025-05-20 22:45:51.248769714 +0200 @@ -1,0 +2,7 @@ +Tue May 6 06:37:24 UTC 2025 - pgaj...@suse.com + +- added patches + fix build with gcc15 + + asclock-gcc15.patch + +------------------------------------------------------------------- New: ---- asclock-gcc15.patch BETA DEBUG BEGIN: New: fix build with gcc15 + asclock-gcc15.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ asclock.spec ++++++ --- /var/tmp/diff_new_pack.Q8oJSU/_old 2025-05-20 22:45:51.884796407 +0200 +++ /var/tmp/diff_new_pack.Q8oJSU/_new 2025-05-20 22:45:51.884796407 +0200 @@ -1,7 +1,7 @@ # # spec file for package asclock # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -26,6 +26,8 @@ Source: asclock-%{version}.tar.bz2 Patch0: gcc4.diff Patch1: asclock-C99.diff +# fix build with gcc15 +Patch2: asclock-gcc15.patch BuildRequires: fdupes BuildRequires: imake BuildRequires: pkgconfig ++++++ asclock-gcc15.patch ++++++ --- asclock.h 2025-05-06 06:26:49.442371383 +0000 +++ asclock.h 2025-05-06 06:32:27.594886122 +0000 @@ -151,9 +151,9 @@ void parseArgs(int argc, char **argv); int read_init(FILE *f); int read_type(int *type); int read_token(char *str, int max); -int read_assign(); +int read_assign(void); int read_int(int *ret); -int read_semicolon(); +int read_semicolon(void); #endif /* ASCLOCK_H */ --- config.c 2025-05-06 06:26:49.442272713 +0000 +++ config.c 2025-05-06 06:33:07.998999146 +0000 @@ -147,13 +147,13 @@ int loadTheme(char *themesdir) exit(-1); } - if(!read_assign(f)) + if(!read_assign()) printf("read_assign failed\n"); if(!read_int(s->addr)) printf("read_int failed\n"); - if(!read_semicolon(f)) + if(!read_semicolon()) printf("read_semicolon failed\n"); } --- parser.c 2025-05-06 06:26:49.442342036 +0000 +++ parser.c 2025-05-06 06:32:42.238851768 +0000 @@ -72,7 +72,7 @@ int read_token(char *str, int max) return TRUE; } -int read_assign() +int read_assign(void) { while(next!='=') @@ -106,7 +106,7 @@ int read_int(int *ret) return TRUE; } -int read_semicolon() +int read_semicolon(void) { while(next!=';')