Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libbraille for openSUSE:Factory checked in at 2024-04-24 15:13:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libbraille (Old) and /work/SRC/openSUSE:Factory/.libbraille.new.1880 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libbraille" Wed Apr 24 15:13:14 2024 rev:19 rq:1169602 version:0.19.0 Changes: -------- --- /work/SRC/openSUSE:Factory/libbraille/libbraille.changes 2024-03-01 23:35:43.661724194 +0100 +++ /work/SRC/openSUSE:Factory/.libbraille.new.1880/libbraille.changes 2024-04-24 15:13:27.095173339 +0200 @@ -1,0 +2,7 @@ +Sun Apr 21 17:09:03 UTC 2024 - Michael Gorse <mgo...@suse.com> + +- Rebuild libbraille-0.19.0-visibility.patch to apply with -p1, + and adjust autosetup. +- Add libbraille-fix-prototype.patch: fix build with gcc 14. + +------------------------------------------------------------------- New: ---- libbraille-fix-prototype.patch BETA DEBUG BEGIN: New: and adjust autosetup. - Add libbraille-fix-prototype.patch: fix build with gcc 14. BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libbraille.spec ++++++ --- /var/tmp/diff_new_pack.gh0Jw2/_old 2024-04-24 15:13:28.123210730 +0200 +++ /var/tmp/diff_new_pack.gh0Jw2/_new 2024-04-24 15:13:28.123210730 +0200 @@ -1,7 +1,7 @@ # # spec file for package libbraille # -# Copyright (c) 2021 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 @@ -29,6 +29,8 @@ Source: http://downloads.sourceforge.net/project/libbraille/libbraille/libbraille-%{version}/libbraille-%{version}.tar.gz # PATCH-MISSING-TAG -- See http://en.opensuse.org/Packaging/Patches Patch0: libbraille-0.19.0-visibility.patch +# PATCH-FIX-UPSTREAM libbraille-fix-prototype.patch +Patch1: libbraille-fix-prototype.patch BuildRequires: gcc-c++ BuildRequires: libtool BuildRequires: libusb-devel @@ -92,7 +94,7 @@ keys pressed on the Braille keyboard. %prep -%autosetup -p0 +%autosetup -p1 %build autoreconf -fi ++++++ libbraille-0.19.0-visibility.patch ++++++ --- /var/tmp/diff_new_pack.gh0Jw2/_old 2024-04-24 15:13:28.151211748 +0200 +++ /var/tmp/diff_new_pack.gh0Jw2/_new 2024-04-24 15:13:28.155211894 +0200 @@ -1,7 +1,6 @@ -Index: configure.ac -=================================================================== ---- configure.ac.orig 2006-03-04 01:31:27.000000000 +0100 -+++ configure.ac 2009-10-07 01:53:26.000000000 +0200 +diff -urp libbraille-0.19.0.orig/configure.ac libbraille-0.19.0/configure.ac +--- libbraille-0.19.0.orig/configure.ac 2006-03-03 18:31:27.000000000 -0600 ++++ libbraille-0.19.0/configure.ac 2024-04-21 12:08:43.799885754 -0500 @@ -208,6 +208,44 @@ AC_SUBST(JAVA_INC) AC_SUBST(JAVA_INC_NATIVE) AM_CONDITIONAL(JAVAWRAPPER, test x$enable_java = xyes) @@ -47,10 +46,9 @@ # Finally create all the generated files # The configure script takes "file.in" and substitutes variables to produce # "file". In this case we are just generating the Makefiles, but this could -Index: include/braille.h -=================================================================== ---- include/braille.h.orig 2006-03-04 01:31:25.000000000 +0100 -+++ include/braille.h 2009-10-07 02:08:27.000000000 +0200 +diff -urp libbraille-0.19.0.orig/include/braille.h libbraille-0.19.0/include/braille.h +--- libbraille-0.19.0.orig/include/braille.h 2006-03-03 18:31:25.000000000 -0600 ++++ libbraille-0.19.0/include/braille.h 2024-04-21 12:08:43.799885754 -0500 @@ -25,13 +25,7 @@ extern "C" { // that uses this DLL. This way any other project whose source files include this file see // LIBBRAILLE_API functions as being imported from a DLL, wheras this DLL sees symbols ++++++ libbraille-fix-prototype.patch ++++++ diff -urp libbraille-0.19.0.orig/backend/baum/brl.c libbraille-0.19.0/backend/baum/brl.c --- libbraille-0.19.0.orig/backend/baum/brl.c 2006-03-03 18:31:25.000000000 -0600 +++ libbraille-0.19.0/backend/baum/brl.c 2024-04-21 12:02:18.174577670 -0500 @@ -29,8 +29,8 @@ static char (*drvinit_func) (brli_term *term, const char *pathname); static char (*drvclose_func) (brli_term *term); static int (*write_func) (brli_term *term, char *bytes, int size); -static int (*read_byte_func) (brli_term *term, char *byte, int timeout); -static int (*read_bytes_func) (brli_term *term, char *bytes, int size, int timeout); +static int (*read_byte_func) (brli_term *term, unsigned char *byte, int timeout); +static int (*read_bytes_func) (brli_term *term, unsigned char *bytes, int size, int timeout); #define ESCAPE 0x1B #define TSP_DATA_SIZE 5