Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package tinyssh for openSUSE:Factory checked in at 2024-06-17 19:34:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/tinyssh (Old) and /work/SRC/openSUSE:Factory/.tinyssh.new.19518 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "tinyssh" Mon Jun 17 19:34:14 2024 rev:8 rq:1181317 version:20240101 Changes: -------- --- /work/SRC/openSUSE:Factory/tinyssh/tinyssh.changes 2024-01-28 19:43:03.053449815 +0100 +++ /work/SRC/openSUSE:Factory/.tinyssh.new.19518/tinyssh.changes 2024-06-17 19:34:25.581162083 +0200 @@ -1,0 +2,7 @@ +Thu Jun 13 10:28:06 UTC 2024 - Gus Kenion <gus.ken...@suse.com> + +- Compatibility fix for upcoming gcc14 release. + * tinyssh-gcc14-compat.patch adds a missing #include statement + that prevents tinyssh from building with gcc14 + +------------------------------------------------------------------- New: ---- tinyssh-gcc14-compat.patch BETA DEBUG BEGIN: New:- Compatibility fix for upcoming gcc14 release. * tinyssh-gcc14-compat.patch adds a missing #include statement that prevents tinyssh from building with gcc14 BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ tinyssh.spec ++++++ --- /var/tmp/diff_new_pack.s6Fbuy/_old 2024-06-17 19:34:26.157183276 +0200 +++ /var/tmp/diff_new_pack.s6Fbuy/_new 2024-06-17 19:34:26.161183422 +0200 @@ -24,6 +24,7 @@ Group: Productivity/Networking/SSH URL: https://tinyssh.org/ Source: https://github.com/janmojzis/tinyssh/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz +Patch0: tinyssh-gcc14-compat.patch %description tinyssh is a minimalistic SSH server which implements only a subset of SSHv2 @@ -36,6 +37,7 @@ %prep %setup -q +%patch -P 0 -p1 echo %{optflags} > conf-cflags echo %{_sbindir} > conf-bin echo %{_mandir} > conf-man ++++++ tinyssh-gcc14-compat.patch ++++++ --- a/tinyssh/packet_put.c +++ b/tinyssh/packet_put.c @@ -10,6 +10,7 @@ Public domain. #include "ssh.h" #include "log.h" #include "packet.h" +#include "global.h" static void packet_put_plain_(struct buf *b) {