Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package vitetris for openSUSE:Factory checked in at 2024-11-03 07:18:06 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/vitetris (Old) and /work/SRC/openSUSE:Factory/.vitetris.new.2020 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "vitetris" Sun Nov 3 07:18:06 2024 rev:6 rq:1220350 version:0.59.1 Changes: -------- --- /work/SRC/openSUSE:Factory/vitetris/vitetris.changes 2024-02-25 14:06:05.864853584 +0100 +++ /work/SRC/openSUSE:Factory/.vitetris.new.2020/vitetris.changes 2024-11-03 07:18:26.634025800 +0100 @@ -1,0 +2,6 @@ +Sat Nov 2 20:39:09 UTC 2024 - Martin Hauke <[email protected]> + +- Add patch: + * vitetris-fix-gcc14.patch + +------------------------------------------------------------------- New: ---- vitetris-fix-gcc14.patch BETA DEBUG BEGIN: New:- Add patch: * vitetris-fix-gcc14.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ vitetris.spec ++++++ --- /var/tmp/diff_new_pack.jTStn9/_old 2024-11-03 07:18:27.290052920 +0100 +++ /var/tmp/diff_new_pack.jTStn9/_new 2024-11-03 07:18:27.294053086 +0100 @@ -1,8 +1,8 @@ # # spec file for package vitetris # -# Copyright (c) 2020 SUSE LLC -# Copyright (c) 2019-2020, Martin Hauke <[email protected]> +# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2019-2024, Martin Hauke <[email protected]> # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -31,6 +31,7 @@ Source: https://github.com/vicgeralds/%{name}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz Source1: vitetris.6 Patch6: vitetris-fix-font-path.patch +Patch7: vitetris-fix-gcc14.patch %if 0%{with allegro} BuildRequires: liballeg-devel %endif @@ -51,7 +52,6 @@ possible to prevent the piece from ever locking by abusing lock delay resets.) - %prep %autosetup -p1 ++++++ vitetris-fix-gcc14.patch ++++++ diff --git a/src/menu/netplay.c b/src/menu/netplay.c index 0b03ec7..f181ebb 100644 --- a/src/menu/netplay.c +++ b/src/menu/netplay.c @@ -17,7 +17,7 @@ static char name_str[18]; static int cursor = -1; -static init_field(char *str, const char *val, int maxlen) +static void init_field(char *str, const char *val, int maxlen) { memset(str, ' ', maxlen+1); if (val) { diff --git a/src/netw/tty_socket.c b/src/netw/tty_socket.c index c6858a4..1593498 100644 --- a/src/netw/tty_socket.c +++ b/src/netw/tty_socket.c @@ -11,6 +11,7 @@ #include <sys/un.h> #include <pwd.h> #include <errno.h> +#include <time.h> #include "sock.h" #include "internal.h"
