Hello community,

here is the log from the commit of package espeak for openSUSE:Factory checked 
in at 2016-05-31 12:09:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/espeak (Old)
 and      /work/SRC/openSUSE:Factory/.espeak.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "espeak"

Changes:
--------
--- /work/SRC/openSUSE:Factory/espeak/espeak.changes    2016-03-02 
14:19:20.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.espeak.new/espeak.changes       2016-05-31 
12:09:20.000000000 +0200
@@ -1,0 +2,5 @@
+Tue May 24 09:27:53 UTC 2016 - [email protected]
+
+- gcc6-char-cast.patch: Fix GCC6 errors.
+
+-------------------------------------------------------------------

New:
----
  gcc6-char-cast.patch

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

Other differences:
------------------
++++++ espeak.spec ++++++
--- /var/tmp/diff_new_pack.YbzzuD/_old  2016-05-31 12:09:21.000000000 +0200
+++ /var/tmp/diff_new_pack.YbzzuD/_new  2016-05-31 12:09:21.000000000 +0200
@@ -30,6 +30,7 @@
 Source2:        mb-lt1
 Source3:        mb-lt2
 Patch:          easpeak-fix-bufferoverflow-strncpy.patch
+Patch1:         gcc6-char-cast.patch
 BuildRequires:  gcc-c++
 BuildRequires:  portaudio-devel
 BuildRequires:  pulseaudio-devel
@@ -63,6 +64,7 @@
 # Probably a mistake from upstream
 %setup -q -n %{name}-%{version}-source
 %patch -p1
+%patch1 -p1
 # Don't use the included binary voice dictionaries; we compile these from
 # source
 %{__rm} espeak-data/*_dict


++++++ gcc6-char-cast.patch ++++++
--- a/src/tr_languages.cpp
+++ b/src/tr_languages.cpp
@@ -198,7 +198,7 @@ static const unsigned short chars_ignore
        0x200d,  1, // zero width joiner
        0, 0 };
 
-const char string_ordinal[] = {0xc2,0xba,0};  // masculine ordinal character, 
UTF-8
+const char string_ordinal[] = {(char)0xc2,(char)0xba,0};  // masculine ordinal 
character, UTF-8
 
 
 static Translator* NewTranslator(void)

Reply via email to