Hello community,

here is the log from the commit of package ell for openSUSE:Factory checked in 
at 2019-02-08 13:45:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ell (Old)
 and      /work/SRC/openSUSE:Factory/.ell.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ell"

Fri Feb  8 13:45:16 2019 rev:5 rq:670897 version:0.16

Changes:
--------
--- /work/SRC/openSUSE:Factory/ell/ell.changes  2018-12-27 00:23:58.631928536 
+0100
+++ /work/SRC/openSUSE:Factory/.ell.new.28833/ell.changes       2019-02-08 
13:45:17.518837146 +0100
@@ -1,0 +2,5 @@
+Thu Jan 31 11:45:09 UTC 2019 - sch...@suse.de
+
+- unsigned-char.patch: don't depend on signedness of char
+
+-------------------------------------------------------------------

New:
----
  unsigned-char.patch

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

Other differences:
------------------
++++++ ell.spec ++++++
--- /var/tmp/diff_new_pack.iJUuz3/_old  2019-02-08 13:45:18.382836880 +0100
+++ /var/tmp/diff_new_pack.iJUuz3/_new  2019-02-08 13:45:18.382836880 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ell
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -28,6 +28,7 @@
 Source:         
https://mirrors.kernel.org/pub/linux/libs/ell/%name-%version.tar.xz
 Source2:        
https://mirrors.kernel.org/pub/linux/libs/ell/%name-%version.tar.sign
 Source3:        %name.keyring
+Patch:          unsigned-char.patch
 BuildRequires:  gcc-c++
 BuildRequires:  libtool >= 2.2
 BuildRequires:  pkg-config
@@ -59,6 +60,7 @@
 
 %prep
 %setup -q
+%patch -p1
 
 %build
 %configure



++++++ unsigned-char.patch ++++++
Index: ell-0.16/ell/utf8.c
===================================================================
--- ell-0.16.orig/ell/utf8.c
+++ ell-0.16/ell/utf8.c
@@ -90,7 +90,7 @@ LIB_EXPORT int l_utf8_get_codepoint(cons
        wchar_t val;
        size_t i;
 
-       if (str[0] > 0) {
+       if ((str[0] & 0x80) == 0) {
                *cp = str[0];
                return 1;
        }

Reply via email to