Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package 6tunnel for openSUSE:Factory checked in at 2025-07-10 22:11:37 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/6tunnel (Old) and /work/SRC/openSUSE:Factory/.6tunnel.new.7373 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "6tunnel" Thu Jul 10 22:11:37 2025 rev:6 rq:1291529 version:0.13 Changes: -------- --- /work/SRC/openSUSE:Factory/6tunnel/6tunnel.changes 2024-03-13 22:18:23.215848784 +0100 +++ /work/SRC/openSUSE:Factory/.6tunnel.new.7373/6tunnel.changes 2025-07-10 22:11:39.670499130 +0200 @@ -1,0 +2,7 @@ +Wed Jul 9 08:52:24 UTC 2025 - pgaj...@suse.com + +- added patches + https://github.com/wojtekka/6tunnel/issues/19 + + 6tunnel-gcc15.patch + +------------------------------------------------------------------- New: ---- 6tunnel-gcc15.patch ----------(New B)---------- New: https://github.com/wojtekka/6tunnel/issues/19 + 6tunnel-gcc15.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ 6tunnel.spec ++++++ --- /var/tmp/diff_new_pack.Wso9pB/_old 2025-07-10 22:11:40.430530741 +0200 +++ /var/tmp/diff_new_pack.Wso9pB/_new 2025-07-10 22:11:40.446531406 +0200 @@ -27,6 +27,8 @@ #Git-Clone: https://github.com/wojtekka/6tunnel.git Source: https://github.com/wojtekka/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz Patch1: https://github.com/wojtekka/6tunnel/commit/9e4119f03f57eec67b97dddbf09d363b638791dc.patch +# https://github.com/wojtekka/6tunnel/issues/19 +Patch2: 6tunnel-gcc15.patch BuildRequires: autoconf BuildRequires: automake BuildRequires: python3 ++++++ 6tunnel-gcc15.patch ++++++ Index: 6tunnel-0.13/6tunnel.c =================================================================== --- 6tunnel-0.13.orig/6tunnel.c +++ 6tunnel-0.13/6tunnel.c @@ -557,7 +557,7 @@ void map_read(void) fclose(f); } -void sighup() +void sighup(int unused) { source_map_destroy(); map_read(); @@ -565,7 +565,7 @@ void sighup() signal(SIGHUP, sighup); } -void sigchld() +void sigchld(int unused) { while (waitpid(-1, NULL, WNOHANG) > 0) { debug("child process exited\n"); @@ -575,7 +575,7 @@ void sigchld() signal(SIGCHLD, sigchld); } -void sigterm() +void sigterm(int unused) { if (pid_file != NULL) unlink(pid_file);