Hello community,

here is the log from the commit of package calligra for openSUSE:Factory 
checked in at 2016-07-21 08:17:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/calligra (Old)
 and      /work/SRC/openSUSE:Factory/.calligra.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "calligra"

Changes:
--------
--- /work/SRC/openSUSE:Factory/calligra/calligra.changes        2016-06-02 
09:38:42.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.calligra.new/calligra.changes   2016-07-21 
08:17:47.000000000 +0200
@@ -1,0 +2,6 @@
+Mon Jul 18 08:06:11 UTC 2016 - [email protected]
+
+- narrowing-warning.patch: Fix compilation of PsCommentLexer.cpp on
+  platforms where char is unsigned
+
+-------------------------------------------------------------------

New:
----
  narrowing-warning.patch

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

Other differences:
------------------
++++++ calligra.spec ++++++
--- /var/tmp/diff_new_pack.u5jL0k/_old  2016-07-21 08:17:51.000000000 +0200
+++ /var/tmp/diff_new_pack.u5jL0k/_new  2016-07-21 08:17:51.000000000 +0200
@@ -29,6 +29,8 @@
 Source0:        
http://download.kde.org/stable/%{name}-%{version}/%{name}-%{version}.tar.xz
 # PATCH-FIX-OPENSUSE adapt-to-libwps-0.4.patch boo#942107 -- makes it build 
against libwps 0.4 (taken from Fedora)
 Patch0:         adapt-to-libwps-0.4.patch
+# PATCH-FIX-OPENSUSE narrowing-warning.patch -- Fix compilation of 
PsCommentLexer.cpp on platforms where char is unsigned
+Patch1:         narrowing-warning.patch
 BuildRequires:  OpenColorIO-devel
 BuildRequires:  OpenEXR-devel
 BuildRequires:  create-resources
@@ -416,6 +418,7 @@
 %if 0%{?suse_version} > 1310
 %patch0 -p1
 %endif
+%patch1 -p1
 
 # Remove build time references so build-compare can do its work
 FAKE_BUILDTIME=$(LC_ALL=C date -u -r %{_sourcedir}/%{name}.changes '+%%H:%%M')


++++++ narrowing-warning.patch ++++++
>From 956bb80db4f300e4f8edeaf19d24fd61eb1932b2 Mon Sep 17 00:00:00 2001
From: "Friedrich W. H. Kossebau" <[email protected]>
Date: Mon, 31 Aug 2015 13:47:07 +0200
Subject: [PATCH] Fix compilation of PsCommentLexer.cpp on platforms where char
 is unsigned

REVIEW: 124883

Thanks Tom Hall for the fix
---
 filters/karbon/eps/PsCommentLexer.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/filters/karbon/eps/PsCommentLexer.cpp 
b/filters/karbon/eps/PsCommentLexer.cpp
index 6487df6..dd928d6 100644
--- a/filters/karbon/eps/PsCommentLexer.cpp
+++ b/filters/karbon/eps/PsCommentLexer.cpp
@@ -63,7 +63,7 @@ const char*statetoa(State state)
 
 typedef struct {
     State oldState;
-    char c;
+    signed char c;
     State newState;
     Action action;
 } Transition;
-- 
2.9.1


Reply via email to