commit kdevelop4 for openSUSE:Factory

2016-12-01 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2016-12-01 10:27:28

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is "kdevelop4"

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2016-09-30 
15:28:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2016-12-01 
10:27:29.0 +0100
@@ -1,0 +2,6 @@
+Tue Nov 29 07:20:36 UTC 2016 - o...@aepfle.de
+
+- Expand macro kde4_runtime_requires only when its available
+  to fix quilt setup
+
+---



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.LEbzYx/_old  2016-12-01 10:27:30.0 +0100
+++ /var/tmp/diff_new_pack.LEbzYx/_new  2016-12-01 10:27:30.0 +0100
@@ -51,7 +51,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires(post): shared-mime-info
 Requires(postun):   shared-mime-info
-%kde4_runtime_requires
+%{?kde4_runtime_requires}
 
 %description
 An integrated development environment (IDE) that allows you to write




commit kdevelop4 for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2016-09-30 15:27:58

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is "kdevelop4"

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2016-06-26 
23:52:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2016-09-30 
15:28:12.0 +0200
@@ -1,0 +2,5 @@
+Wed Aug 24 10:37:13 UTC 2016 - cgiboude...@gmx.com
+
+- BuildRequire libkdevplatform4-devel instead of the Qt5 based one.
+
+---



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.rlWTMo/_old  2016-09-30 15:28:14.0 +0200
+++ /var/tmp/diff_new_pack.rlWTMo/_new  2016-09-30 15:28:14.0 +0200
@@ -34,7 +34,7 @@
 %else
 BuildRequires:  libkde4-devel
 %endif
-BuildRequires:  libkdevplatform-devel >= 1.7.3
+BuildRequires:  libkdevplatform4-devel >= 1.7.3
 BuildRequires:  libqjson-devel
 # Catch 13.2, but not Leap nor SLE12
 %if 0%{?suse_version} <= 1320 && ! 0%{?is_opensuse} && 0%{?suse_version} != 
1315




commit kdevelop4 for openSUSE:Factory

2016-06-26 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2016-06-26 23:52:11

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is "kdevelop4"

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2016-05-16 
12:04:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2016-06-26 
23:52:15.0 +0200
@@ -1,0 +2,6 @@
+Thu Jun 23 16:21:37 UTC 2016 - buschman...@opensuse.org
+
+- add fix-for-null-pointer-dereference-with-gcc6.patch to fix bug
+  kde#360707 on openSUSE Tumbleweed / GCC6 
+
+---

New:

  fix-for-null-pointer-dereference-with-gcc6.patch



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.QBId8h/_old  2016-06-26 23:52:17.0 +0200
+++ /var/tmp/diff_new_pack.QBId8h/_new  2016-06-26 23:52:17.0 +0200
@@ -25,6 +25,8 @@
 Url:http://www.kdevelop.org
 Source0:
http://download.kde.org/stable/kdevelop/%{version}/src/kdevelop-%{version}.tar.bz2
 Source1:missing-translations.tar.xz
+# PATCH-FIX-UPSTREAM fix-for-null-pointer-dereference-with-gcc6.patch 
kde#360707
+Patch1: fix-for-null-pointer-dereference-with-gcc6.patch
 BuildRequires:  fdupes
 # SLE12 doesn't have kdebase4-workspace[-devel]
 %if 0%{?suse_version} != 1315 || 0%{?is_opensuse}
@@ -97,6 +99,9 @@
 %lang_package
 %prep
 %setup -q -n kdevelop-%{version}
+%if 0%{?suse_version} > 1320
+%patch1 -p1
+%endif
 %if 0%{?suse_version} <= 1320 && !0%{?is_opensuse}
 # fix build with older cmake versions (i.e. on 13.2 and below) by
 # readding "cmake_policy(SET CMP0002 OLD)" to po/CMakeLists.txt

++ fix-for-null-pointer-dereference-with-gcc6.patch ++
From: Kevin Funk 
Date: Mon, 21 Mar 2016 23:39:02 +
Subject: Fix places with undefined behavior
References: kde#360707
Upstream: submitted


New API: IndexedType::IndexedType(const AbstractType::Ptr& type)

Places where we may call AbstractPtr::indexed with this being a nullptr.

Similar patches probably need to be applied to other language plugins

CCMAIL: kdevelop-de...@kde.org
CCBUG: 360707
---


--- a/languages/cpp/cppduchain/cppducontext.h
+++ b/languages/cpp/cppduchain/cppducontext.h
@@ -340,7 +340,9 @@
   DelayedType::Ptr delayed( new DelayedType() );
   delayed->setIdentifier( i );
   
-  res.type = Cpp::resolveDelayedTypes( 
delayed.cast(), this, source, basicFlags & 
KDevelop::DUContext::NoUndefinedTemplateParams ? 
DUContext::NoUndefinedTemplateParams : DUContext::NoSearchFlags )->indexed();
+  auto resolved = Cpp::resolveDelayedTypes( 
delayed.cast(), this,
+source, basicFlags & DUContext::NoUndefinedTemplateParams ? 
DUContext::NoUndefinedTemplateParams : DUContext::NoSearchFlags );
+  res.type = IndexedType(resolved);
   
   if( basicFlags & KDevelop::DUContext::NoUndefinedTemplateParams) 
{
 AbstractType::Ptr targetTypePtr = 
TypeUtils::unAliasedType(TypeUtils::targetType(res.type.abstractType(), 0));

--- a/languages/cpp/cppduchain/declarationbuilder.cpp
+++ b/languages/cpp/cppduchain/declarationbuilder.cpp
@@ -371,10 +371,10 @@
   foreach (Declaration* dec, declarations) {
 if (dec->isForwardDeclaration() || dec->isDefinition())
   continue;
-if (dec->abstractType()->indexed() == lastType()->indexed()) {
+if (IndexedType(dec->abstractType()) == IndexedType(lastType())) {
   //If this declaration is already assigned to a partial match, unassign it
   if (FunctionDefinition* oldDef = FunctionDefinition::definition(dec)) {
-if (oldDef->abstractType()->indexed() != 
dec->abstractType()->indexed())
+if (IndexedType(oldDef->abstractType()) != 
IndexedType(dec->abstractType()))
   oldDef->setDeclaration(0);
   }
   funDef->setDeclaration(dec);
@@ -1173,7 +1173,7 @@
   instance.virtualInheritance = (bool)node->virt;
 
   //TypeUtils::unAliasedType(
-  instance.baseClass = TypeUtils::unAliasedType(lastType())->indexed();
+  instance.baseClass = IndexedType(TypeUtils::unAliasedType(lastType()));
   if(currentClass->classType() == ClassDeclarationData::Struct)
 instance.access = KDevelop::Declaration::Public;
   else

--- a/languages/cpp/cppduchain/expressionparser.cpp
+++ b/languages/cpp/cppduchain/expressionparser.cpp
@@ -204,7 +204,7 @@
 
   DUChainReadLocker lock(DUChain::lock());
 
-  ret.type = v.lastType()->indexed();
+  ret.type = v.lastType() ? v.lastType()->indexed() : IndexedType();
   ret.isInstance = 

commit kdevelop4 for openSUSE:Factory

2016-05-16 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2016-05-16 12:04:23

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is "kdevelop4"

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2016-02-22 
08:57:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2016-05-16 
12:04:28.0 +0200
@@ -1,0 +2,5 @@
+Sun May 15 14:31:04 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Use share-mime-info macros (boo#979301)
+
+---



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.TAziLX/_old  2016-05-16 12:04:30.0 +0200
+++ /var/tmp/diff_new_pack.TAziLX/_new  2016-05-16 12:04:30.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kdevelop4
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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
@@ -138,11 +138,11 @@
 
 %post
 /sbin/ldconfig
-/usr/bin/update-mime-database %{_kde4_datadir}/mime >/dev/null 2>&1 ||:
+%mime_database_post
 
 %postun
 /sbin/ldconfig
-/usr/bin/update-mime-database %{_kde4_datadir}/mime >/dev/null 2>&1 ||:
+%mime_database_postun
 
 %files lang -f %{name}.lang
 %defattr(-,root,root)




commit kdevelop4 for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2016-02-22 08:57:15

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is "kdevelop4"

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2015-12-09 
22:20:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2016-02-22 
08:57:19.0 +0100
@@ -1,0 +2,14 @@
+Thu Feb 11 19:12:48 UTC 2016 - wba...@tmo.at
+
+- Added missing-translations.tar.xz as source which contains
+  missing translation files (taken from 4.7.2)
+
+---
+Tue Jan 26 14:39:21 UTC 2016 - wba...@tmo.at
+
+- Update to 4.7.3
+  * No upstream changelog provided
+  * Bugfix release 
+- Bump libkdevplatform-devel BuildRequires to 1.7.3
+
+---

Old:

  kdevelop-4.7.2.tar.xz

New:

  kdevelop-4.7.3.tar.bz2
  missing-translations.tar.xz



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.exwqs8/_old  2016-02-22 08:57:20.0 +0100
+++ /var/tmp/diff_new_pack.exwqs8/_new  2016-02-22 08:57:20.0 +0100
@@ -17,13 +17,14 @@
 
 
 Name:   kdevelop4
-Version:4.7.2
+Version:4.7.3
 Release:0
 Summary:Integrated Development Environment for the X Window System, 
Qt, KDE, and GNOME
 License:GPL-3.0+
 Group:  Development/Tools/IDE
 Url:http://www.kdevelop.org
-Source0:
http://download.kde.org/stable/kdevelop/%{version}/src/kdevelop-%{version}.tar.xz
+Source0:
http://download.kde.org/stable/kdevelop/%{version}/src/kdevelop-%{version}.tar.bz2
+Source1:missing-translations.tar.xz
 BuildRequires:  fdupes
 # SLE12 doesn't have kdebase4-workspace[-devel]
 %if 0%{?suse_version} != 1315 || 0%{?is_opensuse}
@@ -31,7 +32,7 @@
 %else
 BuildRequires:  libkde4-devel
 %endif
-BuildRequires:  libkdevplatform-devel >= 1.7.2
+BuildRequires:  libkdevplatform-devel >= 1.7.3
 BuildRequires:  libqjson-devel
 # Catch 13.2, but not Leap nor SLE12
 %if 0%{?suse_version} <= 1320 && ! 0%{?is_opensuse} && 0%{?suse_version} != 
1315
@@ -96,6 +97,15 @@
 %lang_package
 %prep
 %setup -q -n kdevelop-%{version}
+%if 0%{?suse_version} <= 1320 && !0%{?is_opensuse}
+# fix build with older cmake versions (i.e. on 13.2 and below) by
+# readding "cmake_policy(SET CMP0002 OLD)" to po/CMakeLists.txt
+# (was in there before but has been removed in 4.7.3)
+sed -i -e "1s/^/cmake_policy(SET CMP0002 OLD)\n/" po/CMakeLists.txt
+%endif
+
+# some translation files are missing in 4.7.3
+tar xJf %{S:1}
 
 %build
   %cmake_kde4 -d build

++ kdevelop-4.7.2.tar.xz -> kdevelop-4.7.3.tar.bz2 ++
 9857 lines of diff (skipped)




commit kdevelop4 for openSUSE:Factory

2015-12-09 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2015-12-09 19:49:41

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is "kdevelop4"

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2015-10-30 
13:44:05.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2015-12-09 
22:20:24.0 +0100
@@ -1,0 +2,9 @@
+Tue Dec  1 19:24:21 UTC 2015 - wba...@tmo.at
+
+- Update to 4.7.2
+  * No upstream changelog provided
+  * Bugfix release 
+- Drop Do-not-use-function-returning-reference-to-temporary.patch,
+  included upstream
+
+---

Old:

  Do-not-use-function-returning-reference-to-temporary.patch
  kdevelop-4.7.1.tar.xz

New:

  kdevelop-4.7.2.tar.xz



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.wXfWuf/_old  2015-12-09 22:20:26.0 +0100
+++ /var/tmp/diff_new_pack.wXfWuf/_new  2015-12-09 22:20:26.0 +0100
@@ -17,15 +17,13 @@
 
 
 Name:   kdevelop4
-Version:4.7.1
+Version:4.7.2
 Release:0
 Summary:Integrated Development Environment for the X Window System, 
Qt, KDE, and GNOME
 License:GPL-3.0+
 Group:  Development/Tools/IDE
 Url:http://www.kdevelop.org
 Source0:
http://download.kde.org/stable/kdevelop/%{version}/src/kdevelop-%{version}.tar.xz
-#PATCH-FIX-UPSTREAM Do-not-use-function-returning-reference-to-temporary.patch 
boo#942358, kde#347178 -- fixes crashes in the cppsupport plugin when built 
with GCC5
-Patch0: Do-not-use-function-returning-reference-to-temporary.patch
 BuildRequires:  fdupes
 # SLE12 doesn't have kdebase4-workspace[-devel]
 %if 0%{?suse_version} != 1315 || 0%{?is_opensuse}
@@ -33,7 +31,7 @@
 %else
 BuildRequires:  libkde4-devel
 %endif
-BuildRequires:  libkdevplatform-devel >= 1.7.1
+BuildRequires:  libkdevplatform-devel >= 1.7.2
 BuildRequires:  libqjson-devel
 # Catch 13.2, but not Leap nor SLE12
 %if 0%{?suse_version} <= 1320 && ! 0%{?is_opensuse} && 0%{?suse_version} != 
1315
@@ -98,7 +96,6 @@
 %lang_package
 %prep
 %setup -q -n kdevelop-%{version}
-%patch0 -p1
 
 %build
   %cmake_kde4 -d build

++ kdevelop-4.7.1.tar.xz -> kdevelop-4.7.2.tar.xz ++
 9247 lines of diff (skipped)




commit kdevelop4 for openSUSE:Factory

2015-10-30 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2015-10-30 13:44:04

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is "kdevelop4"

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2015-10-02 
09:23:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2015-10-30 
13:44:05.0 +0100
@@ -1,0 +2,5 @@
+Fri Oct  9 16:12:38 UTC 2015 - alarr...@suse.com
+
+- Modified BuildRequires to allow kdevelop4 to build in SLE12 
+
+---



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.wl5xFn/_old  2015-10-30 13:44:06.0 +0100
+++ /var/tmp/diff_new_pack.wl5xFn/_new  2015-10-30 13:44:06.0 +0100
@@ -27,11 +27,16 @@
 #PATCH-FIX-UPSTREAM Do-not-use-function-returning-reference-to-temporary.patch 
boo#942358, kde#347178 -- fixes crashes in the cppsupport plugin when built 
with GCC5
 Patch0: Do-not-use-function-returning-reference-to-temporary.patch
 BuildRequires:  fdupes
+# SLE12 doesn't have kdebase4-workspace[-devel]
+%if 0%{?suse_version} != 1315 || 0%{?is_opensuse}
 BuildRequires:  kdebase4-workspace-devel
+%else
+BuildRequires:  libkde4-devel
+%endif
 BuildRequires:  libkdevplatform-devel >= 1.7.1
 BuildRequires:  libqjson-devel
-# Catch 13.2, but not Leap
-%if 0%{?suse_version} <= 1320 && ! 0%{?is_opensuse}
+# Catch 13.2, but not Leap nor SLE12
+%if 0%{?suse_version} <= 1320 && ! 0%{?is_opensuse} && 0%{?suse_version} != 
1315
 BuildRequires:  okteta-devel
 %endif
 BuildRequires:  valgrind-devel
@@ -170,8 +175,8 @@
 %{_kde4_appsdir}/kdevfiletemplates/
 %{_kde4_appsdir}/kdevgdb/
 %{_kde4_appsdir}/kdevmanpage/
-# Catch 13.2, but not Leap
-%if 0%{?suse_version} <= 1320 && ! 0%{?is_opensuse}
+# Catch 13.2, but not Leap nor SLE12
+%if 0%{?suse_version} <= 1320 && ! 0%{?is_opensuse} && 0%{?suse_version} != 
1315
 %{_kde4_appsdir}/kdevokteta/
 %endif
 %{_kde4_appsdir}/plasma/plasmoids/kdevelopsessions/




commit kdevelop4 for openSUSE:Factory

2015-10-02 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2015-10-02 09:23:45

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is "kdevelop4"

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2015-08-28 
08:26:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2015-10-02 
09:23:46.0 +0200
@@ -1,0 +2,6 @@
+Wed Sep 30 09:48:30 UTC 2015 - lbeltr...@kde.org
+
+- Fix version conditions to ensure that the package builds
+  on Leap
+
+---



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.PVxhgm/_old  2015-10-02 09:23:47.0 +0200
+++ /var/tmp/diff_new_pack.PVxhgm/_new  2015-10-02 09:23:47.0 +0200
@@ -30,7 +30,8 @@
 BuildRequires:  kdebase4-workspace-devel
 BuildRequires:  libkdevplatform-devel >= 1.7.1
 BuildRequires:  libqjson-devel
-%if 0%{?suse_version} <= 1320
+# Catch 13.2, but not Leap
+%if 0%{?suse_version} <= 1320 && ! 0%{?is_opensuse}
 BuildRequires:  okteta-devel
 %endif
 BuildRequires:  valgrind-devel
@@ -169,7 +170,8 @@
 %{_kde4_appsdir}/kdevfiletemplates/
 %{_kde4_appsdir}/kdevgdb/
 %{_kde4_appsdir}/kdevmanpage/
-%if 0%{?suse_version} <= 1320
+# Catch 13.2, but not Leap
+%if 0%{?suse_version} <= 1320 && ! 0%{?is_opensuse}
 %{_kde4_appsdir}/kdevokteta/
 %endif
 %{_kde4_appsdir}/plasma/plasmoids/kdevelopsessions/




commit kdevelop4 for openSUSE:Factory

2015-08-28 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2015-08-28 08:26:37

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is kdevelop4

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2015-08-23 
17:41:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2015-08-28 
08:26:38.0 +0200
@@ -1,0 +2,8 @@
+Wed Aug 26 09:42:43 UTC 2015 - wba...@tmo.at
+
+- Remove requirement on kate4-parts to make the package installable
+  on 13.1 and 13.2 again. kate4-parts is the only provider of
+  libktexteditor in Tumbleweed anyway, so the Requires: libktexteditor
+  should be sufficient. (boo#943213)
+
+---



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.G6Gejd/_old  2015-08-28 08:26:38.0 +0200
+++ /var/tmp/diff_new_pack.G6Gejd/_new  2015-08-28 08:26:38.0 +0200
@@ -38,7 +38,6 @@
 Requires:   %{name}-lang = %{version}
 Requires:   kdevelop4-cpp-parser
 Requires:   libktexteditor
-Requires:   kate4-parts
 # The kdevelop c++ parser is better for the moment
 Recommends: kdevelop4-plugin-cppsupport
 Recommends: cmake




commit kdevelop4 for openSUSE:Factory

2015-08-23 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2015-08-23 15:43:50

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is kdevelop4

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2015-07-14 
17:45:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2015-08-23 
17:41:31.0 +0200
@@ -1,0 +2,7 @@
+Thu Aug 20 12:53:22 UTC 2015 - wba...@tmo.at
+
+- Add Do-not-use-function-returning-reference-to-temporary.patch
+  from upstream: fixes crashes in the cppsupport plugin when built
+  with newer gcc (boo#942358, kde#347178)
+
+---

New:

  Do-not-use-function-returning-reference-to-temporary.patch



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.ZG86ek/_old  2015-08-23 17:41:32.0 +0200
+++ /var/tmp/diff_new_pack.ZG86ek/_new  2015-08-23 17:41:32.0 +0200
@@ -24,6 +24,8 @@
 Group:  Development/Tools/IDE
 Url:http://www.kdevelop.org
 Source0:
http://download.kde.org/stable/kdevelop/%{version}/src/kdevelop-%{version}.tar.xz
+#PATCH-FIX-UPSTREAM Do-not-use-function-returning-reference-to-temporary.patch 
boo#942358, kde#347178 -- fixes crashes in the cppsupport plugin when built 
with GCC5
+Patch0: Do-not-use-function-returning-reference-to-temporary.patch
 BuildRequires:  fdupes
 BuildRequires:  kdebase4-workspace-devel
 BuildRequires:  libkdevplatform-devel = 1.7.1
@@ -91,6 +93,7 @@
 %lang_package
 %prep
 %setup -q -n kdevelop-%{version}
+%patch0 -p1
 
 %build
   %cmake_kde4 -d build

++ Do-not-use-function-returning-reference-to-temporary.patch ++
From: Sébastien Lambert ope...@beonis.fr
Date: Mon, 22 Jun 2015 20:48:35 +
Subject: Do not use function returning reference to temporary.
X-Git-Url: 
http://quickgit.kde.org/?p=kdevelop.gita=commitdiffh=6ef7b373a2284e24753b6eb249ba68da5d9a2444
---
Do not use function returning reference to temporary.

REVIEW: 124126
BUG: 347178
---


--- a/languages/cpp/cppduchain/cpppreprocessenvironment.cpp
+++ b/languages/cpp/cppduchain/cpppreprocessenvironment.cpp
@@ -117,7 +117,7 @@
   rpp::Environment::setMacro(const_castrpp::pp_macro*(it.ref())); //Do 
not use our overridden setMacro(..), because addDefinedMacro(..) is not 
needed(macro-sets should be merged separately)
 
 for( Cpp::ReferenceCountedStringSet::Iterator it = 
file-definedMacroNames().iterator(); it; ++it ) {
-  m_macroNameSet.insert(it.ref());
+  m_macroNameSet.insert(*it);
 }
 
 //We don't have to care about efficiency too much here, unDefinedMacros 
should be a rather small set
@@ -126,7 +126,7 @@
 m-defined = false;
 m-m_valueHashValid = false;
 rpp::Environment::setMacro(m); //Do not use our overridden 
setMacro(..), because addDefinedMacro(..) is not needed(macro-sets should be 
merged separately)
-m_macroNameSet.remove(it.ref());
+m_macroNameSet.remove(*it);
 }
 }
 




commit kdevelop4 for openSUSE:Factory

2015-07-14 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2015-07-14 17:44:33

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is kdevelop4

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2015-05-20 
23:54:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2015-07-14 
17:45:48.0 +0200
@@ -1,0 +2,5 @@
+Mon Jul 13 05:17:43 UTC 2015 - tittiatc...@gmail.com
+
+- Explicitly require kate4-parts to get libktexteditor installed.
+
+---



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.Xj8C2G/_old  2015-07-14 17:45:50.0 +0200
+++ /var/tmp/diff_new_pack.Xj8C2G/_new  2015-07-14 17:45:50.0 +0200
@@ -36,6 +36,7 @@
 Requires:   %{name}-lang = %{version}
 Requires:   kdevelop4-cpp-parser
 Requires:   libktexteditor
+Requires:   kate4-parts
 # The kdevelop c++ parser is better for the moment
 Recommends: kdevelop4-plugin-cppsupport
 Recommends: cmake




commit kdevelop4 for openSUSE:Factory

2015-05-20 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2015-05-20 23:54:34

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is kdevelop4

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2015-03-18 
13:04:21.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2015-05-20 
23:54:35.0 +0200
@@ -1,0 +2,5 @@
+Tue May 19 17:17:43 UTC 2015 - hrvoje.sen...@gmail.com
+
+- BuildRequire okteta-devel only for openSUSE = 13.2
+
+---



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.PeiH8e/_old  2015-05-20 23:54:36.0 +0200
+++ /var/tmp/diff_new_pack.PeiH8e/_new  2015-05-20 23:54:36.0 +0200
@@ -28,7 +28,9 @@
 BuildRequires:  kdebase4-workspace-devel
 BuildRequires:  libkdevplatform-devel = 1.7.1
 BuildRequires:  libqjson-devel
+%if 0%{?suse_version} = 1320
 BuildRequires:  okteta-devel
+%endif
 BuildRequires:  valgrind-devel
 BuildRequires:  xz
 Requires:   %{name}-lang = %{version}
@@ -164,7 +166,9 @@
 %{_kde4_appsdir}/kdevfiletemplates/
 %{_kde4_appsdir}/kdevgdb/
 %{_kde4_appsdir}/kdevmanpage/
+%if 0%{?suse_version} = 1320
 %{_kde4_appsdir}/kdevokteta/
+%endif
 %{_kde4_appsdir}/plasma/plasmoids/kdevelopsessions/
 
%{_kde4_appsdir}/plasma/services/org.kde.plasma.dataengine.kdevelopsessions.operations
 




commit kdevelop4 for openSUSE:Factory

2015-03-18 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2015-03-18 13:04:20

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is kdevelop4

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2015-03-05 
18:16:39.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2015-03-18 
13:04:21.0 +0100
@@ -1,0 +2,7 @@
+Fri Mar 13 15:57:57 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Require libktexteditor instead of kate, that package provides
+  plugins used by kdevelop, and allows co-installability of kate5
+  and kdevelop4
+
+---



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.vZsexf/_old  2015-03-18 13:04:22.0 +0100
+++ /var/tmp/diff_new_pack.vZsexf/_new  2015-03-18 13:04:22.0 +0100
@@ -32,8 +32,8 @@
 BuildRequires:  valgrind-devel
 BuildRequires:  xz
 Requires:   %{name}-lang = %{version}
-Requires:   kate
 Requires:   kdevelop4-cpp-parser
+Requires:   libktexteditor
 # The kdevelop c++ parser is better for the moment
 Recommends: kdevelop4-plugin-cppsupport
 Recommends: cmake

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kdevelop4 for openSUSE:Factory

2015-03-05 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2015-03-05 15:41:41

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is kdevelop4

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2014-11-14 
09:19:01.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2015-03-05 
18:16:39.0 +0100
@@ -1,0 +2,7 @@
+Tue Feb 10 22:53:56 UTC 2015 - lbeltr...@kde.org
+
+- Update to 4.7.1
+  * No upstream changelog provided
+  * Bugfix release 
+
+---

Old:

  kdevelop-4.7.0.tar.xz

New:

  kdevelop-4.7.1.tar.xz



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.aPV39k/_old  2015-03-05 18:16:40.0 +0100
+++ /var/tmp/diff_new_pack.aPV39k/_new  2015-03-05 18:16:40.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdevelop4
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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
@@ -17,7 +17,7 @@
 
 
 Name:   kdevelop4
-Version:4.7.0
+Version:4.7.1
 Release:0
 Summary:Integrated Development Environment for the X Window System, 
Qt, KDE, and GNOME
 License:GPL-3.0+
@@ -26,7 +26,7 @@
 Source0:
http://download.kde.org/stable/kdevelop/%{version}/src/kdevelop-%{version}.tar.xz
 BuildRequires:  fdupes
 BuildRequires:  kdebase4-workspace-devel
-BuildRequires:  libkdevplatform-devel = 1.7.0
+BuildRequires:  libkdevplatform-devel = 1.7.1
 BuildRequires:  libqjson-devel
 BuildRequires:  okteta-devel
 BuildRequires:  valgrind-devel
@@ -179,7 +179,7 @@
 %{_kde4_iconsdir}/*
 
 %{_kde4_libdir}/libkdev4cmakecommon.so
-%{_kde4_libdir}/libkdev4includesdefinessettings.so
+%{_kde4_libdir}/libkdevcompilerprovider.so
 
 %{_kde4_modulesdir}/kcm_kdev*.so
 %{_kde4_modulesdir}/kdev*.so

++ kdevelop-4.7.0.tar.xz - kdevelop-4.7.1.tar.xz ++
 39888 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kdevelop4 for openSUSE:Factory

2014-11-14 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2014-11-14 09:19:00

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is kdevelop4

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2014-09-02 
08:22:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2014-11-14 
09:19:01.0 +0100
@@ -1,0 +2,14 @@
+Wed Nov 12 12:46:00 UTC 2014 - Led led...@gmail.com
+
+- fix bashisms in post/postun scripts
+
+---
+Wed Nov 12 08:31:29 UTC 2014 - cgiboude...@gmx.com
+
+- Split the cpp support from the kdevelop4 package.
+  The cpp and Clang plugins are mutually exclusive. Moving the cpp
+  plugin to its own package allows installing the experimental
+  clang package.
+- Fix some rpmlint warnings
+
+---



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.oeV0Jn/_old  2014-11-14 09:19:03.0 +0100
+++ /var/tmp/diff_new_pack.oeV0Jn/_new  2014-11-14 09:19:03.0 +0100
@@ -33,6 +33,9 @@
 BuildRequires:  xz
 Requires:   %{name}-lang = %{version}
 Requires:   kate
+Requires:   kdevelop4-cpp-parser
+# The kdevelop c++ parser is better for the moment
+Recommends: kdevelop4-plugin-cppsupport
 Recommends: cmake
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires(post): shared-mime-info
@@ -45,6 +48,43 @@
 documentation browser, a source code editor with syntax highlighting, a
 GUI for the compiler, and much more.
 
+%package devel
+Summary:Integrated Development Environment: Build Environment
+License:GPL-2.0+
+Group:  Development/Tools/IDE
+Requires:   kdevelop4 = %{version}
+
+%description devel
+An integrated development environment (IDE) that allows you to write
+programs for the X Window System, the Qt library, or KDE. It includes a
+documentation browser, a source code editor with syntax highlighting, a
+GUI for the compiler, and much more.
+
+%package doc
+Summary:KDE Integrated Development Environment: Documentation
+License:GPL-2.0+
+Group:  Development/Tools/IDE
+Requires:   kdevelop4 = %{version}
+
+%description doc
+An integrated development environment (IDE) that allows you to write
+programs for the X Window System, the Qt library, or KDE. It includes a
+documentation browser, a source code editor with syntax highlighting, a
+GUI for the compiler, and much more.
+
+%package -n kdevelop4-plugin-cppsupport
+Summary:C++ Language support plugin
+License:GPL-2.0+
+Group:  Development/Tools/IDE
+Requires:   kdevelop4 = %{version}
+Provides:   kdevelop4-cpp-parser
+Conflicts:  otherproviders(kdevelop4-cpp-parser)
+
+%description -n kdevelop4-plugin-cppsupport
+This package provides the C++ support for KDevelop.
+There is also an experimental version available using clang.
+If you would like to try that out install kdevelop4-plugin-clang instead
+
 %lang_package
 %prep
 %setup -q -n kdevelop-%{version}
@@ -80,38 +120,11 @@
 
 %post
 /sbin/ldconfig
-/usr/bin/update-mime-database %{_kde4_datadir}/mime  /dev/null || :
+/usr/bin/update-mime-database %{_kde4_datadir}/mime /dev/null 21 ||:
 
 %postun
 /sbin/ldconfig
-/usr/bin/update-mime-database %{_kde4_datadir}/mime  /dev/null || :
-
-%clean
-  rm -rf %{buildroot}
-
-%package devel
-Summary:Integrated Development Environment: Build Environment
-License:GPL-2.0+
-Group:  Development/Tools/IDE
-Requires:   kdevelop4 = %{version}
-
-%description devel
-An integrated development environment (IDE) that allows you to write
-programs for the X Window System, the Qt library, or KDE. It includes a
-documentation browser, a source code editor with syntax highlighting, a
-GUI for the compiler, and much more.
-
-%package doc
-Summary:KDE Integrated Development Environment: Documentation
-License:GPL-2.0+
-Group:  Development/Tools/IDE
-Requires:   kdevelop4 = %{version}
-
-%description doc
-An integrated development environment (IDE) that allows you to write
-programs for the X Window System, the Qt library, or KDE. It includes a
-documentation browser, a source code editor with syntax highlighting, a
-GUI for the compiler, and much more.
+/usr/bin/update-mime-database %{_kde4_datadir}/mime /dev/null 21 ||:
 
 %files lang -f %{name}.lang
 %defattr(-,root,root)
@@ -126,35 +139,48 @@
 %defattr(-,root,root,-)
 %doc %lang(en) %{_kde4_htmldir}/en/kdevelop/
 
+%files -n kdevelop4-plugin-cppsupport
+%defattr(-,root,root)

commit kdevelop4 for openSUSE:Factory

2014-09-02 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2014-09-02 08:22:21

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is kdevelop4

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2013-12-09 
16:55:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2014-09-02 
08:22:22.0 +0200
@@ -1,0 +2,8 @@
+Wed Aug 27 18:25:38 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 4.7.0
+  * No upstream changelog provided
+  * Last feature release based on kdelibs4 and Qt4
+- Bump libkdevplatform-devel BuildRequires to 1.7.0
+
+---

Old:

  kdevelop-4.6.0.tar.xz

New:

  kdevelop-4.7.0.tar.xz



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.JowbJf/_old  2014-09-02 08:22:23.0 +0200
+++ /var/tmp/diff_new_pack.JowbJf/_new  2014-09-02 08:22:23.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kdevelop4
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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
@@ -17,7 +17,7 @@
 
 
 Name:   kdevelop4
-Version:4.6.0
+Version:4.7.0
 Release:0
 Summary:Integrated Development Environment for the X Window System, 
Qt, KDE, and GNOME
 License:GPL-3.0+
@@ -26,7 +26,7 @@
 Source0:
http://download.kde.org/stable/kdevelop/%{version}/src/kdevelop-%{version}.tar.xz
 BuildRequires:  fdupes
 BuildRequires:  kdebase4-workspace-devel
-BuildRequires:  libkdevplatform-devel = 1.6.0
+BuildRequires:  libkdevplatform-devel = 1.7.0
 BuildRequires:  libqjson-devel
 BuildRequires:  okteta-devel
 BuildRequires:  valgrind-devel
@@ -142,6 +142,7 @@
 %{_kde4_appsdir}/kdevelop/
 %{_kde4_appsdir}/kdevfiletemplates/
 %{_kde4_appsdir}/kdevgdb/
+%{_kde4_appsdir}/kdevmanpage/
 %{_kde4_appsdir}/kdevokteta
 %{_kde4_appsdir}/plasma/plasmoids/kdevelopsessions/
 
%{_kde4_appsdir}/plasma/services/org.kde.plasma.dataengine.kdevelopsessions.operations
@@ -153,6 +154,7 @@
 %{_kde4_libdir}/libkdev4cppduchain.so
 %{_kde4_libdir}/libkdev4cppparser.so
 %{_kde4_libdir}/libkdev4cpprpp.so
+%{_kde4_libdir}/libkdev4includesdefinessettings.so
 %{_kde4_modulesdir}/kcm_kdev*.so
 %{_kde4_modulesdir}/kdev*.so
 %{_kde4_modulesdir}/krunner_kdevelopsessions.so

++ kdevelop-4.6.0.tar.xz - kdevelop-4.7.0.tar.xz ++
 128025 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kdevelop4 for openSUSE:Factory

2013-12-09 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2013-12-09 16:55:10

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is kdevelop4

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2013-11-04 
15:06:29.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2013-12-09 
16:55:11.0 +0100
@@ -1,0 +2,5 @@
+Sat Dec  7 23:15:47 UTC 2013 - cgiboude...@gmx.com
+
+- Update to 4.6.0. No changelog was provided
+
+---

Old:

  kdevelop-4.5.2.tar.xz

New:

  kdevelop-4.6.0.tar.xz



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.qWuCmR/_old  2013-12-09 16:55:12.0 +0100
+++ /var/tmp/diff_new_pack.qWuCmR/_new  2013-12-09 16:55:12.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdevelop4
-Version:4.5.2
+Version:4.6.0
 Release:0
 Summary:Integrated Development Environment for the X Window System, 
Qt, KDE, and GNOME
 License:GPL-3.0+
@@ -26,7 +26,7 @@
 Source0:
http://download.kde.org/stable/kdevelop/%{version}/src/kdevelop-%{version}.tar.xz
 BuildRequires:  fdupes
 BuildRequires:  kdebase4-workspace-devel
-BuildRequires:  libkdevplatform-devel = 1.5.0
+BuildRequires:  libkdevplatform-devel = 1.6.0
 BuildRequires:  libqjson-devel
 BuildRequires:  okteta-devel
 BuildRequires:  valgrind-devel
@@ -54,11 +54,11 @@
   %make_jobs
 
 %install
-  cd build
-%make_install
-  %fdupes -s %{buildroot}
+  %kde4_makeinstall -C build
   %kde_post_install
-  cd ..
+
+  %fdupes -s %{buildroot}
+
   %find_lang kdevcmake %{name}.lang
   %find_lang kdevcmakebuilder %{name}.lang
   %find_lang kdevcpp %{name}.lang
@@ -68,12 +68,13 @@
   %find_lang kdevexecuteplasmoid %{name}.lang
   %find_lang kdevformatters %{name}.lang
   %find_lang kdevgdb %{name}.lang
+  %find_lang kdevghprovider %{name}.lang
   %find_lang kdevkdeprovider %{name}.lang
   %find_lang kdevmakebuilder %{name}.lang
-  %find_lang kdevqthelp %{name}.lang
-  %find_lang kdevokteta %{name}.lang
   %find_lang kdevmanpage %{name}.lang
-#   %find_lang kdevelopsessions %{name}.lang
+  %find_lang kdevninja %{name}.lang
+  %find_lang kdevokteta %{name}.lang
+  %find_lang kdevqthelp %{name}.lang
   %find_lang plasma_applet_kdevelopsessions %{name}.lang
   %find_lang plasma_runner_kdevelopsessions %{name}.lang
 
@@ -128,57 +129,36 @@
 %files
 %defattr(-,root,root)
 %doc AUTHORS COPYING COPYING.LIB
+%config %{_kde_config_dir}/kdevelop-qthelp.knsrc
+%config %{_kde_config_dir}/kdeveloprc
+%dir %{_kde4_appsdir}/plasma
+%dir %{_kde4_appsdir}/plasma/plasmoids
 %{_kde4_applicationsdir}/kdevelop.desktop
 %{_kde4_applicationsdir}/kdevelop_ps.desktop
-%{_kde4_appsdir}/kdevappwizard
-%{_kde4_appsdir}/kdevcmakebuilder
-%{_kde4_appsdir}/kdevcmakemanager
+%{_kde4_appsdir}/kdevappwizard/
 %{_kde4_appsdir}/kdevcodegen/
-%{_kde4_appsdir}/kdevcppsupport
-%{_kde4_appsdir}/kdevcustommakemanager
-%{_kde4_appsdir}/kdevelop
+%{_kde4_appsdir}/kdevcppsupport/
+%{_kde4_appsdir}/kdevcustommakemanager/
+%{_kde4_appsdir}/kdevelop/
 %{_kde4_appsdir}/kdevfiletemplates/
-%{_kde4_appsdir}/kdevgdb
+%{_kde4_appsdir}/kdevgdb/
 %{_kde4_appsdir}/kdevokteta
-%dir %{_kde4_appsdir}/plasma
-%dir %{_kde4_appsdir}/plasma/plasmoids
-%{_kde4_appsdir}/plasma/plasmoids/kdevelopsessions
+%{_kde4_appsdir}/plasma/plasmoids/kdevelopsessions/
 
%{_kde4_appsdir}/plasma/services/org.kde.plasma.dataengine.kdevelopsessions.operations
 %{_kde4_bindir}/kdevelop
 %{_kde4_bindir}/kdevelop!
-%config %{_kde_config_dir}/kdeveloprc
-%config %{_kde_config_dir}/kdevelop-qthelp.knsrc
 %{_kde4_datadir}/mime/packages/kdevelop.xml
 %{_kde4_iconsdir}/*
 %{_kde4_libdir}/libkdev4cmakecommon.so
 %{_kde4_libdir}/libkdev4cppduchain.so
 %{_kde4_libdir}/libkdev4cppparser.so
 %{_kde4_libdir}/libkdev4cpprpp.so
-%{_kde4_modulesdir}/kcm_kdev_makebuilder.so
-%{_kde4_modulesdir}/kcm_kdevcmake_settings.so
-%{_kde4_modulesdir}/kcm_kdev_cmakebuilder.so
-%{_kde4_modulesdir}/kcm_kdevcustombuildsystem.so
-%{_kde4_modulesdir}/kdevastyle.so
-%{_kde4_modulesdir}/kdevcmakebuilder.so
-%{_kde4_modulesdir}/kdevcmakedocumentation.so
-%{_kde4_modulesdir}/kdevcmakemanager.so
-%{_kde4_modulesdir}/kdevcpplanguagesupport.so
-%{_kde4_modulesdir}/kdevcustombuildsystem.so
-%{_kde4_modulesdir}/kdevcustommakemanager.so
-%{_kde4_modulesdir}/kdevcustomscript.so
-%{_kde4_modulesdir}/kdevexecuteplasmoid.so
-%{_kde4_modulesdir}/kdevgdb.so
-%{_kde4_modulesdir}/kdevkdeprovider.so
-%{_kde4_modulesdir}/kdevmakebuilder.so
-%{_kde4_modulesdir}/kdevmanpage.so
-%{_kde4_modulesdir}/kdevokteta.so
-%{_kde4_modulesdir}/kdevqthelp.so

commit kdevelop4 for openSUSE:Factory

2013-11-04 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2013-11-04 15:06:27

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is kdevelop4

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2013-06-11 
09:31:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2013-11-04 
15:06:29.0 +0100
@@ -1,0 +2,26 @@
+Thu Oct 31 17:00:40 UTC 2013 - dmitr...@opensuse.org
+
+- Update to version 4.5.2
+  * Make qt4.py compatible with Python 3.x
+  * Backport crash fixes for crash in Cpp TypeBuilder.
+  * When calling a constructor don't offer deleted ones for completion
+  * Do not offer explicitely deleted methods for code completion
+  * Do not insert spaces in function definition after void or type with no 
argument name
+  * Fix missing break in the c++ parser
+  * Fix build on big endian plattforms.
+  * Fix endless recursion in setSpecializedFrom
+  * Fix usage of PushValue for recursion counters in TemplateDeclaration.
+  * Gracefully react to a lack of a working directory
+  * cpp_header.h: Conditionally add license header
+  * Don't run an execute process command if the working dir is unknown
+  * Don't use the items after calling ::removeUrl
+  * Fix overloaded-virtual of computeCompletions.
+  * RETURN() also works with find_package() and include()
+  * Support return statement
+  * Update global vars when visiting set(..CACHE..FORCE) AST node
+  * Verify validity of type after deserialization from the storage.
+  * take() variables when they go out of scope
+  * Correct Basic C++ Template
+  * Fix builds for okteta in a separate prefix
+
+---

Old:

  kdevelop-4.5.1.tar.bz2

New:

  kdevelop-4.5.2.tar.xz



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.ZM4tv4/_old  2013-11-04 15:06:30.0 +0100
+++ /var/tmp/diff_new_pack.ZM4tv4/_new  2013-11-04 15:06:30.0 +0100
@@ -17,19 +17,20 @@
 
 
 Name:   kdevelop4
-Version:4.5.1
+Version:4.5.2
 Release:0
 Summary:Integrated Development Environment for the X Window System, 
Qt, KDE, and GNOME
 License:GPL-3.0+
 Group:  Development/Tools/IDE
 Url:http://www.kdevelop.org
-Source0:
http://download.kde.org/stable/kdevelop/%{version}/src/kdevelop-%{version}.tar.bz2
+Source0:
http://download.kde.org/stable/kdevelop/%{version}/src/kdevelop-%{version}.tar.xz
 BuildRequires:  fdupes
 BuildRequires:  kdebase4-workspace-devel
 BuildRequires:  libkdevplatform-devel = 1.5.0
 BuildRequires:  libqjson-devel
 BuildRequires:  okteta-devel
 BuildRequires:  valgrind-devel
+BuildRequires:  xz
 Requires:   %{name}-lang = %{version}
 Requires:   kate
 Recommends: cmake

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kdevelop4 for openSUSE:Factory

2013-06-11 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2013-06-11 06:14:14

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is kdevelop4

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2013-05-02 
11:17:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2013-06-11 
09:31:49.0 +0200
@@ -1,0 +2,15 @@
+Thu May 30 13:41:52 UTC 2013 - dmitr...@opensuse.org
+
+- Update to version 4.5.1
+  * Fix crash while completing null types
+  * Do not offer signature assistant for changes in Qt signals.
+  * Raise kdelibs dependency to 4.7
+  * Fix conversion from QByteArray to QString
+  * Don't crash if we run list(FIND) without a find element
+  * Fix cmake icon sizes
+  * Don't store a ProjectBaseItem in the MakeJob
+  * New implementation for get_filename_component(PATH)
+  * Remove erroneous double-quotes around %c in Exec line
+  * Add missing msg extraction
+
+---

Old:

  kdevelop-4.5.0.tar.bz2

New:

  kdevelop-4.5.1.tar.bz2



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.ApFMYd/_old  2013-06-11 09:31:50.0 +0200
+++ /var/tmp/diff_new_pack.ApFMYd/_new  2013-06-11 09:31:50.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdevelop4
-Version:4.5.0
+Version:4.5.1
 Release:0
 Summary:Integrated Development Environment for the X Window System, 
Qt, KDE, and GNOME
 License:GPL-3.0+
@@ -64,8 +64,10 @@
   %find_lang kdevcustombuildsystem %{name}.lang
   %find_lang kdevcustommake %{name}.lang
   %find_lang kdevelop %{name}.lang
+  %find_lang kdevexecuteplasmoid %{name}.lang
   %find_lang kdevformatters %{name}.lang
   %find_lang kdevgdb %{name}.lang
+  %find_lang kdevkdeprovider %{name}.lang
   %find_lang kdevmakebuilder %{name}.lang
   %find_lang kdevqthelp %{name}.lang
   %find_lang kdevokteta %{name}.lang

++ kdevelop-4.5.0.tar.bz2 - kdevelop-4.5.1.tar.bz2 ++
/work/SRC/openSUSE:Factory/kdevelop4/kdevelop-4.5.0.tar.bz2 
/work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop-4.5.1.tar.bz2 differ: char 
11, line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kdevelop4 for openSUSE:Factory

2013-05-02 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2013-05-02 11:17:28

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is kdevelop4

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2012-12-07 
14:24:49.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2013-05-02 
11:17:30.0 +0200
@@ -2 +2,16 @@
-Mon Dec  3 20:41:08 UTC 2012 - dmi...@roshchin.org
+Tue Apr 30 11:16:07 UTC 2013 - toddrme2...@gmail.com
+
+- Added missing libqjson-devel buildrequires.
+  The build was complaining about not being able to find this.
+
+---
+Fri Apr 26 16:16:27 UTC 2013 - dmitr...@opensuse.org
+
+- Update to version 4.5.0
+  * Unit tests improvements
+  * New file/project templates support
+  * C++ support improvements
+  * User interface polishing
+
+---
+Mon Dec  3 20:41:08 UTC 2012 - dmitr...@opensuse.org

Old:

  kdevelop-4.4.1.tar.bz2

New:

  kdevelop-4.5.0.tar.bz2



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.7WrO0I/_old  2013-05-02 11:17:32.0 +0200
+++ /var/tmp/diff_new_pack.7WrO0I/_new  2013-05-02 11:17:32.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kdevelop4
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -17,20 +17,22 @@
 
 
 Name:   kdevelop4
-Version:4.4.1
+Version:4.5.0
 Release:0
 Summary:Integrated Development Environment for the X Window System, 
Qt, KDE, and GNOME
 License:GPL-3.0+
 Group:  Development/Tools/IDE
 Url:http://www.kdevelop.org
-Source0:kdevelop-%{version}.tar.bz2
+Source0:
http://download.kde.org/stable/kdevelop/%{version}/src/kdevelop-%{version}.tar.bz2
 BuildRequires:  fdupes
 BuildRequires:  kdebase4-workspace-devel
-BuildRequires:  libkdevplatform-devel = 1.4.1
+BuildRequires:  libkdevplatform-devel = 1.5.0
+BuildRequires:  libqjson-devel
 BuildRequires:  okteta-devel
 BuildRequires:  valgrind-devel
 Requires:   %{name}-lang = %{version}
 Requires:   kate
+Recommends: cmake
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires(post): shared-mime-info
 Requires(postun):   shared-mime-info
@@ -59,6 +61,7 @@
   %find_lang kdevcmake %{name}.lang
   %find_lang kdevcmakebuilder %{name}.lang
   %find_lang kdevcpp %{name}.lang
+  %find_lang kdevcustombuildsystem %{name}.lang
   %find_lang kdevcustommake %{name}.lang
   %find_lang kdevelop %{name}.lang
   %find_lang kdevformatters %{name}.lang
@@ -67,7 +70,8 @@
   %find_lang kdevqthelp %{name}.lang
   %find_lang kdevokteta %{name}.lang
   %find_lang kdevmanpage %{name}.lang
-  %find_lang kdevelopsessions %{name}.lang
+#   %find_lang kdevelopsessions %{name}.lang
+  %find_lang plasma_applet_kdevelopsessions %{name}.lang
   %find_lang plasma_runner_kdevelopsessions %{name}.lang
 
 %post
@@ -126,9 +130,11 @@
 %{_kde4_appsdir}/kdevappwizard
 %{_kde4_appsdir}/kdevcmakebuilder
 %{_kde4_appsdir}/kdevcmakemanager
+%{_kde4_appsdir}/kdevcodegen/
 %{_kde4_appsdir}/kdevcppsupport
 %{_kde4_appsdir}/kdevcustommakemanager
 %{_kde4_appsdir}/kdevelop
+%{_kde4_appsdir}/kdevfiletemplates/
 %{_kde4_appsdir}/kdevgdb
 %{_kde4_appsdir}/kdevokteta
 %dir %{_kde4_appsdir}/plasma
@@ -147,13 +153,17 @@
 %{_kde4_libdir}/libkdev4cpprpp.so
 %{_kde4_modulesdir}/kcm_kdev_makebuilder.so
 %{_kde4_modulesdir}/kcm_kdevcmake_settings.so
+%{_kde4_modulesdir}/kcm_kdev_cmakebuilder.so
+%{_kde4_modulesdir}/kcm_kdevcustombuildsystem.so
 %{_kde4_modulesdir}/kdevastyle.so
 %{_kde4_modulesdir}/kdevcmakebuilder.so
 %{_kde4_modulesdir}/kdevcmakedocumentation.so
 %{_kde4_modulesdir}/kdevcmakemanager.so
 %{_kde4_modulesdir}/kdevcpplanguagesupport.so
+%{_kde4_modulesdir}/kdevcustombuildsystem.so
 %{_kde4_modulesdir}/kdevcustommakemanager.so
 %{_kde4_modulesdir}/kdevcustomscript.so
+%{_kde4_modulesdir}/kdevexecuteplasmoid.so
 %{_kde4_modulesdir}/kdevgdb.so
 %{_kde4_modulesdir}/kdevkdeprovider.so
 %{_kde4_modulesdir}/kdevmakebuilder.so

++ kdevelop-4.4.1.tar.bz2 - kdevelop-4.5.0.tar.bz2 ++
/work/SRC/openSUSE:Factory/kdevelop4/kdevelop-4.4.1.tar.bz2 
/work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop-4.5.0.tar.bz2 differ: char 
11, line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, 

commit kdevelop4 for openSUSE:Factory

2012-12-07 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2012-12-07 14:24:47

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is kdevelop4, Maintainer is kde-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2012-11-06 
16:08:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2012-12-07 
14:24:49.0 +0100
@@ -1,0 +2,13 @@
+Mon Dec  3 20:41:08 UTC 2012 - dmi...@roshchin.org
+
+- Update to 4.4.1
+  * Skip varibles when parsing Makefile for targets.
+  * Fix code completion: We used to hide const getter functions if they have a 
Q_PROPERTY of the same name.
+  * Call ::repaint explicitly on the QSplashScreen after showing it.
+  * Fix c++ completion bug: don't insert 
+  * Don't crash when calling string(TOLOWER, TOUPPER or LENGTH) with too few 
arguments
+  * update splash to say v4.4
+  * Put the recent projects in a button+menu instead of a list
+  * Fix build on PPC.
+
+---
@@ -4 +17 @@
-- update to 1.4.0
+- update to 4.4.0

Old:

  kdevelop-4.4.0.tar.bz2

New:

  kdevelop-4.4.1.tar.bz2



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.zCzngM/_old  2012-12-07 14:24:50.0 +0100
+++ /var/tmp/diff_new_pack.zCzngM/_new  2012-12-07 14:24:50.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdevelop4
-Version:4.4.0
+Version:4.4.1
 Release:0
 Summary:Integrated Development Environment for the X Window System, 
Qt, KDE, and GNOME
 License:GPL-3.0+
@@ -26,7 +26,7 @@
 Source0:kdevelop-%{version}.tar.bz2
 BuildRequires:  fdupes
 BuildRequires:  kdebase4-workspace-devel
-BuildRequires:  libkdevplatform-devel = 1.4.0
+BuildRequires:  libkdevplatform-devel = 1.4.1
 BuildRequires:  okteta-devel
 BuildRequires:  valgrind-devel
 Requires:   %{name}-lang = %{version}

++ kdevelop-4.4.0.tar.bz2 - kdevelop-4.4.1.tar.bz2 ++
 2998 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kdevelop4 for openSUSE:Factory

2012-11-06 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2012-11-06 16:08:22

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is kdevelop4, Maintainer is kde-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2012-09-26 
10:02:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2012-11-06 
16:08:24.0 +0100
@@ -1,0 +2,9 @@
+Sun Nov  4 12:10:52 UTC 2012 - mailaen...@opensuse.org
+
+- update to 1.4.0
+  * Fix bug in signature assistant. Tested in master.
+  * Fix auto type-deduction for cases like 'auto foo(bar);'.
+  * Extend unit test
+  * Improve properties fetching
+
+---

Old:

  kdevelop-4.3.90.tar.bz2

New:

  kdevelop-4.4.0.tar.bz2



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.kIdoU6/_old  2012-11-06 16:08:26.0 +0100
+++ /var/tmp/diff_new_pack.kIdoU6/_new  2012-11-06 16:08:26.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdevelop4
-Version:4.3.90
+Version:4.4.0
 Release:0
 Summary:Integrated Development Environment for the X Window System, 
Qt, KDE, and GNOME
 License:GPL-3.0+
@@ -26,7 +26,7 @@
 Source0:kdevelop-%{version}.tar.bz2
 BuildRequires:  fdupes
 BuildRequires:  kdebase4-workspace-devel
-BuildRequires:  libkdevplatform-devel = 1.3.80
+BuildRequires:  libkdevplatform-devel = 1.4.0
 BuildRequires:  okteta-devel
 BuildRequires:  valgrind-devel
 Requires:   %{name}-lang = %{version}

++ kdevelop-4.3.90.tar.bz2 - kdevelop-4.4.0.tar.bz2 ++
 3226 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kdevelop4 for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2012-09-23 17:05:58

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is kdevelop4, Maintainer is kde-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2012-04-19 
12:38:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2012-09-23 
17:05:59.0 +0200
@@ -1,0 +2,24 @@
+Mon Sep 10 10:56:46 UTC 2012 - wstephen...@suse.com
+
+- Update to 4.3.90 (4.4RC1)
+  * kdevelop_attach renamed to kdevelop!
+  * Fix auto type-deduction for cases like 'auto a(1.1);'.
+  * Move plain Qt application templates into a Qt category
+  * Add Thread and Frame Information on Execution
+  * Improve the way we map to cmake's variables model
+  * support multiple location breakpoints
+  * Fix threading problem in the CMakeManager
+  * add support for padding parenthesis headers
+  * Improve KDev's Dashboard projects' names
+  * Properly add the build directory
+  * Properly initialize CMAKE_INCLUDE_CURRENT_DIR
+  * Explicitly disable Apply button after re-reading CMake cache.
+  * Be less strict about named and unnamed arguments.
+  * Let the OutputView take ownership of the make output delegate.
+  * Directly set the model's data when we toggle a checkbox.
+  * Don't call load() in our ctor, that is done automatically.
+  * Don't tell the user the make config has changed when he first sees it.
+  * Fix memory leaks of Ui objects.
+  * Don't use raw Declaration pointers across unlocked DUChain code paths.
+
+---

Old:

  kdevelop-4.3.1.tar.bz2

New:

  kdevelop-4.3.90.tar.bz2



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.vBU5cw/_old  2012-09-23 17:06:00.0 +0200
+++ /var/tmp/diff_new_pack.vBU5cw/_new  2012-09-23 17:06:00.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdevelop4
-Version:4.3.1
+Version:4.3.90
 Release:0
 Summary:Integrated Development Environment for the X Window System, 
Qt, KDE, and GNOME
 License:GPL-3.0+
@@ -67,6 +67,7 @@
   %find_lang kdevqthelp %{name}.lang
   %find_lang kdevokteta %{name}.lang
   %find_lang kdevmanpage %{name}.lang
+  %find_lang kdevelopsessions %{name}.lang
   %find_lang plasma_runner_kdevelopsessions %{name}.lang
 
 %post
@@ -130,9 +131,14 @@
 %{_kde4_appsdir}/kdevelop
 %{_kde4_appsdir}/kdevgdb
 %{_kde4_appsdir}/kdevokteta
+%dir %{_kde4_appsdir}/plasma
+%dir %{_kde4_appsdir}/plasma/plasmoids
+%{_kde4_appsdir}/plasma/plasmoids/kdevelopsessions
+%{_kde4_appsdir}/plasma/services/org.kde.plasma.dataengine.kdevelopsessions.operations
 %{_kde4_bindir}/kdevelop
-%{_kde4_bindir}/kdevelop_attach
+%{_kde4_bindir}/kdevelop!
 %config %{_kde_config_dir}/kdeveloprc
+%config %{_kde_config_dir}/kdevelop-qthelp.knsrc
 %{_kde4_datadir}/mime/packages/kdevelop.xml
 %{_kde4_iconsdir}/*
 %{_kde4_libdir}/libkdev4cmakecommon.so
@@ -156,7 +162,10 @@
 %{_kde4_modulesdir}/kdevqthelp.so
 %{_kde4_modulesdir}/kdevqthelp_config.so
 %{_kde4_modulesdir}/krunner_kdevelopsessions.so
+%{_kde4_modulesdir}/plasma_engine_kdevelopsessions.so
 %{_kde4_servicesdir}/kcm_kdev*
 %{_kde4_servicesdir}/kdev*
+%{_kde4_servicesdir}/plasma-applet-kdevelopsessions.desktop
+%{_kde4_servicesdir}/plasma-dataengine-kdevelopsessions.desktop
 
 %changelog

++ kdevelop-4.3.1.tar.bz2 - kdevelop-4.3.90.tar.bz2 ++
 159877 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kdevelop4 for openSUSE:Factory

2012-03-26 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2012-03-26 11:02:13

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is kdevelop4, Maintainer is kde-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2011-11-10 
15:41:27.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2012-03-26 
11:02:14.0 +0200
@@ -1,0 +2,14 @@
+Fri Mar 23 13:09:21 UTC 2012 - idon...@suse.com
+
+- Change license to GPL-3.0+ per discussion in bnc#753628 
+
+---
+Tue Mar 13 10:40:15 UTC 2012 - wstephen...@suse.com
+
+- update to 4.3.0
+  * add c++11 support
+  * improved clang support
+  * improved session management
+  * many bug fixes
+
+---

Old:

  kdevelop-4.2.3.tar.bz2

New:

  kdevelop-4.3.0.tar.bz2



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.YFuwHQ/_old  2012-03-26 11:02:16.0 +0200
+++ /var/tmp/diff_new_pack.YFuwHQ/_new  2012-03-26 11:02:16.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kdevelop4
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 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
@@ -16,14 +16,13 @@
 #
 
 
-
 Name:   kdevelop4
-Version:4.2.3
-Release:1
-License:GPL-2.0 ; GPL-2.0+
+Version:4.3.0
+Release:0
 Summary:Integrated Development Environment for the X Window System, 
Qt, KDE, and GNOME
-Url:http://www.kdevelop.org
+License:GPL-3.0+
 Group:  Development/Tools/IDE
+Url:http://www.kdevelop.org
 Source0:kdevelop-%{version}.tar.bz2
 BuildRequires:  fdupes
 BuildRequires:  kdebase4-workspace-devel
@@ -68,6 +67,7 @@
   %find_lang kdevqthelp %{name}.lang
   %find_lang kdevokteta %{name}.lang
   %find_lang kdevmanpage %{name}.lang
+  %find_lang plasma_runner_kdevelopsessions %{name}.lang
 
 %post
 /sbin/ldconfig
@@ -81,8 +81,8 @@
   rm -rf %{buildroot}
 
 %package devel
-License:GPL-2.0+
 Summary:Integrated Development Environment: Build Environment
+License:GPL-2.0+
 Group:  Development/Tools/IDE
 Requires:   kdevelop4 = %{version}
 
@@ -92,17 +92,36 @@
 documentation browser, a source code editor with syntax highlighting, a
 GUI for the compiler, and much more.
 
+%package doc
+Summary:KDE Integrated Development Environment: Documentation
+License:GPL-2.0+
+Group:  Development/Tools/IDE
+Requires:   kdevelop4 = %{version}
+
+%description doc
+An integrated development environment (IDE) that allows you to write
+programs for the X Window System, the Qt library, or KDE. It includes a
+documentation browser, a source code editor with syntax highlighting, a
+GUI for the compiler, and much more.
+
 %files lang -f %{name}.lang
+%defattr(-,root,root)
+%exclude %{_kde4_htmldir}/en/kdevelop/
 
 %files devel
 %defattr(-,root,root)
 %{_kde4_appsdir}/cmake/modules/FindKDevelop.cmake
 %{_kde4_includedir}/kdevelop/
 
+%files doc
+%defattr(-,root,root,-)
+%doc %lang(en) %{_kde4_htmldir}/en/kdevelop/
+
 %files
 %defattr(-,root,root)
 %doc AUTHORS COPYING COPYING.LIB
 %{_kde4_applicationsdir}/kdevelop.desktop
+%{_kde4_applicationsdir}/kdevelop_ps.desktop
 %{_kde4_appsdir}/kdevappwizard
 %{_kde4_appsdir}/kdevcmakebuilder
 %{_kde4_appsdir}/kdevcmakemanager
@@ -111,8 +130,8 @@
 %{_kde4_appsdir}/kdevelop
 %{_kde4_appsdir}/kdevgdb
 %{_kde4_appsdir}/kdevokteta
-%{_kde4_appsdir}/kdevokteta/kdevokteta.rc
 %{_kde4_bindir}/kdevelop
+%{_kde4_bindir}/kdevelop_attach
 %config %{_kde_config_dir}/kdeveloprc
 %{_kde4_datadir}/mime/packages/kdevelop.xml
 %{_kde4_iconsdir}/*
@@ -128,14 +147,15 @@
 %{_kde4_modulesdir}/kdevcmakemanager.so
 %{_kde4_modulesdir}/kdevcpplanguagesupport.so
 %{_kde4_modulesdir}/kdevcustommakemanager.so
+%{_kde4_modulesdir}/kdevcustomscript.so
 %{_kde4_modulesdir}/kdevgdb.so
-%{_kde4_modulesdir}/kdevindent.so
 %{_kde4_modulesdir}/kdevkdeprovider.so
 %{_kde4_modulesdir}/kdevmakebuilder.so
 %{_kde4_modulesdir}/kdevmanpage.so
 %{_kde4_modulesdir}/kdevokteta.so
 %{_kde4_modulesdir}/kdevqthelp.so
 %{_kde4_modulesdir}/kdevqthelp_config.so
+%{_kde4_modulesdir}/krunner_kdevelopsessions.so
 %{_kde4_servicesdir}/kcm_kdev*
 %{_kde4_servicesdir}/kdev*
 

++ kdevelop-4.2.3.tar.bz2 - kdevelop-4.3.0.tar.bz2 ++
 227798 lines of diff 

commit kdevelop4 for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2011-12-06 18:21:29

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is kdevelop4, Maintainer is kde-maintain...@suse.de

Changes:




Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.S7kgcI/_old  2011-12-06 18:37:31.0 +0100
+++ /var/tmp/diff_new_pack.S7kgcI/_new  2011-12-06 18:37:31.0 +0100
@@ -20,7 +20,7 @@
 Name:   kdevelop4
 Version:4.2.3
 Release:1
-License:GPLv2 ; GPLv2+
+License:GPL-2.0 ; GPL-2.0+
 Summary:Integrated Development Environment for the X Window System, 
Qt, KDE, and GNOME
 Url:http://www.kdevelop.org
 Group:  Development/Tools/IDE
@@ -81,7 +81,7 @@
   rm -rf %{buildroot}
 
 %package devel
-License:GPLv2+
+License:GPL-2.0+
 Summary:Integrated Development Environment: Build Environment
 Group:  Development/Tools/IDE
 Requires:   kdevelop4 = %{version}

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kdevelop4 for openSUSE:Factory

2011-11-10 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2011-11-10 15:41:26

Comparing /work/SRC/openSUSE:Factory/kdevelop4 (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4.new (New)


Package is kdevelop4, Maintainer is kde-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2011-10-16 
12:55:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2011-11-10 
15:41:27.0 +0100
@@ -1,0 +2,5 @@
+Thu Nov 10 04:26:09 UTC 2011 - ctri...@opensuse.org
+
+- Require kate as it is a runtime dependency (bnc#729168)
+
+---



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.AZAiNx/_old  2011-11-10 15:41:29.0 +0100
+++ /var/tmp/diff_new_pack.AZAiNx/_new  2011-11-10 15:41:29.0 +0100
@@ -15,6 +15,8 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
+
 Name:   kdevelop4
 Version:4.2.3
 Release:1
@@ -29,6 +31,7 @@
 BuildRequires:  okteta-devel
 BuildRequires:  valgrind-devel
 Requires:   %{name}-lang = %{version}
+Requires:   kate
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires(post): shared-mime-info
 Requires(postun):   shared-mime-info

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kdevelop4 for openSUSE:Factory

2011-10-16 Thread h_root

Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory
checked in at Sun Oct 16 12:51:00 CEST 2011.




--- openSUSE:Factory/kdevelop4/kdevelop4.changes2011-09-23 
02:06:31.0 +0200
+++ /mounts/work_src_done/STABLE/kdevelop4/kdevelop4.changes2011-10-13 
09:35:18.0 +0200
@@ -1,0 +2,8 @@
+Thu Oct 13 10:13:31 UTC 2011 - toddrme2...@gmail.com
+
+- Removed commented files (fix for RPMLINT warning)
+- Added valgrind buildrequires
+- Cleaned up spec file formatting
+
+
+---

calling whatdependson for head-i586




Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.7JD1gZ/_old  2011-10-16 12:50:57.0 +0200
+++ /var/tmp/diff_new_pack.7JD1gZ/_new  2011-10-16 12:50:57.0 +0200
@@ -15,21 +15,21 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   kdevelop4
-BuildRequires:  fdupes libkde4-devel libkdevplatform-devel
-BuildRequires:  kdebase4-workspace-devel
-BuildRequires:  okteta-devel
+Version:4.2.3
+Release:1
 License:GPLv2 ; GPLv2+
-Group:  Development/Tools/IDE
 Summary:Integrated Development Environment for the X Window System, 
Qt, KDE, and GNOME
 Url:http://www.kdevelop.org
-Version:4.2.3
-Release:1
+Group:  Development/Tools/IDE
 Source0:kdevelop-%{version}.tar.bz2
+BuildRequires:  fdupes
+BuildRequires:  kdebase4-workspace-devel
+BuildRequires:  libkdevplatform-devel
+BuildRequires:  okteta-devel
+BuildRequires:  valgrind-devel
+Requires:   %{name}-lang = %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Requires:   %{name}-lang = %version
 Requires(post): shared-mime-info
 Requires(postun):   shared-mime-info
 %kde4_runtime_requires
@@ -40,24 +40,9 @@
 documentation browser, a source code editor with syntax highlighting, a
 GUI for the compiler, and much more.
 
-
-
-Authors:
-
-Sandy Meier sme...@kdevelop.de
-Stefan Heidrich sheid...@rz.uni-potsdam.de
-Ralf Nolden ralf.nol...@post.rwth-aachen.de
-Jonas Nordin jonas.nor...@syncom.se
-Pascal Krahmer pas...@beast.de
-Bernd Gehrmann be...@physik.hu-berlin.de
-Jörgen Olsson jor...@cenacle.net
-Stefan Bartel bar...@rz.uni-potsdam.de
-Walter Tasin ta...@e-technik.fh-muenchen.de
-John Birch j...@ihug.co.nz
-
 %lang_package
 %prep
-%setup -q -n kdevelop-%version
+%setup -q -n kdevelop-%{version}
 
 %build
   %cmake_kde4 -d build
@@ -65,11 +50,10 @@
 
 %install
   cd build
-  %makeinstall
-  %fdupes -s $RPM_BUILD_ROOT
+%make_install
+  %fdupes -s %{buildroot}
   %kde_post_install
   cd ..
-#  %find_lang desktop_extragear-sdk_kdevelop %{name}.lang
   %find_lang kdevcmake %{name}.lang
   %find_lang kdevcmakebuilder %{name}.lang
   %find_lang kdevcpp %{name}.lang
@@ -84,20 +68,20 @@
 
 %post
 /sbin/ldconfig
-/usr/bin/update-mime-database %{_datadir}/mime  /dev/null || :
+/usr/bin/update-mime-database %{_kde4_datadir}/mime  /dev/null || :
 
 %postun
 /sbin/ldconfig
-/usr/bin/update-mime-database %{_datadir}/mime  /dev/null || :
+/usr/bin/update-mime-database %{_kde4_datadir}/mime  /dev/null || :
 
 %clean
-  rm -rf $RPM_BUILD_ROOT
+  rm -rf %{buildroot}
 
 %package devel
 License:GPLv2+
-Group:  Development/Tools/IDE
 Summary:Integrated Development Environment: Build Environment
-Requires:   kdevelop4 = %version
+Group:  Development/Tools/IDE
+Requires:   kdevelop4 = %{version}
 
 %description devel
 An integrated development environment (IDE) that allows you to write
@@ -105,68 +89,51 @@
 documentation browser, a source code editor with syntax highlighting, a
 GUI for the compiler, and much more.
 
-
-
-Authors:
-
-Sandy Meier sme...@kdevelop.de
-Stefan Heidrich sheid...@rz.uni-potsdam.de
-Ralf Nolden ralf.nol...@post.rwth-aachen.de
-Jonas Nordin jonas.nor...@syncom.se
-Pascal Krahmer pas...@beast.de
-Bernd Gehrmann be...@physik.hu-berlin.de
-Jörgen Olsson jor...@cenacle.net
-Stefan Bartel bar...@rz.uni-potsdam.de
-Walter Tasin ta...@e-technik.fh-muenchen.de
-John Birch j...@ihug.co.nz
-
 %files lang -f %{name}.lang
 
 %files devel
 %defattr(-,root,root)
-%_kde_share_dir/apps/cmake/modules/FindKDevelop.cmake
-/usr/include/*
+%{_kde4_appsdir}/cmake/modules/FindKDevelop.cmake
+%{_kde4_includedir}/kdevelop/
 
 %files
 %defattr(-,root,root)
 %doc AUTHORS COPYING COPYING.LIB
-/usr/bin/*
-%_kde4_modules/kcm_kdev_makebuilder.so
-%_kde4_modules/kcm_kdevcmake_settings.so
-%_kde4_modules/kdevcmakemanager.so
-%_kde4_modules/kdevcpplanguagesupport.so
-%_kde4_modules/kdevcustommakemanager.so
-%_kde4_modules/kdevmakebuilder.so
-%_kde4_modules/kdevkdeprovider.so
-%_libdir/libkdev4cmakecommon.so
-%_libdir/libkdev4cppduchain.so

commit kdevelop4 for openSUSE:Factory

2011-07-04 Thread h_root

Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory
checked in at Mon Jul 4 16:05:26 CEST 2011.




--- KDE/kdevelop4/kdevelop4.changes 2011-04-16 12:08:50.0 +0200
+++ /mounts/work_src_done/STABLE/kdevelop4/kdevelop4.changes2011-06-27 
14:12:22.0 +0200
@@ -1,0 +2,5 @@
+Mon Jun 27 12:11:25 UTC 2011 - jav...@opensuse.org
+
+- update to 4.2.3 bugfix release
+
+---

calling whatdependson for head-i586


Old:

  kdevelop-4.2.2.tar.bz2

New:

  kdevelop-4.2.3.tar.bz2



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.aWUf3X/_old  2011-07-04 16:04:58.0 +0200
+++ /var/tmp/diff_new_pack.aWUf3X/_new  2011-07-04 16:04:58.0 +0200
@@ -25,7 +25,7 @@
 Group:  Development/Tools/IDE
 Summary:Integrated Development Environment for the X Window System, 
Qt, KDE, and GNOME
 Url:http://www.kdevelop.org
-Version:4.2.2
+Version:4.2.3
 Release:1
 Source0:kdevelop-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -80,6 +80,7 @@
   %find_lang kdevmakebuilder %{name}.lang
   %find_lang kdevqthelp %{name}.lang
   %find_lang kdevokteta %{name}.lang
+  %find_lang kdevmanpage %{name}.lang
 
 %post
 /sbin/ldconfig

++ kdevelop-4.2.2.tar.bz2 - kdevelop-4.2.3.tar.bz2 ++
 8516 lines of diff (skipped)






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kdevelop4 for openSUSE:Factory

2011-04-20 Thread h_root

Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory
checked in at Wed Apr 20 13:55:59 CEST 2011.




--- KDE/kdevelop4/kdevelop4.changes 2011-02-17 15:18:06.0 +0100
+++ /mounts/work_src_done/STABLE/kdevelop4/kdevelop4.changes2011-04-16 
12:08:50.0 +0200
@@ -1,0 +2,5 @@
+Sat Apr 16 10:00:55 UTC 2011 - jav...@opensuse.org
+
+- update to 4.2.2 bugfix release
+
+---

calling whatdependson for head-i586


Old:

  kdevelop-4.2.0.tar.bz2

New:

  kdevelop-4.2.2.tar.bz2



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.xEWvyf/_old  2011-04-20 13:55:05.0 +0200
+++ /var/tmp/diff_new_pack.xEWvyf/_new  2011-04-20 13:55:05.0 +0200
@@ -25,8 +25,8 @@
 Group:  Development/Tools/IDE
 Summary:Integrated Development Environment for the X Window System, 
Qt, KDE, and GNOME
 Url:http://www.kdevelop.org
-Version:4.2.0
-Release:5
+Version:4.2.2
+Release:1
 Source0:kdevelop-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   %{name}-lang = %version

++ kdevelop-4.2.0.tar.bz2 - kdevelop-4.2.2.tar.bz2 ++
 29730 lines of diff (skipped)






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org