commit kdeaddons3 for openSUSE:Factory

2015-09-09 Thread h_root
Hello community,

here is the log from the commit of package kdeaddons3 for openSUSE:Factory 
checked in at 2015-09-09 20:21:03

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


Package is "kdeaddons3"

Changes:

--- /work/SRC/openSUSE:Factory/kdeaddons3/kdeaddons3.changes2013-08-10 
18:24:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdeaddons3.new/kdeaddons3.changes   
2015-09-09 20:21:04.0 +0200
@@ -1,0 +2,6 @@
+Tue Sep  8 14:50:13 UTC 2015 - an...@opensuse.org
+
+- fix recognition of C++ files, patch from Trinity
+  kdeaddons-trinity-kate-fix-recognition-of-cpp-files.patch
+
+---

New:

  kdeaddons-trinity-kate-fix-recognition-of-cpp-files.patch



Other differences:
--
++ kdeaddons3.spec ++
--- /var/tmp/diff_new_pack.ettd9q/_old  2015-09-09 20:21:05.0 +0200
+++ /var/tmp/diff_new_pack.ettd9q/_new  2015-09-09 20:21:05.0 +0200
@@ -37,7 +37,7 @@
 Version:3.5.10
 Release:0
 Url:http://www.kde.org
-Requires:   kdelibs3 >= %(rpm -q --queryformat '%{VERSION}' kdelibs3)
+Requires:   kdelibs3
 Source: kdeaddons-%{version}.tar.bz2
 Patch0: 3_5_BRANCH.diff
 Patch1: disable-lnk.diff
@@ -46,6 +46,7 @@
 Patch4: permanent-searchbar.diff
 Patch5: use-db.diff
 Patch6: kdeaddons-3.5.10-gcc45.diff
+Patch7: kdeaddons-trinity-kate-fix-recognition-of-cpp-files.patch
 
 %description
 This package contains some fun and useful additional modules:
@@ -184,6 +185,7 @@
 %patch4
 %patch5
 %patch6
+%patch7 -p1
 
 %build
 . /etc/opt/kde3/common_options
@@ -205,9 +207,6 @@
 %suse_update_desktop_file -r ksig  Network Email   
 kde_post_install
 
-%clean
-rm -rf ${RPM_BUILD_ROOT}
-
 %post
 %run_ldconfig
 

++ kdeaddons-trinity-kate-fix-recognition-of-cpp-files.patch ++
>From 4d976d10e8d99776881152c0911f80890ffba579 Mon Sep 17 00:00:00 2001
From: Michele Calgaro 
Date: Fri, 07 Aug 2015 14:38:43 +
Subject: Fixed recognition of C++ files in kate/cppsymbolviewer plugin. This 
resolves bug 2498. Also fixed building warnings.

Signed-off-by: Michele Calgaro 
---
diff --git a/kate/cppsymbolviewer/cpp_parser.cpp 
b/kate/cppsymbolviewer/cpp_parser.cpp
index b666983..9aceda2 100644
--- a/kate/cppsymbolviewer/cpp_parser.cpp
+++ b/kate/cppsymbolviewer/cpp_parser.cpp
@@ -23,9 +23,9 @@ void KatePluginSymbolViewerView::parseCppSymbols(void)
  QString cl; // Current Line
  QString stripped;
  uint i, j, tmpPos = 0;
- int par = 0, graph = 0, retry = 0;
+ int par = 0, graph = 0;
  char mclass = 0, block = 0, comment = 0; // comment: 0-no comment 1-inline 
comment 2-multiline comment 3-string
- char macro = 0, macro_pos = 0, func_close = 0;
+ char macro = 0, func_close = 0;
  bool structure = false;
  QPixmap cls( ( const char** ) class_xpm );
  QPixmap sct( ( const char** ) struct_xpm );
@@ -76,7 +76,6 @@ void KatePluginSymbolViewerView::parseCppSymbols(void)
/* *** MACRO PARSING */
if(macro == 1)
  {
-  //macro_pos = cl.find("#");
   for (j = 0; j < cl.length(); j++)
  {
   if(cl.at(j)=='/' && cl.at(j+1)=='/') { macro = 4; break; }
@@ -113,7 +112,6 @@ void KatePluginSymbolViewerView::parseCppSymbols(void)
   node->setText(1, QString::number( i, 10));
  }
   macro = 0;
-  macro_pos = 0;
   stripped = "";
   //kdDebug(13000)<<"Macro -- Inserted : "<= 0) 
+  if (cl.find('{') >= 0)
 {
  cl = cl.right(cl.find('{'));
  mclass = 4;
@@ -216,8 +214,8 @@ void KatePluginSymbolViewerView::parseCppSymbols(void)
   break;
  }
 
-   if(cl.at(j)=='{' && structure == false && cl.find(";") < 0 
||
-  cl.at(j)=='{' && structure == false && cl.find('}') > 
(int)j)
+   if((cl.at(j)=='{' && structure == false && cl.find(";") < 
0) ||
+  (cl.at(j)=='{' && structure == false && cl.find('}') > 
(int)j))
  {
   stripped.replace(0x9, " ");
   if(func_on == true)
@@ -240,7 +238,7 @@ void 

commit kdeaddons3 for openSUSE:Factory

2013-08-10 Thread h_root
Hello community,

here is the log from the commit of package kdeaddons3 for openSUSE:Factory 
checked in at 2013-08-10 18:24:39

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


Package is kdeaddons3

Changes:

--- /work/SRC/openSUSE:Factory/kdeaddons3/kdeaddons3.changes2013-08-06 
12:41:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdeaddons3.new/kdeaddons3.changes   
2013-08-10 18:24:41.0 +0200
@@ -1,0 +2,6 @@
+Wed Aug  7 09:02:27 UTC 2013 - meiss...@suse.com
+
+- restore ssl support, reason for failure was kdelibs3 was not built
+  against openssl anymore due to lack of direct build dependency.
+
+---



Other differences:
--
++ kdeaddons3.spec ++
--- /var/tmp/diff_new_pack.2cUtSk/_old  2013-08-10 18:24:41.0 +0200
+++ /var/tmp/diff_new_pack.2cUtSk/_new  2013-08-10 18:24:41.0 +0200
@@ -188,10 +188,7 @@
 %build
 . /etc/opt/kde3/common_options
 update_admin
-./configure $configkde \
-%if %suse_version = 1310
---without-ssl
-%endif
+./configure $configkde
 
 make %{?jobs:-j%jobs}
 

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



commit kdeaddons3 for openSUSE:Factory

2013-08-06 Thread h_root
Hello community,

here is the log from the commit of package kdeaddons3 for openSUSE:Factory 
checked in at 2013-08-06 12:04:23

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


Package is kdeaddons3

Changes:

--- /work/SRC/openSUSE:Factory/kdeaddons3/kdeaddons3.changes2013-03-11 
10:32:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdeaddons3.new/kdeaddons3.changes   
2013-08-06 12:41:13.0 +0200
@@ -1,0 +2,5 @@
+Mon Aug  5 20:44:00 UTC 2013 - an...@opensuse.org
+
+- disable ssl due to incompatibility with gcc 4.8
+
+---



Other differences:
--
++ kdeaddons3.spec ++
--- /var/tmp/diff_new_pack.hFDaiZ/_old  2013-08-06 12:41:13.0 +0200
+++ /var/tmp/diff_new_pack.hFDaiZ/_new  2013-08-06 12:41:13.0 +0200
@@ -188,7 +188,11 @@
 %build
 . /etc/opt/kde3/common_options
 update_admin
-./configure $configkde
+./configure $configkde \
+%if %suse_version = 1310
+--without-ssl
+%endif
+
 make %{?jobs:-j%jobs}
 
 %install

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



commit kdeaddons3 for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

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

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


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

Changes:




Other differences:
--
++ kdeaddons3.spec ++
--- /var/tmp/diff_new_pack.qjfiRw/_old  2011-12-06 18:36:50.0 +0100
+++ /var/tmp/diff_new_pack.qjfiRw/_new  2011-12-06 18:36:50.0 +0100
@@ -25,7 +25,7 @@
 %else
 BuildRequires:  gtk-devel
 %endif
-License:GPL-2.0; LGPL-2.0+
+License:GPL-2.0 ; LGPL-2.0+
 Group:  System/GUI/KDE
 Summary:Additional Modules for Kate, Kicker, Konqueror, and Noatun
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -60,7 +60,7 @@
 The KDE Team k...@kde.org
 
 %package games
-License:GPL-2.0; LGPL-2.0+
+License:GPL-2.0 ; LGPL-2.0+
 # usesubdirs atlantikdesigner
 Provides:   kdeaddons3 = %{version}-%{release}
 Summary:Additional Modules for Atlantik
@@ -76,7 +76,7 @@
 The KDE Team k...@kde.org
 
 %package konqueror
-License:GPL-2.0; LGPL-2.0+
+License:GPL-2.0 ; LGPL-2.0+
 # usesubdirs kfile-plugins knewsticker-scripts konq-plugins
 Obsoletes:  kdeaddons3-internet metabar
 Provides:   kdeaddons3-internet metabar
@@ -98,7 +98,7 @@
 The KDE Team k...@kde.org
 
 %package kontact
-License:GPL-2.0; LGPL-2.0+
+License:GPL-2.0 ; LGPL-2.0+
 # usesubdirs kontact ksig
 Requires:   kdenetwork3-news
 Provides:   kdeaddons3 = %{version}-%{release}
@@ -119,7 +119,7 @@
 The KDE Team k...@kde.org
 
 %package sound
-License:GPL-2.0; LGPL-2.0+
+License:GPL-2.0 ; LGPL-2.0+
 # usesubdirs noatun-plugins
 Provides:   kdeaddons3:/opt/kde3/bin/noatunsynaescope.bin
 Provides:   kdeaddons3 = %{version}-%{release}
@@ -137,7 +137,7 @@
 The KDE Team k...@kde.org
 
 %package kate
-License:GPL-2.0; LGPL-2.0+
+License:GPL-2.0 ; LGPL-2.0+
 # usesubdirs kate
 Provides:   kdeaddons3:/opt/kde3/bin/dcop_kate
 Provides:   kdeaddons3 = %{version}-%{release}
@@ -156,7 +156,7 @@
 The KDE Team k...@kde.org
 
 %package kicker
-License:GPL-2.0; LGPL-2.0+
+License:GPL-2.0 ; LGPL-2.0+
 # usesubdirs kicker-applets
 Provides:   kdeaddons3:/opt/kde3/share/apps/kicker/applets/ktimemon.desktop
 Provides:   kdeaddons3 = %{version}-%{release}

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



commit kdeaddons3 for openSUSE:Factory

2011-09-22 Thread h_root

Hello community,

here is the log from the commit of package kdeaddons3 for openSUSE:Factory
checked in at Thu Sep 22 12:55:45 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/kdeaddons3/kdeaddons3.changes  2010-07-30 
16:45:36.0 +0200
@@ -0,0 +1,772 @@
+---
+Fri Jul 30 16:44:56 CEST 2010 - h...@urpla.net
+
+- fix gcc 4.5 build
+
+---
+Wed Aug 20 18:24:34 CEST 2008 - co...@suse.de
+
+- update to 3.5.10
+  * bugfixes, translations
+
+---
+Fri May  9 10:30:07 CEST 2008 - dmuel...@suse.de
+
+- 3_5_BRANCH.diff update:
+  * fix popup in babelfish plugin
+
+---
+Thu Mar 13 11:12:51 CET 2008 - dmuel...@suse.de
+
+- update 3_5_BRANCH diff:
+  * fix crash in kate tabbar extension (bko#157834)
+
+---
+Wed Feb 13 23:29:20 CET 2008 - dmuel...@suse.de
+
+- update to 3.5.9:
+  * bugfixes, translation update
+
+---
+Thu Nov 15 19:01:59 CET 2007 - dmuel...@suse.de
+
+- update 3.5 branch diff to fix gcc 4.3 compilation 
+
+---
+Sat Oct 20 15:37:25 CEST 2007 - co...@suse.de
+
+- update to 3.5 branch to fix gcc 4.3 compilation
+
+---
+Tue Oct  9 16:12:03 CEST 2007 - stbin...@suse.de
+
+- update to 3.5.8: performance improvements for dirfilter plugin
+
+---
+Fri Sep 28 15:55:13 CEST 2007 - dmuel...@suse.de
+
+- fix quoting in realmedia handler (#326912) 
+
+---
+Sat Aug  4 18:57:28 CEST 2007 - stbin...@suse.de
+
+- add 3_5_BRANCH.diff
+
+---
+Tue Jul 17 12:27:24 CEST 2007 - stbin...@suse.de
+
+- remove fsview.desktop
+
+---
+Mon Jun  4 13:40:54 CEST 2007 - stbin...@suse.de
+
+- move kde_post_install
+
+---
+Wed May 23 21:56:08 CEST 2007 - stbin...@suse.de
+
+- adapt BuildRequires after kdegames3-devel split-off
+
+---
+Mon May 14 23:12:15 CEST 2007 - stbin...@suse.de
+
+- update to 3.5.7
+   * Kate Symbol Viewer: Improved C++ and Java support. 
+   * Bugfixes in the web archiver and web validator plugins
+
+---
+Fri Apr 20 16:21:19 CEST 2007 - dmuel...@suse.de
+
+- use C version of db
+
+---
+Fri Jan 26 09:57:15 CET 2007 - stbin...@suse.de
+
+- add 3_5_BRANCH.diff to fix minor privacy issue in webarchiver
+
+---
+Tue Jan 16 15:36:42 CET 2007 - stbin...@suse.de
+
+- update to 3.5.6 release:
+   * several bugfixes to Konqueror plugins
+
+---
+Fri Dec  1 14:52:10 CET 2006 - stbin...@suse.de
+
+- fix possible crash of KonquerorDirFilterPlugin (#223957)
+
+---
+Wed Nov  8 16:51:38 CET 2006 - stbin...@suse.de
+
+- remove historic Provides: (#218798)
+
+---
+Tue Oct 31 16:20:00 CET 2006 - co...@suse.de
+
+- add 3_5_BRANCH.diff:
+   - Fix 7zip support
+   - Changing default save location for webarchiv plugin
+   - translation update
+
+---
+Mon Oct  9 12:56:22 CEST 2006 - stbin...@suse.de
+
+- fix konqueror blocks while opening a profile with more than
+  one windows (#210147)
+
+---
+Tue Oct  3 10:29:01 CEST 2006 - stbin...@suse.de
+
+- update to 3.5.5 release tarball
+
+---
+Tue Sep 19 13:44:33 CEST 2006 - stbin...@suse.de
+
+- fix previous commit/regression and remember last view mode
+
+---
+Mon Sep 11 21:40:21 CEST 2006 - co...@suse.de
+
+- backporting patch from opensuse contributor kling-kde to fix
+  konqueror crashes (#204388, #204369)
+
+---
+Fri Sep  1 17:25:51 CEST 2006 - stbin...@suse.de
+
+- improve permanent-searchbar.diff (synchronious check, other icon)
+
+---
+Wed Aug 23 11:17:43 CEST 2006 -