Hello community,

here is the log from the commit of package kdevelop4-pg-qt.3627 for 
openSUSE:13.2:Update checked in at 2015-03-24 12:41:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:13.2:Update/kdevelop4-pg-qt.3627 (Old)
 and      /work/SRC/openSUSE:13.2:Update/.kdevelop4-pg-qt.3627.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kdevelop4-pg-qt.3627"

Changes:
--------
New Changes file:

--- /dev/null   2015-03-12 01:14:30.992027505 +0100
+++ 
/work/SRC/openSUSE:13.2:Update/.kdevelop4-pg-qt.3627.new/kdevelop4-pg-qt.changes
    2015-03-24 12:41:26.000000000 +0100
@@ -0,0 +1,51 @@
+-------------------------------------------------------------------
+Thu Jan 22 09:20:32 UTC 2015 - [email protected]
+
+- Add upstream commit to fix warnings to resolve the current
+  build errors
+  - fix-error.diff
+
+-------------------------------------------------------------------
+Wed Aug 27 18:28:58 UTC 2014 - [email protected]
+
+- Minor spec cleanup
+- Adjust filelists to use kde4 macros accordingly to package buildsystem
+
+-------------------------------------------------------------------
+Mon Apr 15 10:32:04 UTC 2013 - [email protected]
+
+- license update: LGPL-2.0+ and GPL-2.0+
+  Package is (mostly) LGPL (library gpl not lesser gpl - hence 2.0)
+  licensed. Examples are GPL-2.0
+
+-------------------------------------------------------------------
+Tue Mar  5 13:26:32 UTC 2013 - [email protected]
+
+- update license to new format
+
+-------------------------------------------------------------------
+Tue Mar 13 09:50:59 UTC 2012 - [email protected]
+
+- update to 1.0.0 release
+   * Better error messages
+   * Better compatibility
+   * Added lexer generation
+   * Bug fixes
+
+-------------------------------------------------------------------
+Tue Oct 18 12:44:40 UTC 2011 - [email protected]
+
+- Move the headers in the non-devel package (bnc#722152)
+kdevelop-pg-qt is only a generator and should be packaged like flex or bison.
+kdevelop-pg-qt currently has no runtime use.
+
+-------------------------------------------------------------------
+Sat Apr 16 10:23:37 UTC 2011 - [email protected]
+
+- update to 0.9.5 bugfix release
+
+-------------------------------------------------------------------
+Sat May  1 15:23:00 UTC 2010 - [email protected]
+
+- Initial package
+

New:
----
  fix-error.diff
  kdevelop-pg-qt-1.0.0.tar.bz2
  kdevelop4-pg-qt.changes
  kdevelop4-pg-qt.spec

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

Other differences:
------------------
++++++ kdevelop4-pg-qt.spec ++++++
#
# spec file for package kdevelop4-pg-qt
#
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


Name:           kdevelop4-pg-qt
Version:        1.0.0
Release:        0
Summary:        Supporting package for the additional plugins for Kdevelop4
License:        LGPL-2.0+ and GPL-2.0+
Group:          Development/Tools/IDE
Url:            http://www.kdevelop.org
Source0:        kdevelop-pg-qt-%{version}.tar.bz2
# PATCH-FIX-UPSTREAM fix-error.diff 
Patch1:         fix-error.diff
BuildRequires:  bison
BuildRequires:  flex
BuildRequires:  libkde4-devel
Obsoletes:      %{name}-devel
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
%kde4_runtime_requires

%description
Supporting package for the additional plugins for Kdevelop4 Integrated 
Development Environment

%prep
%setup -q -n kdevelop-pg-qt-%{version}
%patch1 -p1

%build
  %cmake_kde4 -d build
  %make_jobs

%install
  %kde4_makeinstall -C build
  %kde_post_install

%post -p /sbin/ldconfig

%postun -p /sbin/ldconfig

%files
%defattr(-,root,root)
%{_kde4_bindir}/kdev-pg-qt
%{_kde4_prefix}/include/kdevelop-pg-qt/
%{_kde4_libdir}/cmake/KDevelop-PG-Qt

%changelog
++++++ fix-error.diff ++++++
commit ac587957cd0cabbc668604507e2cfebb6810ed09
Author: Milian Wolff <[email protected]>
Date:   Thu Nov 29 15:56:40 2012 +0100

    fix some warnings

diff --git a/kdev-pg/kdev-pg-code-gen.cpp b/kdev-pg/kdev-pg-code-gen.cpp
index e06c6be..badb461 100644
--- a/kdev-pg/kdev-pg-code-gen.cpp
+++ b/kdev-pg/kdev-pg-code-gen.cpp
@@ -51,7 +51,7 @@ namespace KDevPG
 
   void generateCondition(const World::NodeSet& s, QTextStream& out)
   {
-    if(s.size() == 0 || s.size() == 1 && 
nodeCast<Model::ZeroItem*>(*s.begin()) != 0)
+    if(s.size() == 0 || (s.size() == 1 && 
nodeCast<Model::ZeroItem*>(*s.begin()) != 0))
     {
       out << "true /*epsilon*/";
       return;
diff --git a/kdev-pg/kdev-pg-lexer.ll b/kdev-pg/kdev-pg-lexer.ll
index a0864af..9261d71 100644
--- a/kdev-pg/kdev-pg-lexer.ll
+++ b/kdev-pg/kdev-pg-lexer.ll
@@ -425,7 +425,7 @@ void appendLineBuffer()
   strcpy(yyTextLine+currentOffset, yytext + (yymoreFlag ? lastTextLeng : 0)); 
/* append current */
   /* strcpy is faster than strcat */
   
-  Q_ASSERT(strlen(yyTextLine) < yyTextLineLeng);
+  Q_ASSERT(strlen(yyTextLine) < size_t(yyTextLineLeng));
   
   lastTextLeng = strlen(yytext);
   yymoreFlag = false;
diff --git a/kdev-pg/kdev-pg-parser.yy b/kdev-pg/kdev-pg-parser.yy
index d5a25f5..8f8d604 100644
--- a/kdev-pg/kdev-pg-parser.yy
+++ b/kdev-pg/kdev-pg-parser.yy
@@ -309,7 +309,7 @@ opt_lexer_action
     | T_CONTINUE {
         r = "\nlxCONTINUE;\n";
       }
-    | /* empty */ { r = "\nlxSKIP\n" }
+    | /* empty */ { r = "\nlxSKIP\n"; }
     ;
 
 regexp
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to