Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gtypist for openSUSE:Factory checked 
in at 2024-11-02 16:12:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gtypist (Old)
 and      /work/SRC/openSUSE:Factory/.gtypist.new.2020 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gtypist"

Sat Nov  2 16:12:24 2024 rev:11 rq:1220269 version:2.9.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/gtypist/gtypist.changes  2020-08-29 
20:34:02.733255539 +0200
+++ /work/SRC/openSUSE:Factory/.gtypist.new.2020/gtypist.changes        
2024-11-02 16:12:41.689538611 +0100
@@ -1,0 +2,5 @@
+Sat Nov  2 11:55:19 UTC 2024 - Jan Engelhardt <[email protected]>
+
+- Replace escdelay.diff by new gcc14.patch to resolve more FTBFS
+
+-------------------------------------------------------------------

Old:
----
  escdelay.diff

New:
----
  _scmsync.obsinfo
  build.specials.obscpio
  gcc14.patch

BETA DEBUG BEGIN:
  Old:
- Replace escdelay.diff by new gcc14.patch to resolve more FTBFS
BETA DEBUG END:

BETA DEBUG BEGIN:
  New:
- Replace escdelay.diff by new gcc14.patch to resolve more FTBFS
BETA DEBUG END:

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ gtypist.spec ++++++
--- /var/tmp/diff_new_pack.ULBblO/_old  2024-11-02 16:12:42.617577138 +0100
+++ /var/tmp/diff_new_pack.ULBblO/_new  2024-11-02 16:12:42.617577138 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gtypist
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,11 +23,10 @@
 License:        GPL-3.0-only
 Group:          Amusements/Teaching/Other
 URL:            http://gnu.org/software/gtypist/
-
 Source:         http://ftp.gnu.org/gnu/gtypist/%name-%version.tar.xz
 Source2:        http://ftp.gnu.org/gnu/gtypist/%name-%version.tar.xz.sig
 Source3:        %name.keyring
-Patch1:         escdelay.diff
+Patch1:         gcc14.patch
 BuildRequires:  bison
 BuildRequires:  ncurses-devel
 BuildRequires:  xz
@@ -67,7 +66,7 @@
 
 %build 
 %configure
-make %{?_smp_mflags}
+%make_build
 
 %install
 %make_install

++++++ _scmsync.obsinfo ++++++
mtime: 1730548659
commit: 7486127ac85ef800a382735d898ed945aa341e64efbe2d1ee333cb28361c4d4e
url: https://src.opensuse.org/jengelh/gtypist
revision: master

++++++ gcc14.patch ++++++
From: Jan Engelhardt <[email protected]>
Date: 2024-11-02 12:54:12.376370921 +0100

cursmenu.c:272:33: error: implicit declaration of function ‘utf8len’ 
[-Wimplicit-function-declaration]
gtypist.c:2208:12: error: lvalue required as left operand of assignment
 2208 |   ESCDELAY = 1;

---
 src/cursmenu.c |    1 +
 src/gtypist.c  |    2 +-
 src/script.h   |    2 +-
 src/utf8.c     |    1 +
 4 files changed, 4 insertions(+), 2 deletions(-)

Index: gtypist-2.9.5/src/cursmenu.c
===================================================================
--- gtypist-2.9.5.orig/src/cursmenu.c
+++ gtypist-2.9.5/src/cursmenu.c
@@ -20,6 +20,7 @@
 #include "config.h"
 #include "cursmenu.h"
 #include "script.h"
+#include "utf8.h"
 
 #ifdef HAVE_PDCURSES
 #include <curses.h>
Index: gtypist-2.9.5/src/gtypist.c
===================================================================
--- gtypist-2.9.5.orig/src/gtypist.c
+++ gtypist-2.9.5/src/gtypist.c
@@ -2205,7 +2205,7 @@ int main( int argc, char **argv )
 
   // Quick hack to get rid of the escape delays
 #ifdef __NCURSES_H
-  ESCDELAY = 1;
+  set_escdelay(1);
 #endif
 
   /* set up colour pairs if possible */
Index: gtypist-2.9.5/src/script.h
===================================================================
--- gtypist-2.9.5.orig/src/script.h
+++ gtypist-2.9.5/src/script.h
@@ -89,7 +89,7 @@ extern char *buffer_command( FILE *scrip
 extern void seek_label( FILE *script, char *label, char *ref_line );
 extern int hash_label( char *label );
 extern void do_exit( FILE *script );
-
+extern void check_script_file_with_current_encoding(FILE *script);
 
 extern void bind_F12 (const char *);   // Defined in gtypist.c
 
Index: gtypist-2.9.5/src/utf8.c
===================================================================
--- gtypist-2.9.5.orig/src/utf8.c
+++ gtypist-2.9.5/src/utf8.c
@@ -19,6 +19,7 @@
 
 #include "config.h"
 #include "utf8.h"
+#include "error.h"
 
 #ifdef HAVE_PDCURSES
 #include <curses.h>

Reply via email to