commit kdelibs4 for openSUSE:Factory

2019-08-09 Thread root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2019-08-09 16:51:14

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


Package is "kdelibs4"

Fri Aug  9 16:51:14 2019 rev:307 rq:721478 version:4.14.38

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2019-08-06 
15:08:18.495853136 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new.9556/kdelibs4.changes  
2019-08-09 16:51:16.837498518 +0200
@@ -1,0 +2,6 @@
+Wed Aug  7 07:51:45 UTC 2019 - Fabian Vogt 
+
+- Add patch to drop involuntary command execution (boo#1144600):
+  * 0001-Security-remove-support-for-.-in-config-keys-with-e-.patch
+
+---

New:

  0001-Security-remove-support-for-.-in-config-keys-with-e-.patch



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.tn3boA/_old  2019-08-09 16:51:17.653498356 +0200
+++ /var/tmp/diff_new_pack.tn3boA/_new  2019-08-09 16:51:17.653498356 +0200
@@ -62,6 +62,8 @@
 Patch19:0001-Make-kssl-compile-against-OpenSSL-1.1.0.patch
 # PATCH-FIX-OPENSUSE 0001-Fix-the-smbclient-4.9-check.patch -- Fix a CMake 
test failure in kdebase4-runtime when using Samba 4.9
 Patch20:0001-Fix-the-smbclient-4.9-check.patch
+# PATCH-FIX-UPSTREAM
+Patch21:0001-Security-remove-support-for-.-in-config-keys-with-e-.patch
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
 BuildRequires:  avahi-compat-mDNSResponder-devel
@@ -151,6 +153,7 @@
 %patch18 -p1
 %patch19 -p1
 %patch20 -p1
+%patch21 -p1
 
 %build
   EXTRA_FLAGS="-DLIB_INSTALL_DIR=%{_kde4_libdir} \

++ 0001-Security-remove-support-for-.-in-config-keys-with-e-.patch ++
>From 06ee7568491c488032572a6a59b5a5062e092516 Mon Sep 17 00:00:00 2001
From: Kai Uwe Broulik 
Date: Wed, 7 Aug 2019 09:47:46 +0200
Subject: [PATCH] Security: remove support for $(...) in config keys with [$e]
 marker.

It is very unclear at this point what a valid use case for this feature
would possibly be. The old documentation only mentions $(hostname) as
an example, which can be done with $HOSTNAME instead.

Note that $(...) is still supported in Exec lines of desktop files,
this does not require [$e] anyway (and actually works better without it,
otherwise the $ signs need to be doubled to obey kconfig $e escaping rules...).

(This is a backport of KDE Frameworks 5 kconfig patch to kdelibs)
---
 kdecore/config/kconfig.cpp| 32 +---
 kdecore/doc/README.kiosk  | 12 
 kdecore/tests/kconfigtest.cpp |  6 +-
 3 files changed, 2 insertions(+), 48 deletions(-)

diff --git a/kdecore/config/kconfig.cpp b/kdecore/config/kconfig.cpp
index 7ea26a5480..b30584b302 100644
--- a/kdecore/config/kconfig.cpp
+++ b/kdecore/config/kconfig.cpp
@@ -160,37 +160,7 @@ QString KConfigPrivate::expandString(const QString& value)
 int nDollarPos = aValue.indexOf( QLatin1Char('$') );
 while( nDollarPos != -1 && nDollarPos+1 < aValue.length()) {
 // there is at least one $
-if( aValue[nDollarPos+1] == QLatin1Char('(') ) {
-int nEndPos = nDollarPos+1;
-// the next character is not $
-while ( (nEndPos <= aValue.length()) && 
(aValue[nEndPos]!=QLatin1Char(')')) )
-nEndPos++;
-nEndPos++;
-QString cmd = aValue.mid( nDollarPos+2, nEndPos-nDollarPos-3 );
-
-QString result;
-QByteArray oldpath = qgetenv( "PATH" );
-QByteArray newpath;
-if (KGlobal::hasMainComponent()) {
-newpath = 
QFile::encodeName(KGlobal::dirs()->resourceDirs("exe").join(QChar::fromLatin1(KPATH_SEPARATOR)));
-if (!newpath.isEmpty() && !oldpath.isEmpty())
-newpath += KPATH_SEPARATOR;
-}
-newpath += oldpath;
-setenv( "PATH", newpath, 1/*overwrite*/ );
-// FIXME: wince does not have pipes
-#ifndef _WIN32_WCE
-FILE *fs = popen(QFile::encodeName(cmd).data(), "r");
-if (fs) {
-QTextStream ts(fs, QIODevice::ReadOnly);
-result = ts.readAll().trimmed();
-pclose(fs);
-}
-#endif
-setenv( "PATH", oldpath, 1/*overwrite*/ );
-aValue.replace( nDollarPos, nEndPos-nDollarPos, result );
-nDollarPos += result.length();
-} else if( aValue[nDollarPos+1] != QLatin1Char('$') ) {
+if( aValue[nDollarPos+1] != QLatin1Char('$') ) {
 int nEndPos = nDollarPos+1;
 // the next character is not $
 QString aVarName;
diff --git a/kdecore/doc/README.kiosk 

commit kdelibs4 for openSUSE:Factory

2019-08-06 Thread root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2019-08-06 15:08:17

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


Package is "kdelibs4"

Tue Aug  6 15:08:17 2019 rev:306 rq:719589 version:4.14.38

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2019-02-11 
21:18:24.271304782 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new.4126/kdelibs4.changes  
2019-08-06 15:08:18.495853136 +0200
@@ -1,0 +2,6 @@
+Wed Jul 24 14:16:18 UTC 2019 - Michel Normand 
+
+- New _constraints for ppc64/ppc64le avoid "No space left on device"
+- Disable LTO for ppc64 (BE) bypass collect2 error (boo#1143249)
+
+---

New:

  _constraints



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.2BNYul/_old  2019-08-06 15:08:19.579852332 +0200
+++ /var/tmp/diff_new_pack.2BNYul/_new  2019-08-06 15:08:19.583852329 +0200
@@ -16,6 +16,11 @@
 #
 
 
+# bypass https://bugzilla.opensuse.org/show_bug.cgi?id=1143249
+%ifarch ppc64
+%define _lto_cflags %{nil}
+%endif
+
 # a hack for building apidoc, currently unused and unneeded (rev.312)
 %bcond_with gendoxygen
 Name:   kdelibs4

++ _constraints ++

  

  ppc64
  ppc64le


  
2400
  
  
4
  

  




commit kdelibs4 for openSUSE:Factory

2019-02-11 Thread root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2019-02-11 21:18:22

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


Package is "kdelibs4"

Mon Feb 11 21:18:22 2019 rev:305 rq:672505 version:4.14.38

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2018-10-04 18:59:58.403298952 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new.28833/kdelibs4-apidocs.changes 
2019-02-11 21:18:23.815305025 +0100
@@ -1,0 +2,6 @@
+Thu Feb  7 16:01:27 UTC 2019 - Luca Beltrame 
+
+- Remove requirements on upower: it is long deprecated and there
+  is no longer a Qt4 based desktop to use it (boo#1124573)
+
+---
kdelibs4.changes: same change



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.nNREUu/_old  2019-02-11 21:18:25.431304166 +0100
+++ /var/tmp/diff_new_pack.nNREUu/_new  2019-02-11 21:18:25.431304166 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4-apidocs
 #
-# 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

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.nNREUu/_old  2019-02-11 21:18:25.451304155 +0100
+++ /var/tmp/diff_new_pack.nNREUu/_new  2019-02-11 21:18:25.451304155 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4
 #
-# 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
@@ -96,7 +96,6 @@
 Requires:   kdelibs4-core = %{version}
 Requires:   libkde4 = %{version}
 Requires:   udisks2
-Requires:   upower
 Requires:   libattica0_4 >= %( echo `rpm -q --queryformat '%%{VERSION}' 
libattica-devel`)
 %requires_gelibqt4-x11
 %requires_geshared-mime-info




commit kdelibs4 for openSUSE:Factory

2018-10-04 Thread root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2018-10-04 18:59:58

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


Package is "kdelibs4"

Thu Oct  4 18:59:58 2018 rev:304 rq:639466 version:4.14.38

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2017-12-11 18:55:06.538545486 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2018-10-04 18:59:58.403298952 +0200
@@ -1,0 +2,18 @@
+Mon Oct  1 12:03:07 UTC 2018 - Christophe Giboudeaux 
+
+- Add 0001-Fix-the-smbclient-4.9-check.patch to fix the libsmbclient
+  symbols check in kdebase4-runtime.
+- Run spec-cleaner.
+
+---
+Sat Dec 16 13:17:50 UTC 2017 - fab...@ritter-vogt.de
+
+- Do not build against QCA
+
+---
+Tue Dec 12 15:34:02 UTC 2017 - wba...@tmo.at
+
+- Add 0001-Make-kssl-compile-against-OpenSSL-1.1.0.patch (backported
+  from KF5's kdelibs4support) to allow building with openSSL 1.1.0
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2017-12-21 
11:24:30.049717111 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2018-10-04 
18:59:58.535298813 +0200
@@ -1,0 +2,7 @@
+Mon Oct  1 12:03:07 UTC 2018 - Christophe Giboudeaux 
+
+- Add 0001-Fix-the-smbclient-4.9-check.patch to fix the libsmbclient
+  symbols check in kdebase4-runtime.
+- Run spec-cleaner.
+
+---

New:

  0001-Fix-the-smbclient-4.9-check.patch



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.nj1Q4J/_old  2018-10-04 18:59:59.483297822 +0200
+++ /var/tmp/diff_new_pack.nj1Q4J/_new  2018-10-04 18:59:59.487297819 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4-apidocs
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -12,7 +12,7 @@
 # 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/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -20,9 +20,9 @@
 Version:4.14.38
 Release:0
 Summary:KDE 4 API documentation
-License:LGPL-2.1+
+License:LGPL-2.1-or-later
 Group:  System/GUI/KDE
-Url:http://www.kde.org
+URL:http://www.kde.org
 Source0:kdelibs-%{version}.tar.xz
 Source1:baselibs.conf
 Source2:hidden.desktop
@@ -37,7 +37,6 @@
 BuildRequires:  libqt4-devel-doc
 BuildRequires:  xz
 Requires:   kde4-filesystem
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
 %define debug_package_requires %{name} = %{version}-%{release} libqt4-debuginfo
@@ -60,11 +59,7 @@
   %fdupes %{buildroot}%{_kde4_htmldir}/en/kdelibs4-apidocs
   %kde_post_install
 
-%clean
-  rm -rf %{buildroot}
-
 %files
-%defattr(-,root,root,-)
 %{_kde4_htmldir}/en/kdelibs4-apidocs/
 
 %changelog

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.nj1Q4J/_old  2018-10-04 18:59:59.499297806 +0200
+++ /var/tmp/diff_new_pack.nj1Q4J/_new  2018-10-04 18:59:59.503297802 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -12,16 +12,51 @@
 # 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/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 # a hack for building apidoc, currently unused and unneeded (rev.312)
 %bcond_with gendoxygen
-
 Name:   kdelibs4
 Version:4.14.38
 Release:0
+Summary:KDE Base Libraries
+License:LGPL-2.1-or-later
+Group:  System/GUI/KDE
+URL:http://www.kde.org
+Source0:kdelibs-%{version}.tar.xz
+Source1:baselibs.conf
+Source2:hidden.desktop
+Source3:ycp.xml
+Source4:kde4rc
+Patch1: default-useragent.diff
+Patch2: 

commit kdelibs4 for openSUSE:Factory

2017-12-21 Thread root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2017-12-21 11:24:25

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


Package is "kdelibs4"

Thu Dec 21 11:24:25 2017 rev:303 rq:557833 version:4.14.38

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2017-12-16 
20:45:16.592992934 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2017-12-21 
11:24:30.049717111 +0100
@@ -1,0 +2,5 @@
+Sat Dec 16 13:17:50 UTC 2017 - fab...@ritter-vogt.de
+
+- Do not build against QCA
+
+---



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.qfuA7i/_old  2017-12-21 11:24:32.029620573 +0100
+++ /var/tmp/diff_new_pack.qfuA7i/_new  2017-12-21 11:24:32.029620573 +0100
@@ -45,7 +45,6 @@
 BuildRequires:  libgssglue-devel
 BuildRequires:  libjasper-devel
 BuildRequires:  libpolkit-qt-1-devel
-BuildRequires:  libqca2-devel >= 2.0.0
 BuildRequires:  libqt4-devel >= 4.8.0
 BuildRequires:  libudev-devel
 BuildRequires:  libxslt-devel




commit kdelibs4 for openSUSE:Factory

2017-12-16 Thread root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2017-12-16 20:45:14

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


Package is "kdelibs4"

Sat Dec 16 20:45:14 2017 rev:302 rq:556624 version:4.14.38

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2017-12-11 
18:55:06.746535579 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2017-12-16 
20:45:16.592992934 +0100
@@ -1,0 +2,6 @@
+Tue Dec 12 15:34:02 UTC 2017 - wba...@tmo.at
+
+- Add 0001-Make-kssl-compile-against-OpenSSL-1.1.0.patch (backported
+  from KF5's kdelibs4support) to allow building with openSSL 1.1.0
+
+---

New:

  0001-Make-kssl-compile-against-OpenSSL-1.1.0.patch



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.NGTBcX/_old  2017-12-16 20:45:17.696939642 +0100
+++ /var/tmp/diff_new_pack.NGTBcX/_new  2017-12-16 20:45:17.696939642 +0100
@@ -89,6 +89,8 @@
 Patch17:gcc6-fix-errors.patch
 # PATCH-FIX-OPENSUSE
 Patch18:Skip-qtwebkit-parts.patch
+# PATCH-FIX-OPENSUSE
+Patch19:0001-Make-kssl-compile-against-OpenSSL-1.1.0.patch
 PreReq: permissions
 Requires:   libattica0_4 >= %( echo `rpm -q --queryformat '%%{VERSION}' 
libattica-devel`)
 Recommends: media-player-info
@@ -146,6 +148,7 @@
 %patch15 -p1
 %patch17
 %patch18 -p1
+%patch19 -p1
 
 %build
   EXTRA_FLAGS="-DLIB_INSTALL_DIR=%{_kde4_libdir} \

++ 0001-Make-kssl-compile-against-OpenSSL-1.1.0.patch ++
 999 lines (skipped)




commit kdelibs4 for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2017-12-11 18:55:01

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


Package is "kdelibs4"

Mon Dec 11 18:55:01 2017 rev:301 rq:555667 version:4.14.38

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2017-11-16 14:34:47.184218571 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2017-12-11 18:55:06.538545486 +0100
@@ -1,0 +2,13 @@
+Sun Dec 10 13:12:59 UTC 2017 - dims...@opensuse.org
+
+- Escape the usage of %{VERSION} when calling out to rpm.
+  RPM 4.14 has %{VERSION} defined as 'the main packages version'.
+
+---
+Sat Dec  2 16:46:52 UTC 2017 - fab...@ritter-vogt.de
+
+- Add patch to not build against Qt4 WebKit:
+  * Skip-qtwebkit-parts.patch
+  * Vade retro satana
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2017-12-05 
01:25:35.855413826 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2017-12-11 
18:55:06.746535579 +0100
@@ -1,0 +2,6 @@
+Sun Dec 10 13:12:59 UTC 2017 - dims...@opensuse.org
+
+- Escape the usage of %{VERSION} when calling out to rpm.
+  RPM 4.14 has %{VERSION} defined as 'the main packages version'.
+
+---



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.UB3ue3/_old  2017-12-11 18:55:07.902480521 +0100
+++ /var/tmp/diff_new_pack.UB3ue3/_new  2017-12-11 18:55:07.902480521 +0100
@@ -90,7 +90,7 @@
 # PATCH-FIX-OPENSUSE
 Patch18:Skip-qtwebkit-parts.patch
 PreReq: permissions
-Requires:   libattica0_4 >= %( echo `rpm -q --queryformat '%{VERSION}' 
libattica-devel`)
+Requires:   libattica0_4 >= %( echo `rpm -q --queryformat '%%{VERSION}' 
libattica-devel`)
 Recommends: media-player-info
 Requires:   kdelibs4-core = %{version}
 Requires:   libkde4 = %{version}




commit kdelibs4 for openSUSE:Factory

2017-12-04 Thread root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2017-12-05 01:25:34

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


Package is "kdelibs4"

Tue Dec  5 01:25:34 2017 rev:300 rq:547667 version:4.14.38

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2017-11-16 
14:34:47.220217265 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2017-12-05 
01:25:35.855413826 +0100
@@ -1,0 +2,7 @@
+Sat Dec  2 16:46:52 UTC 2017 - fab...@ritter-vogt.de
+
+- Add patch to not build against Qt4 WebKit:
+  * Skip-qtwebkit-parts.patch
+  * Vade retro satana
+
+---

New:

  Skip-qtwebkit-parts.patch



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.KhbCCJ/_old  2017-12-05 01:25:37.163366308 +0100
+++ /var/tmp/diff_new_pack.KhbCCJ/_new  2017-12-05 01:25:37.167366162 +0100
@@ -38,7 +38,6 @@
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  kde4-filesystem
 BuildRequires:  krb5-devel
-BuildRequires:  libQtWebKit-devel
 BuildRequires:  libacl-devel
 BuildRequires:  libattica-devel >= 0.4.2
 BuildRequires:  libattr-devel
@@ -88,6 +87,8 @@
 Patch15:0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch
 # PATCH-FIX-OPENSUSE gcc6-fix-errors.patch -- Fix errors spotted by GCC6.
 Patch17:gcc6-fix-errors.patch
+# PATCH-FIX-OPENSUSE
+Patch18:Skip-qtwebkit-parts.patch
 PreReq: permissions
 Requires:   libattica0_4 >= %( echo `rpm -q --queryformat '%{VERSION}' 
libattica-devel`)
 Recommends: media-player-info
@@ -144,6 +145,7 @@
 %patch12 -p1
 %patch15 -p1
 %patch17
+%patch18 -p1
 
 %build
   EXTRA_FLAGS="-DLIB_INSTALL_DIR=%{_kde4_libdir} \
@@ -351,7 +353,6 @@
 %{_kde4_libdir}/libkdeclarative.so.*
 %{_kde4_libdir}/libkdesu.so.*
 %{_kde4_libdir}/libkdeui.so.*
-%{_kde4_libdir}/libkdewebkit.so.*
 %{_kde4_libdir}/libkdnssd.so.*
 %{_kde4_libdir}/libkemoticons.so.*
 %{_kde4_libdir}/libkfile.so.*
@@ -386,7 +387,6 @@
 Requires:   docbook-xsl-stylesheets
 Requires:   kdelibs4 = %{version}
 Requires:   kdelibs4-doc = %{version}
-Requires:   libQtWebKit-devel
 Requires:   libkde4 = %{version}
 Requires:   libkdecore4-devel = %{version}
 Requires:   phonon-devel

++ Skip-qtwebkit-parts.patch ++
From: Fabian Vogt 
Subject: Do not build parts depending on Qt WebKit

Qt WebKit is unmaintained and must not be used anymore.

Index: kdelibs-4.14.38/CMakeLists.txt
===
--- kdelibs-4.14.38.orig/CMakeLists.txt
+++ kdelibs-4.14.38/CMakeLists.txt
@@ -357,7 +357,6 @@ if(NOT WINCE)
 add_subdirectory( plasma )
 endif(NOT WINCE)
 add_subdirectory( kunitconversion )
-add_subdirectory( kdewebkit )
 add_subdirectory( includes )
 
 add_subdirectory( experimental )
Index: kdelibs-4.14.38/plasma/CMakeLists.txt
===
--- kdelibs-4.14.38.orig/plasma/CMakeLists.txt
+++ kdelibs-4.14.38/plasma/CMakeLists.txt
@@ -1,6 +1,7 @@
 # strange conversion error in pushbutton.cpp
 kde4_no_enable_final(plasma)
 
+set(PLASMA_NO_KDEWEBKIT TRUE)
 if(KDE_PLATFORM_FEATURE_BINARY_COMPATIBLE_FEATURE_REDUCTION)
 set(PLASMA_NO_KDEWEBKIT TRUE)
 set(PLASMA_NO_KNEWSTUFF TRUE)
@@ -121,7 +122,6 @@ set(plasma_LIB_SRCS
 framesvg.cpp
 plasma.cpp
 popupapplet.cpp
-private/animablegraphicswebview.cpp
 private/applethandle.cpp
 private/associatedapplicationmanager.cpp
 private/componentinstaller.cpp
@@ -211,7 +211,6 @@ set(plasma_LIB_SRCS
 widgets/textbrowser.cpp
 widgets/treeview.cpp
 widgets/textedit.cpp
-widgets/webview.cpp
 
 #Temporary QtJolie branch
 private/qtjolie-branch/qtjolie/abstractadaptor.cpp
@@ -275,7 +274,7 @@ endif(PHONON_FOUND)
 
 kde4_add_library(plasma ${LIBRARY_TYPE} ${plasma_LIB_SRCS})
 
-target_link_libraries(plasma LINK_PRIVATE ${QT_QTUITOOLS_LIBRARY} 
${QT_QTWEBKIT_LIBRARY}
+target_link_libraries(plasma LINK_PRIVATE ${QT_QTUITOOLS_LIBRARY}
  ${QT_QTSCRIPT_LIBRARY} ${QT_QTNETWORK_LIBRARY} 
${QT_QTXML_LIBRARY} ${QT_QTSQL_LIBRARY} ${QT_QTDECLARATIVE_LIBRARY}
  ${KDE4_KDEUI_LIBS} ${KDE4_KDNSSD_LIBS} 
${KDE4_THREADWEAVER_LIBS} ${PLASMA_EXTRA_LIBS})
 
@@ -418,7 +417,6 @@ install(FILES
 widgets/textbrowser.h
 widgets/treeview.h
 widgets/textedit.h
-widgets/webview.h
 DESTINATION ${INCLUDE_INSTALL_DIR}/plasma/widgets COMPONENT Devel)
 
 install(FILES
Index: kdelibs-4.14.38/kdewidgets/CMakeLists.txt

commit kdelibs4 for openSUSE:Factory

2017-11-16 Thread root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2017-11-16 14:34:45

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


Package is "kdelibs4"

Thu Nov 16 14:34:45 2017 rev:299 rq:541004 version:4.14.38

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2017-10-23 16:29:31.163445635 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2017-11-16 14:34:47.184218571 +0100
@@ -1,0 +2,10 @@
+Thu Nov 09 23:13:38 CET 2017 - lbeltr...@kde.org
+
+- Update to 4.14.38
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.08.3.php
+- Changes since 4.14.37:
+  * Prepare for 4.14.38
+
+---
kdelibs4.changes: same change

Old:

  kdelibs-4.14.37.tar.xz

New:

  kdelibs-4.14.38.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.ZY86Vv/_old  2017-11-16 14:34:48.596167388 +0100
+++ /var/tmp/diff_new_pack.ZY86Vv/_new  2017-11-16 14:34:48.600167243 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.37
+Version:4.14.38
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.ZY86Vv/_old  2017-11-16 14:34:48.620166519 +0100
+++ /var/tmp/diff_new_pack.ZY86Vv/_new  2017-11-16 14:34:48.620166519 +0100
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.37
+Version:4.14.38
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4

++ kdelibs-4.14.37.tar.xz -> kdelibs-4.14.38.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.37.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.38.tar.xz differ: char 
27, line 1




commit kdelibs4 for openSUSE:Factory

2017-10-23 Thread root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2017-10-23 16:29:30

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


Package is "kdelibs4"

Mon Oct 23 16:29:30 2017 rev:298 rq:534694 version:4.14.37

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2017-08-24 17:50:30.864351021 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2017-10-23 16:29:31.163445635 +0200
@@ -1,0 +2,10 @@
+Tue Oct 17 07:58:31 UTC 2017 - wba...@tmo.at
+
+- Update to 17.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.08.2.php
+- Changes since 4.14.35:
+  * Fix build with >=enchant-2
+
+---
kdelibs4.changes: same change

Old:

  kdelibs-4.14.35.tar.xz

New:

  kdelibs-4.14.37.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.27THk3/_old  2017-10-23 16:29:37.923129170 +0200
+++ /var/tmp/diff_new_pack.27THk3/_new  2017-10-23 16:29:37.927128982 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.35
+Version:4.14.37
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.27THk3/_old  2017-10-23 16:29:37.951127859 +0200
+++ /var/tmp/diff_new_pack.27THk3/_new  2017-10-23 16:29:37.951127859 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.35
+Version:4.14.37
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4

++ kdelibs-4.14.35.tar.xz -> kdelibs-4.14.37.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.35.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.37.tar.xz differ: char 
27, line 1




commit kdelibs4 for openSUSE:Factory

2017-08-24 Thread root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2017-08-24 17:50:24

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


Package is "kdelibs4"

Thu Aug 24 17:50:24 2017 rev:297 rq:516497 version:4.14.35

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2017-07-25 11:35:29.213939196 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2017-08-24 17:50:30.864351021 +0200
@@ -1,0 +2,11 @@
+Fri Aug 11 23:32:45 UTC 2017 - christo...@krop.fr
+
+- Update to 17.08.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.08.0.php
+- Changes since 4.14.34:
+  * Support SVG in Konqueror's about page
+  * [cmake]: De-duplicate "else" to fix build with cmake-3.9
+
+---
kdelibs4.changes: same change

Old:

  kdelibs-4.14.34.tar.xz

New:

  kdelibs-4.14.35.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.7vyMev/_old  2017-08-24 17:50:36.943494769 +0200
+++ /var/tmp/diff_new_pack.7vyMev/_new  2017-08-24 17:50:36.959492516 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.34
+Version:4.14.35
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.7vyMev/_old  2017-08-24 17:50:37.123469419 +0200
+++ /var/tmp/diff_new_pack.7vyMev/_new  2017-08-24 17:50:37.139467166 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.34
+Version:4.14.35
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4

++ kdelibs-4.14.34.tar.xz -> kdelibs-4.14.35.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.34.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.35.tar.xz differ: char 
27, line 1




commit kdelibs4 for openSUSE:Factory

2017-07-25 Thread root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2017-07-25 11:35:27

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


Package is "kdelibs4"

Tue Jul 25 11:35:27 2017 rev:296 rq:510905 version:4.14.34

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2017-06-12 15:18:11.732872111 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2017-07-25 11:35:29.213939196 +0200
@@ -1,0 +2,10 @@
+Sat Jul 15 23:01:55 CEST 2017 - lbeltr...@kde.org
+
+- Update to 17.04.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.04.3.php
+- Changes since 4.14.33:
+  * Prepare for 4.14.34
+
+---
kdelibs4.changes: same change

Old:

  kdelibs-4.14.33.tar.xz

New:

  kdelibs-4.14.34.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.JDZMaD/_old  2017-07-25 11:35:32.093532538 +0200
+++ /var/tmp/diff_new_pack.JDZMaD/_new  2017-07-25 11:35:32.097531972 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.33
+Version:4.14.34
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.JDZMaD/_old  2017-07-25 11:35:32.117529149 +0200
+++ /var/tmp/diff_new_pack.JDZMaD/_new  2017-07-25 11:35:32.117529149 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.33
+Version:4.14.34
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4

++ kdelibs-4.14.33.tar.xz -> kdelibs-4.14.34.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.33.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.34.tar.xz differ: char 
27, line 1




commit kdelibs4 for openSUSE:Factory

2017-06-12 Thread root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2017-06-12 15:18:07

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


Package is "kdelibs4"

Mon Jun 12 15:18:07 2017 rev:295 rq:501991 version:4.14.33

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2017-05-22 10:45:49.418950694 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2017-06-12 15:18:11.732872111 +0200
@@ -1,0 +2,10 @@
+Wed Jun 07 17:43:06 CEST 2017 - lbeltr...@kde.org
+
+- Update to 4.14.33
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.04.2.php
+- Changes since 4.14.32:
+  * Prepare for 4.14.33
+
+---
kdelibs4.changes: same change

Old:

  kdelibs-4.14.32.tar.xz

New:

  kdelibs-4.14.33.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.Ar2O59/_old  2017-06-12 15:18:13.160670639 +0200
+++ /var/tmp/diff_new_pack.Ar2O59/_new  2017-06-12 15:18:13.164670075 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.32
+Version:4.14.33
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.Ar2O59/_old  2017-06-12 15:18:13.18889 +0200
+++ /var/tmp/diff_new_pack.Ar2O59/_new  2017-06-12 15:18:13.192666124 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.32
+Version:4.14.33
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4

++ kdelibs-4.14.32.tar.xz -> kdelibs-4.14.33.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.32.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.33.tar.xz differ: char 
25, line 1




commit kdelibs4 for openSUSE:Factory

2017-05-22 Thread root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2017-05-22 10:45:47

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


Package is "kdelibs4"

Mon May 22 10:45:47 2017 rev:294 rq:496084 version:4.14.32

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2017-05-08 19:00:51.186460254 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2017-05-22 10:45:49.418950694 +0200
@@ -1,0 +2,21 @@
+Wed May 17 20:38:06 CEST 2017 - lbeltr...@kde.org
+
+- Update to 4.14.32
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.04.1.php
+- Changes since 4.14.31:
+  * Verify that whoever is calling us is actually who he says he is
+  * Prepare for 4.14.32
+  * http slave: send error page after authorization failure (kde#373323)
+- Drop upstreamed patches:
+  * fix-kauth-bypass-CVE-2017-8422.patch
+
+---
+Wed May  3 12:02:09 UTC 2017 - alarr...@suse.com
+
+- Add fix-kauth-bypass-CVE-2017-8422.patch to fix an exploit
+  against kauth that would allow to bypass it (bsc#1036244,
+  CVE-2017-8422)
+
+---
kdelibs4.changes: same change

Old:

  kdelibs-4.14.31.tar.xz

New:

  kdelibs-4.14.32.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.XnnHWR/_old  2017-05-22 10:45:50.878744946 +0200
+++ /var/tmp/diff_new_pack.XnnHWR/_new  2017-05-22 10:45:50.882744382 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.31
+Version:4.14.32
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.XnnHWR/_old  2017-05-22 10:45:50.910740437 +0200
+++ /var/tmp/diff_new_pack.XnnHWR/_new  2017-05-22 10:45:50.914739873 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.31
+Version:4.14.32
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4

++ kdelibs-4.14.31.tar.xz -> kdelibs-4.14.32.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.31.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.32.tar.xz differ: char 
27, line 1




commit kdelibs4 for openSUSE:Factory

2017-05-08 Thread root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2017-05-08 19:00:49

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


Package is "kdelibs4"

Mon May  8 19:00:49 2017 rev:293 rq:490553 version:4.14.31

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2017-03-15 01:59:33.698554046 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2017-05-08 19:00:51.186460254 +0200
@@ -1,0 +2,22 @@
+Sun Apr 16 11:10:22 CEST 2017 - lbeltr...@kde.org
+
+- Update to 4.14.31
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.04.php
+- Changes since 4.14.30:
+  * Prepare for 4.14.31
+  * khtml: Delete pointer _before_ returning.
+
+
+---
+Wed Apr 12 20:25:28 CEST 2017 - lbeltr...@kde.org
+
+  * Update to 17.03.90
+
+---
+Thu Mar  9 18:57:57 UTC 2017 - alarr...@suse.com
+
+- Drop kio-sanitize-url-for-proxy.patch which was merged upstream
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2017-03-15 
01:59:33.738548391 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2017-05-08 
19:00:51.290445564 +0200
@@ -1,0 +2,17 @@
+Sun Apr 16 11:10:22 CEST 2017 - lbeltr...@kde.org
+
+- Update to 4.14.31
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.04.php
+- Changes since 4.14.30:
+  * Prepare for 4.14.31
+  * khtml: Delete pointer _before_ returning.
+
+
+---
+Wed Apr 12 20:25:28 CEST 2017 - lbeltr...@kde.org
+
+  * Update to 17.03.90
+
+---

Old:

  kdelibs-4.14.30.tar.xz

New:

  kdelibs-4.14.31.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.Wg4hF2/_old  2017-05-08 19:00:53.098190192 +0200
+++ /var/tmp/diff_new_pack.Wg4hF2/_new  2017-05-08 19:00:53.102189627 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.30
+Version:4.14.31
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.Wg4hF2/_old  2017-05-08 19:00:53.134185107 +0200
+++ /var/tmp/diff_new_pack.Wg4hF2/_new  2017-05-08 19:00:53.134185107 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.30
+Version:4.14.31
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -125,7 +125,7 @@
 branding.
 
 # KDE  292715  292723 292725 292764 292765 
-# kconfig_compiler pending upstream http://lists.kde.org/?l=kde-doc-english=132791095310563=2 >
+# kconfig_compiler pending upstream 
 %define kde_auto_man kde4-config kunittestmodrunner meinproc4 
 
 %prep

++ kdelibs-4.14.30.tar.xz -> kdelibs-4.14.31.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.30.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.31.tar.xz differ: char 
27, line 1




commit kdelibs4 for openSUSE:Factory

2017-03-14 Thread root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2017-03-15 01:02:07

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


Package is "kdelibs4"

Wed Mar 15 01:02:07 2017 rev:292 rq:478311 version:4.14.30

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2017-02-13 07:45:14.395544907 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2017-03-15 01:59:33.698554046 +0100
@@ -1,0 +2,18 @@
+Thu Mar  9 12:46:33 CET 2017 - lbeltr...@kde.org
+
+- Update to 4.14.30
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-16.12.3.php
+- Changes since 4.14.29:
+  * Prepare for 4.14.30
+  * Sanitize URLs before passing them to FindProxyForURL
+
+
+---
+Wed Mar  1 20:55:31 UTC 2017 - fab...@ritter-vogt.de
+
+- Add upstream patch to fix kio security issue (boo#1027520)
+  * kio-sanitize-url-for-proxy.patch
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2017-03-05 
17:56:54.492077382 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2017-03-15 
01:59:33.738548391 +0100
@@ -1,0 +2,17 @@
+Thu Mar  9 18:57:57 UTC 2017 - alarr...@suse.com
+
+- Drop kio-sanitize-url-for-proxy.patch which was merged upstream
+
+---
+Thu Mar  9 12:46:33 CET 2017 - lbeltr...@kde.org
+
+- Update to 4.14.30
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-16.12.3.php
+- Changes since 4.14.29:
+  * Prepare for 4.14.30
+  * Sanitize URLs before passing them to FindProxyForURL
+
+
+---

Old:

  kdelibs-4.14.29.tar.xz
  kio-sanitize-url-for-proxy.patch

New:

  kdelibs-4.14.30.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.5S0blJ/_old  2017-03-15 01:59:35.686273029 +0100
+++ /var/tmp/diff_new_pack.5S0blJ/_new  2017-03-15 01:59:35.686273029 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.29
+Version:4.14.30
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.5S0blJ/_old  2017-03-15 01:59:35.706270202 +0100
+++ /var/tmp/diff_new_pack.5S0blJ/_new  2017-03-15 01:59:35.714269071 +0100
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.29
+Version:4.14.30
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -88,8 +88,6 @@
 Patch15:0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch
 # PATCH-FIX-OPENSUSE gcc6-fix-errors.patch -- Fix errors spotted by GCC6.
 Patch17:gcc6-fix-errors.patch
-# PATCH-FIX-UPSTREAM kio-sanitize-url-for-proxy.patch
-Patch18:kio-sanitize-url-for-proxy.patch
 PreReq: permissions
 Requires:   libattica0_4 >= %( echo `rpm -q --queryformat '%{VERSION}' 
libattica-devel`)
 Recommends: media-player-info
@@ -146,7 +144,6 @@
 %patch12 -p1
 %patch15 -p1
 %patch17
-%patch18 -p1
 
 %build
   EXTRA_FLAGS="-DLIB_INSTALL_DIR=%{_kde4_libdir} \

++ kdelibs-4.14.29.tar.xz -> kdelibs-4.14.30.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.29.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.30.tar.xz differ: char 
27, line 1




commit kdelibs4 for openSUSE:Factory

2017-03-05 Thread root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2017-03-05 17:56:53

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


Package is "kdelibs4"

Sun Mar  5 17:56:53 2017 rev:291 rq:461717 version:4.14.29

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2017-02-13 
07:45:14.487531662 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2017-03-05 
17:56:54.492077382 +0100
@@ -1,0 +2,6 @@
+Wed Mar  1 20:55:31 UTC 2017 - fab...@ritter-vogt.de
+
+- Add upstream patch to fix kio security issue (boo#1027520)
+  * kio-sanitize-url-for-proxy.patch
+
+---

New:

  kio-sanitize-url-for-proxy.patch



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.NbcPjs/_old  2017-03-05 17:56:55.423945484 +0100
+++ /var/tmp/diff_new_pack.NbcPjs/_new  2017-03-05 17:56:55.427944918 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4-apidocs
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.NbcPjs/_old  2017-03-05 17:56:55.443942654 +0100
+++ /var/tmp/diff_new_pack.NbcPjs/_new  2017-03-05 17:56:55.447942088 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -88,6 +88,8 @@
 Patch15:0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch
 # PATCH-FIX-OPENSUSE gcc6-fix-errors.patch -- Fix errors spotted by GCC6.
 Patch17:gcc6-fix-errors.patch
+# PATCH-FIX-UPSTREAM kio-sanitize-url-for-proxy.patch
+Patch18:kio-sanitize-url-for-proxy.patch
 PreReq: permissions
 Requires:   libattica0_4 >= %( echo `rpm -q --queryformat '%{VERSION}' 
libattica-devel`)
 Recommends: media-player-info
@@ -144,6 +146,7 @@
 %patch12 -p1
 %patch15 -p1
 %patch17
+%patch18 -p1
 
 %build
   EXTRA_FLAGS="-DLIB_INSTALL_DIR=%{_kde4_libdir} \

++ kio-sanitize-url-for-proxy.patch ++
>From 1804c2fde7bf4e432c6cf5bb8cce5701c7010559 Mon Sep 17 00:00:00 2001
From: Albert Astals Cid 
Date: Tue, 28 Feb 2017 19:08:50 +0100
Subject: [PATCH] Sanitize URLs before passing them to FindProxyForURL

Remove user/password information
For https: remove path and query

Backport from kio f9d0cb47cf94e209f6171ac0e8d774e68156a6e4
---
 kio/misc/kpac/script.cpp | 11 +--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/kio/misc/kpac/script.cpp b/kio/misc/kpac/script.cpp
index a595301..9ab360a 100644
--- a/kio/misc/kpac/script.cpp
+++ b/kio/misc/kpac/script.cpp
@@ -754,9 +754,16 @@ namespace KPAC
 }
 }
 
+KUrl cleanUrl = url;
+cleanUrl.setUserInfo(QString());
+if (cleanUrl.scheme().toLower() == QLatin1String("https")) {
+cleanUrl.setPath(QString());
+cleanUrl.setQuery(QString());
+}
+
 QScriptValueList args;
-args << url.url();
-args << url.host();
+args << cleanUrl.url();
+args << cleanUrl.host();
 
 QScriptValue result = func.call(QScriptValue(), args);
 if (result.isError()) {



commit kdelibs4 for openSUSE:Factory

2017-02-12 Thread root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2017-02-13 07:45:09

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


Package is "kdelibs4"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2017-01-25 23:14:44.860476483 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2017-02-13 07:45:14.395544907 +0100
@@ -1,0 +2,8 @@
+Thu Feb  9 07:29:12 UTC 2017 - lbeltr...@kde.org
+
+- Update to KDE Applications 16.12.2
+   * KDE Applications 16.12.2
+   * https://www.kde.org/announcements/announce-applications-16.12.2.php
+
+
+---
kdelibs4.changes: same change

Old:

  kdelibs-4.14.28.tar.xz

New:

  kdelibs-4.14.29.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.g81Kwr/_old  2017-02-13 07:45:17.243134870 +0100
+++ /var/tmp/diff_new_pack.g81Kwr/_new  2017-02-13 07:45:17.243134870 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.28
+Version:4.14.29
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.g81Kwr/_old  2017-02-13 07:45:17.267131415 +0100
+++ /var/tmp/diff_new_pack.g81Kwr/_new  2017-02-13 07:45:17.271130839 +0100
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.28
+Version:4.14.29
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4

++ kdelibs-4.14.28.tar.xz -> kdelibs-4.14.29.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.28.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.29.tar.xz differ: char 
27, line 1




commit kdelibs4 for openSUSE:Factory

2017-01-25 Thread root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2017-01-25 23:14:43

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


Package is "kdelibs4"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2016-12-17 11:02:24.475423523 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2017-01-25 23:14:44.860476483 +0100
@@ -1,0 +2,7 @@
+Sat Jan 14 10:04:42 UTC 2017 - lbeltr...@kde.org
+
+- Update to KDE Applications 16.12.1
+   * KDE Applications 16.12.1
+   * https://www.kde.org/announcements/announce-applications-16.12.1.php
+
+---
kdelibs4.changes: same change

Old:

  kdelibs-4.14.27.tar.xz

New:

  kdelibs-4.14.28.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.ZiovkM/_old  2017-01-25 23:14:46.264264798 +0100
+++ /var/tmp/diff_new_pack.ZiovkM/_new  2017-01-25 23:14:46.268264195 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.27
+Version:4.14.28
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.ZiovkM/_old  2017-01-25 23:14:46.296259973 +0100
+++ /var/tmp/diff_new_pack.ZiovkM/_new  2017-01-25 23:14:46.300259370 +0100
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.27
+Version:4.14.28
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4

++ kdelibs-4.14.27.tar.xz -> kdelibs-4.14.28.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.27.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.28.tar.xz differ: char 
27, line 1




commit kdelibs4 for openSUSE:Factory

2016-10-18 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2016-10-18 10:12:43

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


Package is "kdelibs4"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2016-09-14 23:03:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2016-10-18 10:12:43.0 +0200
@@ -2 +2 @@
-Fri Sep  9 08:11:13 UTC 2016 - tittiatc...@gmail.com
+Fri Sep  9 08:10:47 UTC 2016 - tittiatc...@gmail.com
@@ -7,0 +8 @@
+- Drop upstreamed patch KDE_HAVE_GCC_VISIBILITY-fix.patch
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2016-09-14 
23:03:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2016-10-18 
10:12:43.0 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 20:47:44 UTC 2016 - lbeltr...@kde.org
+
+- KDE Applications 16.08.2
+https://www.kde.org/announcements/announce-applications-16.08.2.php
+
+- Drop upstreamed patch omit-strigi.patch
+
+---

Old:

  kdelibs-4.14.24.tar.xz
  omit-strigi.patch

New:

  kdelibs-4.14.25.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.mq2CAp/_old  2016-10-18 10:12:45.0 +0200
+++ /var/tmp/diff_new_pack.mq2CAp/_new  2016-10-18 10:12:45.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.24
+Version:4.14.25
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.mq2CAp/_old  2016-10-18 10:12:45.0 +0200
+++ /var/tmp/diff_new_pack.mq2CAp/_new  2016-10-18 10:12:45.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.24
+Version:4.14.25
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -86,8 +86,6 @@
 # PATCH-FIX-OPENSUSE 
0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch -- Nepomuk is only 
used in a private header, browserrun_p.h,
 # thus it is not needed as KParts public dependancy, makes it possible to drop 
libsoprano-devel from libkde4-devel Requires
 Patch15:0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch
-# PATCH-FIX-OPENSUSE omit-strigi.patch -- Drop the required strigi so that we 
can drop the package in Factory
-Patch16:omit-strigi.patch
 # PATCH-FIX-OPENSUSE gcc6-fix-errors.patch -- Fix errors spotted by GCC6.
 Patch17:gcc6-fix-errors.patch
 PreReq: permissions
@@ -145,7 +143,6 @@
 %patch11 -p1
 %patch12 -p1
 %patch15 -p1
-%patch16 -p1
 %patch17
 
 %build

++ kdelibs-4.14.24.tar.xz -> kdelibs-4.14.25.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.24.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.25.tar.xz differ: char 
27, line 1





commit kdelibs4 for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2016-09-14 23:03:03

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


Package is "kdelibs4"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2016-08-29 14:33:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2016-09-14 23:03:06.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:11:13 UTC 2016 - tittiatc...@gmail.com
+
+- Update to 4.14.24
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---
@@ -6,0 +15,3 @@
+
+- Add upstream patch KDE_HAVE_GCC_VISIBILITY-fix.patch to fix the
+  value so that GCC6 is taken into account
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2016-08-29 
14:33:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2016-09-14 
23:03:06.0 +0200
@@ -1,0 +2,9 @@
+Fri Sep  9 08:10:47 UTC 2016 - tittiatc...@gmail.com
+
+- Update to 4.14.24
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+- Drop upstreamed patch KDE_HAVE_GCC_VISIBILITY-fix.patch
+
+---

Old:

  KDE_HAVE_GCC_VISIBILITY-fix.patch
  kdelibs-4.14.23.tar.xz

New:

  kdelibs-4.14.24.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.e6cD9E/_old  2016-09-14 23:03:07.0 +0200
+++ /var/tmp/diff_new_pack.e6cD9E/_new  2016-09-14 23:03:07.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.23
+Version:4.14.24
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.e6cD9E/_old  2016-09-14 23:03:07.0 +0200
+++ /var/tmp/diff_new_pack.e6cD9E/_new  2016-09-14 23:03:07.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.23
+Version:4.14.24
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -90,8 +90,6 @@
 Patch16:omit-strigi.patch
 # PATCH-FIX-OPENSUSE gcc6-fix-errors.patch -- Fix errors spotted by GCC6.
 Patch17:gcc6-fix-errors.patch
-# PATCH-FIX-UPSTREAM KDE_HAVE_GCC_VISIBILITY-fix.patch -- fix wrong value on 
systems with GCC6
-Patch18:KDE_HAVE_GCC_VISIBILITY-fix.patch
 PreReq: permissions
 Requires:   libattica0_4 >= %( echo `rpm -q --queryformat '%{VERSION}' 
libattica-devel`)
 Recommends: media-player-info
@@ -149,7 +147,6 @@
 %patch15 -p1
 %patch16 -p1
 %patch17
-%patch18 -p1
 
 %build
   EXTRA_FLAGS="-DLIB_INSTALL_DIR=%{_kde4_libdir} \

++ kdelibs-4.14.23.tar.xz -> kdelibs-4.14.24.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.23.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.24.tar.xz differ: char 
27, line 1





commit kdelibs4 for openSUSE:Factory

2016-08-29 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2016-08-29 14:33:44

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


Package is "kdelibs4"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2016-07-21 07:42:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2016-08-29 14:33:47.0 +0200
@@ -1,0 +2,12 @@
+Sat Aug 14 18:26:16 UTC 2016 - tittiatc...@gmail.com
+
+- Update to 4.14.23
+   * KDE Applications 16.08.0
+   * https://www.kde.org/announcements/announce-applications-16.08.0.php
+
+---
+Tue Aug  9 09:26:23 UTC 2016 - adr...@suse.de
+
+- get rid of opensuse_bs macro
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2016-06-20 
11:06:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2016-08-29 
14:33:50.0 +0200
@@ -1,0 +2,15 @@
+Sat Aug 14 18:26:16 UTC 2016 - tittiatc...@gmail.com
+
+- Update to 4.14.23
+   * KDE Applications 16.08.0
+   * https://www.kde.org/announcements/announce-applications-16.08.0.php
+
+- Add upstream patch KDE_HAVE_GCC_VISIBILITY-fix.patch to fix the
+  value so that GCC6 is taken into account
+
+---
+Tue Aug  9 09:26:23 UTC 2016 - adr...@suse.de
+
+- get rid of opensuse_bs macro
+
+---

Old:

  kdelibs-4.14.22.tar.xz

New:

  KDE_HAVE_GCC_VISIBILITY-fix.patch
  kdelibs-4.14.23.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.pPVimw/_old  2016-08-29 14:33:52.0 +0200
+++ /var/tmp/diff_new_pack.pPVimw/_new  2016-08-29 14:33:52.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.22
+Version:4.14.23
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+
@@ -40,6 +40,8 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
+%define debug_package_requires %{name} = %{version}-%{release} libqt4-debuginfo
+
 %description
 This package includes the KDE 4 API documentation in HTML
 format for easy browsing.

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.pPVimw/_old  2016-08-29 14:33:52.0 +0200
+++ /var/tmp/diff_new_pack.pPVimw/_new  2016-08-29 14:33:52.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.22
+Version:4.14.23
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -90,6 +90,8 @@
 Patch16:omit-strigi.patch
 # PATCH-FIX-OPENSUSE gcc6-fix-errors.patch -- Fix errors spotted by GCC6.
 Patch17:gcc6-fix-errors.patch
+# PATCH-FIX-UPSTREAM KDE_HAVE_GCC_VISIBILITY-fix.patch -- fix wrong value on 
systems with GCC6
+Patch18:KDE_HAVE_GCC_VISIBILITY-fix.patch
 PreReq: permissions
 Requires:   libattica0_4 >= %( echo `rpm -q --queryformat '%{VERSION}' 
libattica-devel`)
 Recommends: media-player-info
@@ -104,10 +106,6 @@
 %requires_geshared-mime-info
 %requires_gelibqt4-x11
 
-%if 0%{?opensuse_bs}
-%define debug_package_requires %{name} = %{version}-%{release} libqt4-debuginfo
-%endif
-
 Requires:   %{name}-branding = %{_kde_branding_version}
 
 %description
@@ -151,6 +149,7 @@
 %patch15 -p1
 %patch16 -p1
 %patch17
+%patch18 -p1
 
 %build
   EXTRA_FLAGS="-DLIB_INSTALL_DIR=%{_kde4_libdir} \

++ KDE_HAVE_GCC_VISIBILITY-fix.patch ++
From: David Faure 
Date: Tue, 16 Aug 2016 13:50:57 +
Subject: Fix wrong value of __KDE_HAVE_GCC_VISIBILITY on systems with gcc 6.
X-Git-Url: 
http://quickgit.kde.org/?p=kdelibs.git=commitdiff=e9b25c7c040d8526fe8675b97d1067c8ffa7249f
---
Fix wrong value of __KDE_HAVE_GCC_VISIBILITY on systems with gcc 6.

Clearly the author of this regexp, in 2006, thought gcc would never
hit version 6 :-)

REVIEW: 128697
---


--- a/cmake/modules/FindKDE4Internal.cmake
+++ b/cmake/modules/FindKDE4Internal.cmake
@@ -1221,7 +1221,7 @@
# get the gcc version
exec_program(${CMAKE_C_COMPILER} ARGS ${CMAKE_C_COMPILER_ARG1} --version 
OUTPUT_VARIABLE _gcc_version_info)
 
-   string (REGEX MATCH "[345]\\.[0-9]\\.[0-9]" _gcc_version 
"${_gcc_version_info}")
+   string (REGEX MATCH "[3-9]\\.[0-9]\\.[0-9]" _gcc_version 
"${_gcc_version_info}")
# gcc on mac just reports: "gcc (GCC) 3.3 20030304 ..." without the patch 
level, handle this here:
if (NOT _gcc_version)
   string 

commit kdelibs4 for openSUSE:Factory

2016-07-20 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2016-07-21 07:42:08

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


Package is "kdelibs4"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2016-06-20 11:06:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2016-07-21 07:42:10.0 +0200
@@ -2 +2,6 @@
-Fri Jun 10 18:26:43 UTC 2016 - tittiatc...@gmail.com
+Tue Jun 14 22:20:46 UTC 2016 - wba...@tmo.at
+
+- Use shared-mime-info macros (boo#979301)
+
+---
+Fri Jun 10 18:26:16 UTC 2016 - tittiatc...@gmail.com
@@ -7,0 +13,5 @@
+
+---
+Wed May 25 07:55:08 UTC 2016 - martin.li...@suse.com
+
+- Add patch gcc6-fix-errors.patch to fix errors reported by GCC6.

Old:

  kdelibs-4.14.21.tar.xz

New:

  kdelibs-4.14.22.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.1XS6oA/_old  2016-07-21 07:42:11.0 +0200
+++ /var/tmp/diff_new_pack.1XS6oA/_new  2016-07-21 07:42:11.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.21
+Version:4.14.22
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.1XS6oA/_old  2016-07-21 07:42:11.0 +0200
+++ /var/tmp/diff_new_pack.1XS6oA/_new  2016-07-21 07:42:11.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.21
+Version:4.14.22
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4

++ gcc6-fix-errors.patch ++
--- /var/tmp/diff_new_pack.1XS6oA/_old  2016-07-21 07:42:11.0 +0200
+++ /var/tmp/diff_new_pack.1XS6oA/_new  2016-07-21 07:42:11.0 +0200
@@ -1,45 +1,3 @@
 solid/solid/backends/shared/cpufeatures.cpp
-+++ solid/solid/backends/shared/cpufeatures.cpp
-@@ -51,23 +51,23 @@
- #endif
- 
- #ifdef __i386__
--  #define ASM_REG(reg)  "%e"reg
--  #define ASM_POP(reg)  "popl   %%e"reg" \n\t"
--  #define ASM_PUSH(reg) "pushl  %%e"reg" \n\t"
--  #define ASM_XOR_REG(reg1, reg2)   "xorl   %%e"reg1", %%e"reg2" \n\t"
--  #define ASM_XOR_VAR(var, reg) "xorl   "var", %%e"reg"  \n\t"
--  #define ASM_CMP_REG(reg1, reg2)   "cmpl   %%e"reg1", %%e"reg2" \n\t"
--  #define ASM_MOV_REG(reg1, reg2)   "movl   %%e"reg1", %%e"reg2" \n\t"
--  #define ASM_MOV_VAR(var, reg) "movl   "var", %%e"reg"  \n\t"
-+  #define ASM_REG(reg)  "%e" reg
-+  #define ASM_POP(reg)  "popl   %%e" reg " \n\t"
-+  #define ASM_PUSH(reg) "pushl  %%e" reg " \n\t"
-+  #define ASM_XOR_REG(reg1, reg2)   "xorl   %%e" reg1 ", %%e" reg2 " \n\t"
-+  #define ASM_XOR_VAR(var, reg) "xorl   " var ", %%e" reg "  \n\t"
-+  #define ASM_CMP_REG(reg1, reg2)   "cmpl   %%e" reg1 ", %%e" reg2 " \n\t"
-+  #define ASM_MOV_REG(reg1, reg2)   "movl   %%e" reg1 ", %%e" reg2 " \n\t"
-+  #define ASM_MOV_VAR(var, reg) "movl   " var ", %%e" reg "  \n\t"
- #elif defined(__x86_64__)
--  #define ASM_REG(reg)  "%r"reg
--  #define ASM_POP(reg)  "popq   %%r"reg" \n\t"
--  #define ASM_PUSH(reg) "pushq  %%r"reg" \n\t"
--  #define ASM_XOR_REG(reg1, reg2)   "xorq   %%r"reg1", %%r"reg2" \n\t"
--  #define ASM_XOR_VAR(var, reg) "xorq   "var", %%r"reg"  \n\t"
--  #define ASM_CMP_REG(reg1, reg2)   "cmpq   %%r"reg1", %%r"reg2" \n\t"
--  #define ASM_MOV_REG(reg1, reg2)   "movq   %%r"reg1", %%r"reg2" \n\t"
--  #define ASM_MOV_VAR(var, reg) "movq   "var", %%r"reg"  \n\t"
-+  #define ASM_REG(reg)  "%r" reg
-+  #define ASM_POP(reg)  "popq   %%r" reg" \n\t"
-+  #define ASM_PUSH(reg) "pushq  %%r" reg" \n\t"
-+  #define ASM_XOR_REG(reg1, reg2)   "xorq   %%r" reg1 ", %%r" reg2 " \n\t"
-+  #define ASM_XOR_VAR(var, reg) "xorq   " var ", %%r" reg"   \n\t"
-+  #define ASM_CMP_REG(reg1, reg2)   "cmpq   %%r" reg1 ", %%r" reg2 " \n\t"
-+  #define ASM_MOV_REG(reg1, reg2)   "movq   %%r" reg1 ", %%r" reg2 " \n\t"
-+  #define ASM_MOV_VAR(var, reg) "movq   " var ", %%r" reg "  \n\t"
- #endif
- 
- #ifdef __PPC__
 --- kdecore/kdefakes.h.cmake   2016-05-25 09:47:03.493039540 +0200
 +++ kdecore/kdefakes.h.cmake   2016-05-25 09:47:27.805502506 +0200
 @@ -174,10 +174,10 @@

++ kdelibs-4.14.21.tar.xz -> kdelibs-4.14.22.tar.xz ++

commit kdelibs4 for openSUSE:Factory

2016-06-20 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2016-06-20 11:06:04

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


Package is "kdelibs4"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2016-05-31 12:23:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2016-06-20 11:06:06.0 +0200
@@ -1,0 +2,8 @@
+Fri Jun 10 18:26:43 UTC 2016 - tittiatc...@gmail.com
+
+- Update to 4.14.21
+   * KDE Applications 16.04.2
+   * https://www.kde.org/announcements/announce-applications-16.04.2.php
+
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2016-05-31 
12:23:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2016-06-20 
11:06:06.0 +0200
@@ -1,0 +2,13 @@
+Tue Jun 14 22:20:46 UTC 2016 - wba...@tmo.at
+
+- Use shared-mime-info macros (boo#979301)
+
+---
+Fri Jun 10 18:26:16 UTC 2016 - tittiatc...@gmail.com
+
+- Update to 4.14.21
+   * KDE Applications 16.04.2
+   * https://www.kde.org/announcements/announce-applications-16.04.2.php
+
+
+---

Old:

  kdelibs-4.14.19.tar.xz

New:

  kdelibs-4.14.21.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.hmxIRx/_old  2016-06-20 11:06:08.0 +0200
+++ /var/tmp/diff_new_pack.hmxIRx/_new  2016-06-20 11:06:08.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.19
+Version:4.14.21
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.hmxIRx/_old  2016-06-20 11:06:08.0 +0200
+++ /var/tmp/diff_new_pack.hmxIRx/_new  2016-06-20 11:06:08.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.19
+Version:4.14.21
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -208,13 +208,13 @@
 
 %post
 /sbin/ldconfig
-%{_kde4_bindir}/update-mime-database %{_datadir}/mime > /dev/null 2>&1 || :
+%mime_database_post
 
 %set_permissions %{_kde4_libexecdir}/start_kdeinit
 
 %postun
 /sbin/ldconfig
-%{_kde4_bindir}/update-mime-database %{_datadir}/mime > /dev/null 2>&1 || :
+%mime_database_postun
 
 %verifyscript
 %verify_permissions -e %{_kde4_libexecdir}/start_kdeinit

++ kdelibs-4.14.19.tar.xz -> kdelibs-4.14.21.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.19.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.21.tar.xz differ: char 
26, line 1





commit kdelibs4 for openSUSE:Factory

2016-05-31 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2016-05-31 12:22:58

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


Package is "kdelibs4"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2016-03-26 15:14:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2016-05-31 12:23:00.0 +0200
@@ -1,0 +2,17 @@
+Sun Apr 17 06:42:39 UTC 2016 - tittiatc...@gmail.com
+
+- Update to 4.14.19
+   * KDE Applications 16.04.0
+   * https://www.kde.org/announcements/announce-applications-16.04.0.php
+
+
+---
+Sun Mar 13 15:55:15 UTC 2016 - tittiatc...@gmail.com
+
+- Update to 4.14.18
+   * KDE Applications 15.12.3 
+   * https://www.kde.org/announcements/announce-applications-15.12.3.php
+   * boo#970855
+
+
+---
@@ -4 +21 @@
-- Update to KDE Applications 4.14.17
+- Update to 4.14.17
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2016-03-26 
15:14:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2016-05-31 
12:23:00.0 +0200
@@ -1,0 +2,13 @@
+Wed May 25 07:55:08 UTC 2016 - martin.li...@suse.com
+
+- Add patch gcc6-fix-errors.patch to fix errors reported by GCC6.
+
+---
+Sun Apr 17 06:42:39 UTC 2016 - tittiatc...@gmail.com
+
+- Update to 4.14.19
+   * KDE Applications 16.04.0
+   * https://www.kde.org/announcements/announce-applications-16.04.0.php
+
+
+---

Old:

  kdelibs-4.14.18.tar.xz

New:

  gcc6-fix-errors.patch
  kdelibs-4.14.19.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.aoiH0d/_old  2016-05-31 12:23:02.0 +0200
+++ /var/tmp/diff_new_pack.aoiH0d/_new  2016-05-31 12:23:02.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.18
+Version:4.14.19
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.aoiH0d/_old  2016-05-31 12:23:02.0 +0200
+++ /var/tmp/diff_new_pack.aoiH0d/_new  2016-05-31 12:23:02.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.18
+Version:4.14.19
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -88,6 +88,8 @@
 Patch15:0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch
 # PATCH-FIX-OPENSUSE omit-strigi.patch -- Drop the required strigi so that we 
can drop the package in Factory
 Patch16:omit-strigi.patch
+# PATCH-FIX-OPENSUSE gcc6-fix-errors.patch -- Fix errors spotted by GCC6.
+Patch17:gcc6-fix-errors.patch
 PreReq: permissions
 Requires:   libattica0_4 >= %( echo `rpm -q --queryformat '%{VERSION}' 
libattica-devel`)
 Recommends: media-player-info
@@ -148,6 +150,7 @@
 %patch12 -p1
 %patch15 -p1
 %patch16 -p1
+%patch17
 
 %build
   EXTRA_FLAGS="-DLIB_INSTALL_DIR=%{_kde4_libdir} \

++ gcc6-fix-errors.patch ++
--- solid/solid/backends/shared/cpufeatures.cpp
+++ solid/solid/backends/shared/cpufeatures.cpp
@@ -51,23 +51,23 @@
 #endif
 
 #ifdef __i386__
-  #define ASM_REG(reg)  "%e"reg
-  #define ASM_POP(reg)  "popl   %%e"reg" \n\t"
-  #define ASM_PUSH(reg) "pushl  %%e"reg" \n\t"
-  #define ASM_XOR_REG(reg1, reg2)   "xorl   %%e"reg1", %%e"reg2" \n\t"
-  #define ASM_XOR_VAR(var, reg) "xorl   "var", %%e"reg"  \n\t"
-  #define ASM_CMP_REG(reg1, reg2)   "cmpl   %%e"reg1", %%e"reg2" \n\t"
-  #define ASM_MOV_REG(reg1, reg2)   "movl   %%e"reg1", %%e"reg2" \n\t"
-  #define ASM_MOV_VAR(var, reg) "movl   "var", %%e"reg"  \n\t"
+  #define ASM_REG(reg)  "%e" reg
+  #define ASM_POP(reg)  "popl   %%e" reg " \n\t"
+  #define ASM_PUSH(reg) "pushl  %%e" reg " \n\t"
+  #define ASM_XOR_REG(reg1, reg2)   "xorl   %%e" reg1 ", %%e" reg2 " \n\t"
+  #define ASM_XOR_VAR(var, reg) "xorl   " var ", %%e" reg "  \n\t"
+  #define ASM_CMP_REG(reg1, reg2)   "cmpl   %%e" reg1 ", %%e" reg2 " \n\t"
+  #define ASM_MOV_REG(reg1, reg2)   "movl   %%e" reg1 ", %%e" reg2 " \n\t"
+  #define ASM_MOV_VAR(var, reg) "movl   " var ", %%e" reg "  \n\t"
 #elif defined(__x86_64__)
-  #define ASM_REG(reg)  "%r"reg
-  #define ASM_POP(reg)  "popq   %%r"reg" \n\t"
-  

commit kdelibs4 for openSUSE:Factory

2016-03-26 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2016-03-26 15:14:45

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


Package is "kdelibs4"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2016-02-22 10:15:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2016-03-26 15:14:46.0 +0100
@@ -8,0 +9 @@
+
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2016-02-22 
10:15:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2016-03-26 
15:14:46.0 +0100
@@ -1,0 +2,9 @@
+Sun Mar 13 15:55:15 UTC 2016 - tittiatc...@gmail.com
+
+- Update to 4.14.18
+   * KDE Applications 15.12.3 
+   * https://www.kde.org/announcements/announce-applications-15.12.3.php
+   * boo#970855
+
+
+---
@@ -4 +13 @@
-- Update to KDE Applications 4.14.17
+- Update to 4.14.17

Old:

  kdelibs-4.14.17.tar.xz

New:

  kdelibs-4.14.18.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.pSrOea/_old  2016-03-26 15:14:48.0 +0100
+++ /var/tmp/diff_new_pack.pSrOea/_new  2016-03-26 15:14:48.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.17
+Version:4.14.18
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.pSrOea/_old  2016-03-26 15:14:48.0 +0100
+++ /var/tmp/diff_new_pack.pSrOea/_new  2016-03-26 15:14:48.0 +0100
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.17
+Version:4.14.18
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4

++ kdelibs-4.14.17.tar.xz -> kdelibs-4.14.18.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.17.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.18.tar.xz differ: char 
26, line 1





commit kdelibs4 for openSUSE:Factory

2016-02-22 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2016-02-22 10:15:51

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


Package is "kdelibs4"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2016-01-23 01:12:21.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2016-02-22 10:15:53.0 +0100
@@ -1,0 +2,15 @@
+Sat Feb 13 08:07:30 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 4.14.17
+   * KDE Applications 15.12.2 
+   * https://www.kde.org/announcements/announce-applications-15.12.2.php
+   * boo#966605
+
+---
+Sun Jan 31 20:45:01 UTC 2016 - tittiatc...@gmail.com
+
+- Add patch omit-strigi.patch to make strigi optional. For the 
+  Plasma5 desktop this is no longer needed/used and it would 
+  make it possible to drop the strigi package
+
+---
kdelibs4.changes: same change

Old:

  kdelibs-4.14.16.tar.xz

New:

  kdelibs-4.14.17.tar.xz
  omit-strigi.patch



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.Kjfqd4/_old  2016-02-22 10:15:54.0 +0100
+++ /var/tmp/diff_new_pack.Kjfqd4/_new  2016-02-22 10:15:54.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.16
+Version:4.14.17
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.Kjfqd4/_old  2016-02-22 10:15:54.0 +0100
+++ /var/tmp/diff_new_pack.Kjfqd4/_new  2016-02-22 10:15:54.0 +0100
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.16
+Version:4.14.17
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -53,7 +53,6 @@
 BuildRequires:  pcre-devel
 BuildRequires:  phonon-devel
 BuildRequires:  shared-mime-info
-BuildRequires:  strigi-devel
 BuildRequires:  update-desktop-files
 BuildRequires:  utempter-devel
 BuildRequires:  xz
@@ -87,6 +86,8 @@
 # PATCH-FIX-OPENSUSE 
0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch -- Nepomuk is only 
used in a private header, browserrun_p.h,
 # thus it is not needed as KParts public dependancy, makes it possible to drop 
libsoprano-devel from libkde4-devel Requires
 Patch15:0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch
+# PATCH-FIX-OPENSUSE omit-strigi.patch -- Drop the required strigi so that we 
can drop the package in Factory
+Patch16:omit-strigi.patch
 PreReq: permissions
 Requires:   libattica0_4 >= %( echo `rpm -q --queryformat '%{VERSION}' 
libattica-devel`)
 Recommends: media-player-info
@@ -146,6 +147,7 @@
 %patch11 -p1
 %patch12 -p1
 %patch15 -p1
+%patch16 -p1
 
 %build
   EXTRA_FLAGS="-DLIB_INSTALL_DIR=%{_kde4_libdir} \

++ kdelibs-4.14.16.tar.xz -> kdelibs-4.14.17.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.16.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.17.tar.xz differ: char 
26, line 1

++ omit-strigi.patch ++
diff -urB kdelibs-4.14.16/CMakeLists.txt new/CMakeLists.txt
--- kdelibs-4.14.16/CMakeLists.txt  2016-01-07 00:02:22.0 +0100
+++ new/CMakeLists.txt  2016-01-31 21:41:43.339617151 +0100
@@ -86,7 +86,7 @@
 set (STRIGI_TYPE "OPTIONAL")
 set (STRIGI_EXTRA_TEXT "")
 else (WIN32)
-set (STRIGI_TYPE "REQUIRED")
+set (STRIGI_TYPE "OPTIONAL")
 set (STRIGI_EXTRA_TEXT "Required by some critical kioslaves")
 endif (WIN32)
 set_package_properties(Strigi PROPERTIES DESCRIPTION "Desktop indexing and 
search support"




commit kdelibs4 for openSUSE:Factory

2016-01-22 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2016-01-23 01:10:41

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


Package is "kdelibs4"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2016-01-09 23:10:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2016-01-23 01:12:21.0 +0100
@@ -1,0 +2,15 @@
+Sat Jan  9 18:50:38 UTC 2016 - tittiatc...@gmail.com
+
+- Update to 4.14.16
+   * KDE Applications 15.12.1 
+   * https://www.kde.org/announcements/announce-applications-15.12.1.php
+   * boo#961265
+
+- Drop upstream patch bko355275.patch
+
+---
+Fri Jan 8 19:40:07 UTC 2016 - tittiatc...@gmail.com
+
+- Drop support for Nepomuk which is no longer used 
+
+---
@@ -8,0 +24,9 @@
+- Included upstream patch bko355275.patch to resolve the issue 
+  with Kopete crashing when closing windows. (bko#355275)
+
+---
+Wed Dec  9 12:27:46 UTC 2015 - tchva...@suse.com
+
+- Use yast2 sw_single package instead of invoking zypper in
+  interactive mode. bnc#858018
+
@@ -10 +34 @@
-Tue Nov 10 20:56:49 UTC 2015 - tittiatc...@gmail.com
+Tue Nov 10 20:56:07 UTC 2015 - tittiatc...@gmail.com
@@ -16,0 +41,3 @@
+- Drop upstreamed patches:   
+  * sync-with-upstream-FindGettext.patch
+  * Give-unique-names-to-the-targets-created-by-KDE4Macros.cmake.patch
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2016-01-09 
23:10:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2016-01-23 
01:12:21.0 +0100
@@ -1,0 +2,15 @@
+Sat Jan  9 18:50:38 UTC 2016 - tittiatc...@gmail.com
+
+- Update to 4.14.16
+   * KDE Applications 15.12.1 
+   * https://www.kde.org/announcements/announce-applications-15.12.1.php
+   * boo#961265
+
+- Drop upstream patch bko355275.patch
+
+---
+Fri Jan 8 19:40:07 UTC 2016 - tittiatc...@gmail.com
+
+- Drop support for Nepomuk which is no longer used 
+
+---

Old:

  bko355275.patch
  kdelibs-4.14.15.tar.xz

New:

  kdelibs-4.14.16.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.GiZoGd/_old  2016-01-23 01:12:23.0 +0100
+++ /var/tmp/diff_new_pack.GiZoGd/_new  2016-01-23 01:12:23.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4-apidocs
 #
-# 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
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.15
+Version:4.14.16
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.GiZoGd/_old  2016-01-23 01:12:23.0 +0100
+++ /var/tmp/diff_new_pack.GiZoGd/_new  2016-01-23 01:12:23.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4
 #
-# 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
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.15
+Version:4.14.16
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -48,14 +48,11 @@
 BuildRequires:  libpolkit-qt-1-devel
 BuildRequires:  libqca2-devel >= 2.0.0
 BuildRequires:  libqt4-devel >= 4.8.0
-BuildRequires:  libsoprano-devel
 BuildRequires:  libudev-devel
 BuildRequires:  libxslt-devel
 BuildRequires:  pcre-devel
 BuildRequires:  phonon-devel
-BuildRequires:  shared-desktop-ontologies-devel
 BuildRequires:  shared-mime-info
-BuildRequires:  strigi
 BuildRequires:  strigi-devel
 BuildRequires:  update-desktop-files
 BuildRequires:  utempter-devel
@@ -90,8 +87,6 @@
 # PATCH-FIX-OPENSUSE 
0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch -- Nepomuk is only 
used in a private header, browserrun_p.h,
 # thus it is not needed as KParts public dependancy, makes it possible to drop 
libsoprano-devel from libkde4-devel Requires
 Patch15:0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch
-# 

commit kdelibs4 for openSUSE:Factory

2016-01-09 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2016-01-09 23:10:04

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


Package is "kdelibs4"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2015-11-24 22:21:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2016-01-09 23:10:07.0 +0100
@@ -1,0 +2,8 @@
+Thu Jan 7 13:40:07 UTC 2016 - tittiatc...@gmail.com
+
+- Update to 4.14.15
+   * KDE Applications 15.12.0
+   * https://www.kde.org/announcements/announce-applications-15.12.0.php
+   * boo#958887
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2015-12-17 
15:53:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2016-01-09 
23:10:07.0 +0100
@@ -1,0 +2,11 @@
+Thu Jan 7 13:40:07 UTC 2016 - tittiatc...@gmail.com
+
+- Update to 4.14.15
+   * KDE Applications 15.12.0
+   * https://www.kde.org/announcements/announce-applications-15.12.0.php
+   * boo#958887
+
+- Included upstream patch bko355275.patch to resolve the issue 
+  with Kopete crashing when closing windows. (bko#355275)
+
+---

Old:

  kdelibs-4.14.14.tar.xz

New:

  bko355275.patch
  kdelibs-4.14.15.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.0Pvf5z/_old  2016-01-09 23:10:09.0 +0100
+++ /var/tmp/diff_new_pack.0Pvf5z/_new  2016-01-09 23:10:09.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.14
+Version:4.14.15
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.0Pvf5z/_old  2016-01-09 23:10:09.0 +0100
+++ /var/tmp/diff_new_pack.0Pvf5z/_new  2016-01-09 23:10:09.0 +0100
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.14
+Version:4.14.15
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -90,6 +90,8 @@
 # PATCH-FIX-OPENSUSE 
0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch -- Nepomuk is only 
used in a private header, browserrun_p.h,
 # thus it is not needed as KParts public dependancy, makes it possible to drop 
libsoprano-devel from libkde4-devel Requires
 Patch15:0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch
+# PATCH-FIX-UPSTREAM bko355275.patch -- Revert a commit that caused Kopete to 
crash when closing windows
+Patch16:bko355275.patch
 PreReq: permissions
 Requires:   libattica0_4 >= %( echo `rpm -q --queryformat '%{VERSION}' 
libattica-devel`)
 Recommends: media-player-info
@@ -149,6 +151,7 @@
 %patch11 -p1
 %patch12 -p1
 %patch15 -p1
+%patch16 -p1
 
 %build
   EXTRA_FLAGS="-DLIB_INSTALL_DIR=%{_kde4_libdir} \

++ bko355275.patch ++
From: Alex Merry 
Date: Tue, 15 Dec 2015 19:26:47 +
Subject: Revert "backport commit b72fc5e56579035bf987075e16324ef95ef8e3d4"
X-Git-Url: 
http://quickgit.kde.org/?p=kdelibs.git=commitdiff=a02df05e4bd083f98147c86f88da2f818fc6c9f4
---
Revert "backport commit b72fc5e56579035bf987075e16324ef95ef8e3d4"

This reverts commit 4f7ea2f770cf062ef22293fbb21a086f3e0cbfcb.

This change seems to be causing more problems than it fixes - it's
probably just too big of a behaviour change for kdelibs. Which means
that akregator will probably keep randomly crashing, but the alternative
seems to be various other applications consistently crashing at exit.

If we can fix those applications (Kopete in particular), we can consider
re-applying this afterwards.

BUG: 355275
---


--- a/kparts/part.cpp
+++ b/kparts/part.cpp
@@ -350,7 +350,7 @@
 d->m_widget = 0;
 if (d->m_autoDeletePart) {
 kDebug(1000) << "deleting part" << objectName();
-this->deleteLater();
+delete this; // ouch, this should probably be deleteLater()
 }
 }
 

--- a/kparts/tests/parttest.cpp
+++ b/kparts/tests/parttest.cpp
@@ -48,7 +48,6 @@
 KParts::Part* part = new TestPart(0, 0);
 QPointer partPointer(part);
 delete part->widget();
-QCoreApplication::sendPostedEvents(0, QEvent::DeferredDelete);
 QVERIFY(partPointer.isNull());
 }
 
@@ -58,7 +57,6 @@
 QPointer partPointer(part);
 QPointer widgetPointer(part->widget());
 delete part;
-QCoreApplication::sendPostedEvents(0, QEvent::DeferredDelete);
 QVERIFY(widgetPointer.isNull());
 }
 

++ kdelibs-4.14.14.tar.xz -> kdelibs-4.14.15.tar.xz 

commit kdelibs4 for openSUSE:Factory

2015-12-17 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2015-12-17 15:53:07

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


Package is "kdelibs4"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2015-11-24 
22:21:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2015-12-17 
15:53:09.0 +0100
@@ -1,0 +2,6 @@
+Wed Dec  9 12:27:46 UTC 2015 - tchva...@suse.com
+
+- Use yast2 sw_single package instead of invoking zypper in
+  interactive mode. bnc#858018
+
+---



Other differences:
--
kdelibs4.spec: same change
++ ksuseinstall.diff ++
--- /var/tmp/diff_new_pack.4BiE1e/_old  2015-12-17 15:53:11.0 +0100
+++ /var/tmp/diff_new_pack.4BiE1e/_new  2015-12-17 15:53:11.0 +0100
@@ -1,7 +1,8 @@
-diff -urNB kdelibs-4.14.11/CMakeLists.txt b/CMakeLists.txt
 CMakeLists.txt 2015-08-19 00:10:55.0 +0200
-+++ CMakeLists.txt 2015-08-24 19:13:06.490904619 +0200
-@@ -317,6 +317,7 @@
+Index: CMakeLists.txt
+===
+--- CMakeLists.txt.orig
 CMakeLists.txt
+@@ -317,6 +317,7 @@ check_library_exists(socket connect "" H
  add_subdirectory( cmake )
  add_subdirectory( kdecore )
  add_subdirectory( kdeui )
@@ -9,10 +10,11 @@
  if (UNIX)
 add_subdirectory( kpty )
 add_subdirectory( kdesu )
-diff -urNB kdelibs-4.14.11/kio/CMakeLists.txt b/kio/CMakeLists.txt
 kio/CMakeLists.txt 2015-08-19 00:10:55.0 +0200
-+++ kio/CMakeLists.txt 2015-08-24 19:13:06.491904624 +0200
-@@ -44,6 +44,7 @@
+Index: kio/CMakeLists.txt
+===
+--- kio/CMakeLists.txt.orig
 kio/CMakeLists.txt
+@@ -44,6 +44,7 @@ include_directories(
 ${CMAKE_CURRENT_BINARY_DIR}/kssl
 ${CMAKE_CURRENT_BINARY_DIR}  # e.g. for observer_stub.h
 ${KDE4_KDEUI_INCLUDES}
@@ -20,7 +22,7 @@
 ${KDE4_KDECORE_INCLUDES}/
 ${ZLIB_INCLUDE_DIR}
  
-@@ -333,6 +334,7 @@
+@@ -333,6 +334,7 @@ if(NOT KIO_NO_NEPOMUK)
  endif(NOT KIO_NO_NEPOMUK)
  target_link_libraries(kio LINK_PRIVATE ${KDE4_KDEUI_LIBS} ${ZLIB_LIBRARY} 
${QT_QTNETWORK_LIBRARY} ${QT_QTXML_LIBRARY} ${QT_QTSVG_LIBRARY} 
${X11_LIBRARIES} ${KIO_EXTRA_LIBS})
  target_link_libraries(kio LINK_PUBLIC kdeui kdecore ${QT_QTNETWORK_LIBRARY} 
${QT_QTXML_LIBRARY} ${QT_QTGUI_LIBRARY} )
@@ -28,9 +30,10 @@
  
  if(ACL_FOUND)
 target_link_libraries(kio LINK_PRIVATE ${ACL_LIBS})
-diff -urNB kdelibs-4.14.11/kio/kio/krun.cpp b/kio/kio/krun.cpp
 kio/kio/krun.cpp   2015-08-19 00:10:55.0 +0200
-+++ kio/kio/krun.cpp   2015-08-24 19:13:06.491904624 +0200
+Index: kio/kio/krun.cpp
+===
+--- kio/kio/krun.cpp.orig
 kio/kio/krun.cpp
 @@ -84,6 +84,8 @@
  #include 
  #endif
@@ -40,7 +43,7 @@
  KRun::KRunPrivate::KRunPrivate(KRun *parent)
  : q(parent),
  m_showingDialog(false)
-@@ -172,6 +174,7 @@
+@@ -172,6 +174,7 @@ bool KRun::runUrl(const KUrl& u, const Q
  KUrl::List lst;
  lst.append(u);
  
@@ -48,9 +51,10 @@
  KService::Ptr offer = 
KMimeTypeTrader::self()->preferredService(_mimetype);
  
  if (!offer) {
-diff -urNB kdelibs-4.14.11/suseinstall/CMakeLists.txt 
b/suseinstall/CMakeLists.txt
 suseinstall/CMakeLists.txt 1970-01-01 01:00:00.0 +0100
-+++ suseinstall/CMakeLists.txt 2015-08-24 19:13:06.492904628 +0200
+Index: suseinstall/CMakeLists.txt
+===
+--- /dev/null
 suseinstall/CMakeLists.txt
 @@ -0,0 +1,27 @@
 +#cmake_minimum_required( VERSION 2.6 )  
 + 
@@ -79,9 +83,10 @@
 +DESTINATION ${INCLUDE_INSTALL_DIR} COMPONENT Devel  
 +)  
 + 
-diff -urNB kdelibs-4.14.11/suseinstall/kbuildsycocaprogressdialog.cpp 
b/suseinstall/kbuildsycocaprogressdialog.cpp
 suseinstall/kbuildsycocaprogressdialog.cpp 1970-01-01 01:00:00.0 
+0100
-+++ suseinstall/kbuildsycocaprogressdialog.cpp 2015-08-24 19:13:06.492904628 
+0200
+Index: suseinstall/kbuildsycocaprogressdialog.cpp
+===
+--- /dev/null
 suseinstall/kbuildsycocaprogressdialog.cpp
 @@ -0,0 +1,110 @@
 +/* This file is part of the KDE project  
 +   Copyright (C) 2003 Waldo Bastian   
@@ -193,9 +198,10 @@
 +}  
 +  
 +#include "kbuildsycocaprogressdialog.moc"  
-diff -urNB kdelibs-4.14.11/suseinstall/kbuildsycocaprogressdialog.h 
b/suseinstall/kbuildsycocaprogressdialog.h
 suseinstall/kbuildsycocaprogressdialog.h   1970-01-01 01:00:00.0 

commit kdelibs4 for openSUSE:Factory

2015-11-24 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2015-11-24 22:21:30

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


Package is "kdelibs4"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2015-10-12 10:01:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2015-11-24 22:21:31.0 +0100
@@ -1,0 +2,9 @@
+Tue Nov 10 20:56:49 UTC 2015 - tittiatc...@gmail.com
+
+- Update to 4.14.14
+   * KDE Applications 15.08.3 
+   * https://www.kde.org/announcements/announce-applications-15.08.3.php
+   * boo#954531
+
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2015-10-12 
10:01:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2015-11-24 
22:21:31.0 +0100
@@ -1,0 +2,12 @@
+Tue Nov 10 20:56:07 UTC 2015 - tittiatc...@gmail.com
+
+- Update to 4.14.14
+   * KDE Applications 15.08.3 
+   * https://www.kde.org/announcements/announce-applications-15.08.3.php
+   * boo#954531
+
+- Drop upstreamed patches:   
+  * sync-with-upstream-FindGettext.patch
+  * Give-unique-names-to-the-targets-created-by-KDE4Macros.cmake.patch
+
+---

Old:

  Give-unique-names-to-the-targets-created-by-KDE4Macros.cmake.patch
  kdelibs-4.14.12.tar.xz
  sync-with-upstream-FindGettext.patch

New:

  kdelibs-4.14.14.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.MM7NhN/_old  2015-11-24 22:21:33.0 +0100
+++ /var/tmp/diff_new_pack.MM7NhN/_new  2015-11-24 22:21:33.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.12
+Version:4.14.14
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.MM7NhN/_old  2015-11-24 22:21:33.0 +0100
+++ /var/tmp/diff_new_pack.MM7NhN/_new  2015-11-24 22:21:33.0 +0100
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.12
+Version:4.14.14
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -90,10 +90,6 @@
 # PATCH-FIX-OPENSUSE 
0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch -- Nepomuk is only 
used in a private header, browserrun_p.h,
 # thus it is not needed as KParts public dependancy, makes it possible to drop 
libsoprano-devel from libkde4-devel Requires
 Patch15:0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch
-# PATCH-FIX-OPENSUSE sync-with-upstream-FindGettext.patch
-Patch16:sync-with-upstream-FindGettext.patch
-# PATCH-FIX-OPENSUSE 
Give-unique-names-to-the-targets-created-by-KDE4Macros.cmake.patch
-Patch17:
Give-unique-names-to-the-targets-created-by-KDE4Macros.cmake.patch
 PreReq: permissions
 Requires:   libattica0_4 >= %( echo `rpm -q --queryformat '%{VERSION}' 
libattica-devel`)
 Recommends: media-player-info
@@ -153,8 +149,6 @@
 %patch11 -p1
 %patch12 -p1
 %patch15 -p1
-%patch16 -p1
-%patch17 -p1
 
 %build
   EXTRA_FLAGS="-DLIB_INSTALL_DIR=%{_kde4_libdir} \

++ kdelibs-4.14.12.tar.xz -> kdelibs-4.14.14.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.12.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.14.tar.xz differ: char 
26, line 1





commit kdelibs4 for openSUSE:Factory

2015-10-12 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2015-10-12 10:01:05

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


Package is "kdelibs4"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2015-10-03 20:29:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2015-10-12 10:01:14.0 +0200
@@ -2 +2,15 @@
-Sun Sep 20 18:50:12 UTC 2015 - tittiatc...@gmail.com
+Fri Oct  9 17:13:31 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update sync-with-upstream-FindGettext.patch to remain compatible
+  with all users of kdelibs' module
+
+---
+Thu Oct  8 16:38:24 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Added patches to fix build for users of KDE4Macros and FindGettext
+  kdelibs' (> 4.14.11, where CMP0002 is set to NEW) modules:
+  sync-with-upstream-FindGettext.patch
+  Give-unique-names-to-the-targets-created-by-KDE4Macros.cmake.patch
+
+---
+Sun Sep 20 18:50:02 UTC 2015 - tittiatc...@gmail.com
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2015-10-03 
20:29:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2015-10-12 
10:01:14.0 +0200
@@ -1,0 +2,14 @@
+Fri Oct  9 17:13:31 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update sync-with-upstream-FindGettext.patch to remain compatible
+  with all users of kdelibs' module
+
+---
+Thu Oct  8 16:38:24 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Added patches to fix build for users of KDE4Macros and FindGettext
+  kdelibs' (> 4.14.11, where CMP0002 is set to NEW) modules:
+  sync-with-upstream-FindGettext.patch
+  Give-unique-names-to-the-targets-created-by-KDE4Macros.cmake.patch
+
+---

New:

  Give-unique-names-to-the-targets-created-by-KDE4Macros.cmake.patch
  sync-with-upstream-FindGettext.patch



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.4Edg63/_old  2015-10-12 10:01:15.0 +0200
+++ /var/tmp/diff_new_pack.4Edg63/_new  2015-10-12 10:01:15.0 +0200
@@ -90,6 +90,10 @@
 # PATCH-FIX-OPENSUSE 
0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch -- Nepomuk is only 
used in a private header, browserrun_p.h,
 # thus it is not needed as KParts public dependancy, makes it possible to drop 
libsoprano-devel from libkde4-devel Requires
 Patch15:0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch
+# PATCH-FIX-OPENSUSE sync-with-upstream-FindGettext.patch
+Patch16:sync-with-upstream-FindGettext.patch
+# PATCH-FIX-OPENSUSE 
Give-unique-names-to-the-targets-created-by-KDE4Macros.cmake.patch
+Patch17:
Give-unique-names-to-the-targets-created-by-KDE4Macros.cmake.patch
 PreReq: permissions
 Requires:   libattica0_4 >= %( echo `rpm -q --queryformat '%{VERSION}' 
libattica-devel`)
 Recommends: media-player-info
@@ -149,6 +153,8 @@
 %patch11 -p1
 %patch12 -p1
 %patch15 -p1
+%patch16 -p1
+%patch17 -p1
 
 %build
   EXTRA_FLAGS="-DLIB_INSTALL_DIR=%{_kde4_libdir} \

++ Give-unique-names-to-the-targets-created-by-KDE4Macros.cmake.patch ++
--- kdelibs-4.14.12/cmake/modules/KDE4Macros.cmake.orig 2015-09-14 
21:58:46.0 +0200
+++ kdelibs-4.14.12/cmake/modules/KDE4Macros.cmake  2015-10-08 
17:15:45.515243529 +0200
@@ -54,6 +54,11 @@ if(NOT COMMAND _AUTOMOC4_KDE4_PRE_TARGET
 endif(NOT COMMAND _AUTOMOC4_KDE4_PRE_TARGET_HANDLING)
 
 
+macro(_SUGGEST_TARGET_NAME _out)
+string(REPLACE "${CMAKE_SOURCE_DIR}/" "" ${_out} 
"${CMAKE_CURRENT_SOURCE_DIR}")
+string(REGEX REPLACE "[^0-9a-zA-Z]" "-" ${_out} "${${_out}}")
+endmacro()
+
 macro (KDE4_ADD_KCFG_FILES _sources )
foreach (_current_ARG ${ARGN})
if( ${_current_ARG} STREQUAL "GENERATE_MOC" )
@@ -301,7 +306,7 @@ macro (KDE4_CREATE_HANDBOOK _docbook)
   DEPENDS ${_docs} ${_KDE4_MEINPROC_EXECUTABLE_DEP} ${_ssheet}
   WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
)
-   get_filename_component(_targ ${CMAKE_CURRENT_SOURCE_DIR} NAME)
+   _suggest_target_name(_targ)
set(_targ "${_targ}-handbook")
add_custom_target(${_targ} ALL DEPENDS ${_doc})
 
@@ -377,7 +382,7 @@ macro (KDE4_CREATE_MANPAGE _docbook _sec
   COMMAND ${KDE4_MEINPROC_EXECUTABLE} --stylesheet ${_ssheet} --check 
${_bootstrapOption} ${_input}
   DEPENDS ${_input} ${_KDE4_MEINPROC_EXECUTABLE_DEP} ${_ssheet}
)
-   get_filename_component(_targ ${CMAKE_CURRENT_SOURCE_DIR} NAME)
+   

commit kdelibs4 for openSUSE:Factory

2015-10-03 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2015-10-03 20:28:52

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


Package is "kdelibs4"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2015-07-14 17:43:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2015-10-03 20:29:28.0 +0200
@@ -1,0 +2,16 @@
+Sun Sep 20 18:50:12 UTC 2015 - tittiatc...@gmail.com
+
+- Update to 4.14.12
+   * KDE Applications 15.08.1 
+   * https://www.kde.org/announcements/announce-applications-15.08.1.php
+
+
+---
+Mon Aug 24 16:57:28 UTC 2015 - tittiatc...@gmail.com
+
+- Update to 4,14,11
+   * KDE Applications 15.08.0 
+   * https://www.kde.org/announcements/announce-applications-15.08.0.php
+
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2015-07-14 
17:43:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2015-10-03 
20:29:28.0 +0200
@@ -1,0 +2,16 @@
+Sun Sep 20 18:50:02 UTC 2015 - tittiatc...@gmail.com
+
+- Update to 4.14.12
+   * KDE Applications 15.08.1 
+   * https://www.kde.org/announcements/announce-applications-15.08.1.php
+
+
+---
+Mon Aug 24 16:57:28 UTC 2015 - tittiatc...@gmail.com
+
+- Update to 4,14,11
+   * KDE Applications 15.08.0 
+   * https://www.kde.org/announcements/announce-applications-15.08.0.php
+
+
+---

Old:

  kdelibs-4.14.10.tar.xz

New:

  kdelibs-4.14.12.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.4BqDag/_old  2015-10-03 20:29:30.0 +0200
+++ /var/tmp/diff_new_pack.4BqDag/_new  2015-10-03 20:29:30.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.10
+Version:4.14.12
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.4BqDag/_old  2015-10-03 20:29:30.0 +0200
+++ /var/tmp/diff_new_pack.4BqDag/_new  2015-10-03 20:29:30.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.10
+Version:4.14.12
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4

++ 0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch ++
--- /var/tmp/diff_new_pack.4BqDag/_old  2015-10-03 20:29:30.0 +0200
+++ /var/tmp/diff_new_pack.4BqDag/_new  2015-10-03 20:29:30.0 +0200
@@ -15,10 +15,10 @@
 --- a/kparts/CMakeLists.txt
 +++ b/kparts/CMakeLists.txt
 @@ -39,7 +39,6 @@ target_link_libraries(kparts  ${KDE4_KDECORE_LIBS} kdeui kio)
- target_link_libraries(kparts  LINK_INTERFACE_LIBRARIES kio kdeui kdecore 
${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY} )
+ target_link_libraries(kparts  LINK_PUBLIC kio kdeui kdecore 
${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY} )
  if(HAVE_NEPOMUK)
-   target_link_libraries(kparts  nepomuk nepomukutils)
--  target_link_libraries(kparts  LINK_INTERFACE_LIBRARIES nepomuk nepomukutils 
)
+   target_link_libraries(kparts  LINK_PRIVATE nepomuk nepomukutils)
+-  target_link_libraries(kparts  LINK_PUBLIC nepomuk nepomukutils )
  endif(HAVE_NEPOMUK)
  
  set_target_properties(kparts PROPERTIES VERSION ${GENERIC_LIB_VERSION} 

++ exclude-qtuitools-symbols-from-public-libraries.patch ++
--- /var/tmp/diff_new_pack.4BqDag/_old  2015-10-03 20:29:30.0 +0200
+++ /var/tmp/diff_new_pack.4BqDag/_new  2015-10-03 20:29:30.0 +0200
@@ -1,22 +1,7 @@
-From 87dd1e894da87b871eb86329c35a15e7d235c9a7 Mon Sep 17 00:00:00 2001
-From: Hrvoje Senjan 
-Date: Sun, 12 May 2013 16:14:20 +0200
-Subject: [PATCH 1/1] Exclude QtUiTools symbols from public libraries
-
-Otherwise it makes users of those libs crash
-when linked with -Bsymbolic-functions

- kjsembed/kjsembed/CMakeLists.txt | 3 ++-
- kross/modules/CMakeLists.txt | 3 +++
- kross/qts/CMakeLists.txt | 3 +++
- plasma/CMakeLists.txt| 3 +++
- 4 files changed, 11 insertions(+), 1 deletion(-)
-
-diff --git a/kjsembed/kjsembed/CMakeLists.txt 
b/kjsembed/kjsembed/CMakeLists.txt
-index d70f260..5760313 100644
 a/kjsembed/kjsembed/CMakeLists.txt
-+++ b/kjsembed/kjsembed/CMakeLists.txt
-@@ -71,7 +71,8 @@ target_link_libraries(${KJSEMBEDLIBNAME} 
${KDE4_KDECORE_LIBS} ${QT_QTUITOOLS_LIB
+diff -urNB b/kjsembed/kjsembed/CMakeLists.txt 

commit kdelibs4 for openSUSE:Factory

2015-07-14 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2015-07-14 17:42:36

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2015-06-04 09:50:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2015-07-14 17:43:57.0 +0200
@@ -1,0 +2,8 @@
+Mon Jul  6 06:20:48 UTC 2015 - tittiatc...@gmail.com
+
+- Update to 4.14.10
+   * KDE Applications 15.04.3
+   * https://www.kde.org/announcements/announce-applications-15.04.3.php
+
+
+---
kdelibs4.changes: same change

Old:

  kdelibs-4.14.9.tar.xz

New:

  kdelibs-4.14.10.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.LGjegv/_old  2015-07-14 17:43:59.0 +0200
+++ /var/tmp/diff_new_pack.LGjegv/_new  2015-07-14 17:43:59.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.9
+Version:4.14.10
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.LGjegv/_old  2015-07-14 17:43:59.0 +0200
+++ /var/tmp/diff_new_pack.LGjegv/_new  2015-07-14 17:43:59.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.9
+Version:4.14.10
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4

++ kdelibs-4.14.9.tar.xz - kdelibs-4.14.10.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.9.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.10.tar.xz differ: char 
26, line 1





commit kdelibs4 for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2015-06-04 09:50:06

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2015-05-15 09:03:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2015-06-04 09:50:07.0 +0200
@@ -2 +2,9 @@
-Mon May 11 10:40:38 UTC 2015 - tittiatc...@gmail.com
+Sat May 30 13:18:20 UTC 2015 - tittiatc...@gmail.com
+
+- Update to 4.14.9
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---
+Mon May 11 10:40:31 UTC 2015 - tittiatc...@gmail.com
@@ -10 +18,9 @@
-Sat Apr 11 14:03:06 UTC 2015 - tittiatc...@gmail.com
+Mon May 11 10:39:34 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.1
+   * KDE Applications 15.04.1
+   * https://www.kde.org/announcements/announce-applications-15.04.1.php
+
+
+---
+Sat Apr 11 14:01:47 UTC 2015 - tittiatc...@gmail.com
@@ -17 +33 @@
-Tue Mar  3 10:10:38 UTC 2015 - tittiatc...@gmail.com
+Tue Mar  3 10:10:28 UTC 2015 - tittiatc...@gmail.com
@@ -24 +40 @@
-Sun Feb  1 10:19:02 UTC 2015 - tittiatc...@gmail.com
+Sun Feb  1 10:18:53 UTC 2015 - tittiatc...@gmail.com
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2015-05-15 
09:03:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2015-06-04 
09:50:07.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 13:18:20 UTC 2015 - tittiatc...@gmail.com
+
+- Update to 4.14.9
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kdelibs-4.14.8.tar.xz

New:

  kdelibs-4.14.9.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.SUAMLy/_old  2015-06-04 09:50:09.0 +0200
+++ /var/tmp/diff_new_pack.SUAMLy/_new  2015-06-04 09:50:09.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.8
+Version:4.14.9
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.SUAMLy/_old  2015-06-04 09:50:09.0 +0200
+++ /var/tmp/diff_new_pack.SUAMLy/_new  2015-06-04 09:50:09.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.8
+Version:4.14.9
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4

++ kdelibs-4.14.8.tar.xz - kdelibs-4.14.9.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.8.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.9.tar.xz differ: char 27, 
line 1





commit kdelibs4 for openSUSE:Factory

2015-05-15 Thread h_root
Hello community,

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

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2015-05-02 17:25:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2015-05-15 09:03:13.0 +0200
@@ -1,0 +2,8 @@
+Mon May 11 10:40:38 UTC 2015 - tittiatc...@gmail.com
+
+- Update to 4.14.8
+   * KDE Applications 15.04.1
+   * https://www.kde.org/announcements/announce-applications-15.04.1.php
+
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2015-05-02 
17:25:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2015-05-15 
09:03:13.0 +0200
@@ -1,0 +2,16 @@
+Mon May 11 10:40:31 UTC 2015 - tittiatc...@gmail.com
+
+- Update to 4.14.8
+   * KDE Applications 15.04.1
+   * https://www.kde.org/announcements/announce-applications-15.04.1.php
+
+
+---
+Mon May 11 10:39:34 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.1
+   * KDE Applications 15.04.1
+   * https://www.kde.org/announcements/announce-applications-15.04.1.php
+
+
+---

Old:

  kdelibs-4.14.7.tar.xz

New:

  kdelibs-4.14.8.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.4jSirN/_old  2015-05-15 09:03:15.0 +0200
+++ /var/tmp/diff_new_pack.4jSirN/_new  2015-05-15 09:03:15.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.7
+Version:4.14.8
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.4jSirN/_old  2015-05-15 09:03:15.0 +0200
+++ /var/tmp/diff_new_pack.4jSirN/_new  2015-05-15 09:03:15.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.7
+Version:4.14.8
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4

++ kdelibs-4.14.7.tar.xz - kdelibs-4.14.8.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.7.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.8.tar.xz differ: char 26, 
line 1





commit kdelibs4 for openSUSE:Factory

2015-05-02 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2015-05-02 17:25:53

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2015-03-11 09:42:52.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2015-05-02 17:25:55.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr 11 14:03:06 UTC 2015 - tittiatc...@gmail.com
+
+- Update to 4.14.7
+  * KDE Applications 15.04.0
+  * See https://www.kde.org/announcements/announce-applications-15.04.0.php
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2015-03-11 
09:42:52.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2015-05-02 
17:25:55.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr 11 14:01:47 UTC 2015 - tittiatc...@gmail.com
+
+- Update to 4.14.7
+  * KDE Applications 15.04.0
+  * See https://www.kde.org/announcements/announce-applications-15.04.0.php
+
+---

Old:

  kdelibs-4.14.6.tar.xz

New:

  kdelibs-4.14.7.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.NpvrvN/_old  2015-05-02 17:25:56.0 +0200
+++ /var/tmp/diff_new_pack.NpvrvN/_new  2015-05-02 17:25:56.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.6
+Version:4.14.7
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.NpvrvN/_old  2015-05-02 17:25:56.0 +0200
+++ /var/tmp/diff_new_pack.NpvrvN/_new  2015-05-02 17:25:56.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.6
+Version:4.14.7
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4

++ kdelibs-4.14.6.tar.xz - kdelibs-4.14.7.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.6.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.7.tar.xz differ: char 27, 
line 1





commit kdelibs4 for openSUSE:Factory

2015-03-11 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2015-03-11 09:42:50

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2015-02-11 16:32:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2015-03-11 09:42:52.0 +0100
@@ -1,0 +2,7 @@
+Tue Mar  3 10:10:38 UTC 2015 - tittiatc...@gmail.com
+
+- Update to 4.14.6
+   * KDE Applications 14.12.3
+   * See https://www.kde.org/announcements/announce-applications-14.12.3.php
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2015-02-11 
16:32:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2015-03-11 
09:42:52.0 +0100
@@ -1,0 +2,7 @@
+Tue Mar  3 10:10:28 UTC 2015 - tittiatc...@gmail.com
+
+- Update to 4.14.6
+   * KDE Applications 14.12.3
+   * See https://www.kde.org/announcements/announce-applications-14.12.3.php
+
+---

Old:

  kdelibs-4.14.5.tar.xz

New:

  kdelibs-4.14.6.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.N7k7K4/_old  2015-03-11 09:42:54.0 +0100
+++ /var/tmp/diff_new_pack.N7k7K4/_new  2015-03-11 09:42:54.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.5
+Version:4.14.6
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.N7k7K4/_old  2015-03-11 09:42:54.0 +0100
+++ /var/tmp/diff_new_pack.N7k7K4/_new  2015-03-11 09:42:54.0 +0100
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.5
+Version:4.14.6
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4

++ kdelibs-4.14.5.tar.xz - kdelibs-4.14.6.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.5.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.6.tar.xz differ: char 26, 
line 1


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



commit kdelibs4 for openSUSE:Factory

2015-02-11 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2015-02-11 16:32:19

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2015-01-21 22:08:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2015-02-11 16:32:20.0 +0100
@@ -1,0 +2,7 @@
+Sun Feb  1 10:19:02 UTC 2015 - tittiatc...@gmail.com
+
+- Update to 4.14.5
+   * KDE Applications 14.12.2
+   * See https://www.kde.org/announcements/announce-applications-14.12.2.php
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2015-01-21 
22:08:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2015-02-11 
16:32:20.0 +0100
@@ -1,0 +2,7 @@
+Sun Feb  1 10:18:53 UTC 2015 - tittiatc...@gmail.com
+
+- Update to 4.14.5
+   * KDE Applications 14.12.2
+   * See https://www.kde.org/announcements/announce-applications-14.12.2.php
+
+---

Old:

  kdelibs-4.14.4.tar.xz

New:

  kdelibs-4.14.5.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.x09Ksz/_old  2015-02-11 16:32:22.0 +0100
+++ /var/tmp/diff_new_pack.x09Ksz/_new  2015-02-11 16:32:22.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4-apidocs
 #
-# Copyright (c) 2015 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:   kdelibs4-apidocs
-Version:4.14.4
+Version:4.14.5
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.x09Ksz/_old  2015-02-11 16:32:22.0 +0100
+++ /var/tmp/diff_new_pack.x09Ksz/_new  2015-02-11 16:32:22.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4
 #
-# Copyright (c) 2015 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
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.4
+Version:4.14.5
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4

++ kdelibs-4.14.4.tar.xz - kdelibs-4.14.5.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.4.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.5.tar.xz differ: char 26, 
line 1


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



commit kdelibs4 for openSUSE:Factory

2015-01-21 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2015-01-21 22:08:07

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2014-11-19 20:27:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2015-01-21 22:08:10.0 +0100
@@ -1,0 +2,34 @@
+Mon Jan 12 19:24:16 UTC 2015 - tittiatc...@gmail.com
+
+- Update to 4.14.4
+   * KDE Applications 14.12.1
+   * See https://www.kde.org/announcements/announce-applications-14.12.1.php
+- Drop upstreamed patch boo907135.patch
+
+---
+Wed Nov 26 13:21:34 UTC 2014 - tittiatc...@gmail.com
+
+- Add patch boo907135.patch to resolve crashes for Konqueror as
+  reported with boo#907135
+
+---
+Tue Nov 18 10:23:11 UTC 2014 - wba...@tmo.at
+
+- ksuseinstall.diff: use zypper instead of yast to install packages.
+  yast -i is deprecated, and just calls zypper --non-interactive install
+  on 13.2. But this fails to install the packages when there are
+  conflicts (e.g. a vendor change is needed), so added the
+  --force-resolution option as well. (boo#858018)
+
+---
+Sat Nov 15 15:20:56 UTC 2014 - wba...@tmo.at
+
+- adapt ksuseinstall to changes in zypper's output in openSUSE 13.1.
+  This fixes the installation of packages. (boo#858018)
+
+---
+Mon Nov 10 02:20:00 UTC 2014 - Led led...@gmail.com
+
+- fix bashisms in post/postun scripts
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2014-11-19 
20:27:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2015-01-21 
22:08:11.0 +0100
@@ -1,0 +2,14 @@
+Mon Jan 12 19:24:16 UTC 2015 - tittiatc...@gmail.com
+
+- Update to 4.14.4
+   * KDE Applications 14.12.1
+   * See https://www.kde.org/announcements/announce-applications-14.12.1.php
+- Drop upstreamed patch boo907135.patch
+
+---
+Wed Nov 26 13:21:34 UTC 2014 - tittiatc...@gmail.com
+
+- Add patch boo907135.patch to resolve crashes for Konqueror as
+  reported with boo#907135
+
+---

Old:

  kdelibs-4.14.3.tar.xz

New:

  kdelibs-4.14.4.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.CUM1C0/_old  2015-01-21 22:08:13.0 +0100
+++ /var/tmp/diff_new_pack.CUM1C0/_new  2015-01-21 22:08:13.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4-apidocs
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.3
+Version:4.14.4
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.CUM1C0/_old  2015-01-21 22:08:13.0 +0100
+++ /var/tmp/diff_new_pack.CUM1C0/_new  2015-01-21 22:08:13.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.3
+Version:4.14.4
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4

++ kdelibs-4.14.3.tar.xz - kdelibs-4.14.4.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.3.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.4.tar.xz differ: char 25, 
line 1


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



commit kdelibs4 for openSUSE:Factory

2014-11-19 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2014-11-19 20:24:38

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2014-10-16 18:11:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2014-11-19 20:27:18.0 +0100
@@ -1,0 +2,8 @@
+Sun Nov  9 20:23:05 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.14.3
+   * KDE 4.14.3 SC Bugfix Release
+   * See http://www.kde.org/announcements/announce-4.14.3.php
+
+- Drop patch utilize_xdg_runtime_dir.patch due to upstream inclusion
+---
@@ -6,0 +15,3 @@
+- Add upstream patch utilize_xdg_runtime_dir.patch to create 
+  temporary sockets in the XDG_RUNTIME_DIR. This should make 
+  the system more responsive during high IO load
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2014-10-16 
18:11:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2014-11-19 
20:27:19.0 +0100
@@ -1,0 +2,28 @@
+Tue Nov 18 10:23:11 UTC 2014 - wba...@tmo.at
+
+- ksuseinstall.diff: use zypper instead of yast to install packages.
+  yast -i is deprecated, and just calls zypper --non-interactive install
+  on 13.2. But this fails to install the packages when there are
+  conflicts (e.g. a vendor change is needed), so added the
+  --force-resolution option as well. (boo#858018)
+
+---
+Sat Nov 15 15:20:56 UTC 2014 - wba...@tmo.at
+
+- adapt ksuseinstall to changes in zypper's output in openSUSE 13.1.
+  This fixes the installation of packages. (boo#858018)
+
+---
+Mon Nov 10 02:20:00 UTC 2014 - Led led...@gmail.com
+
+- fix bashisms in post/postun scripts
+
+---
+Sun Nov  9 20:23:05 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.14.3
+   * KDE 4.14.3 SC Bugfix Release
+   * See http://www.kde.org/announcements/announce-4.14.3.php
+
+- Drop patch utilize_xdg_runtime_dir.patch due to upstream inclusion
+---

Old:

  kdelibs-4.14.2.tar.xz
  utilize_xdg_runtime_dir.patch

New:

  kdelibs-4.14.3.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.UEU3Td/_old  2014-11-19 20:27:20.0 +0100
+++ /var/tmp/diff_new_pack.UEU3Td/_new  2014-11-19 20:27:20.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.2
+Version:4.14.3
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.UEU3Td/_old  2014-11-19 20:27:20.0 +0100
+++ /var/tmp/diff_new_pack.UEU3Td/_new  2014-11-19 20:27:20.0 +0100
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.2
+Version:4.14.3
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -90,8 +90,6 @@
 # PATCH-FIX-OPENSUSE 
0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch -- Nepomuk is only 
used in a private header, browserrun_p.h,
 # thus it is not needed as KParts public dependancy, makes it possible to drop 
libsoprano-devel from libkde4-devel Requires
 Patch15:0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch
-# PATCH-FIX-UPSTREAM Utilize the XDG_RUNTIME_DIR for temporary sockets
-Patch16:utilize_xdg_runtime_dir.patch
 PreReq: permissions
 Requires:   libattica0_4 = %( echo `rpm -q --queryformat '%{VERSION}' 
libattica-devel`)
 Recommends: media-player-info
@@ -151,7 +149,6 @@
 %patch11 -p1
 %patch12 -p1
 %patch15 -p1
-%patch16 -p1
 
 %build
   EXTRA_FLAGS=-DLIB_INSTALL_DIR=%{_kde4_libdir} \
@@ -208,13 +205,13 @@
 
 %post
 /sbin/ldconfig
-%{_kde4_bindir}/update-mime-database %{_datadir}/mime  /dev/null || :
+%{_kde4_bindir}/update-mime-database %{_datadir}/mime  /dev/null 21 || :
 
 %set_permissions %{_kde4_libexecdir}/start_kdeinit
 
 %postun
 /sbin/ldconfig
-%{_kde4_bindir}/update-mime-database %{_datadir}/mime  /dev/null || :
+%{_kde4_bindir}/update-mime-database %{_datadir}/mime  /dev/null 21 || :
 
 %verifyscript
 %verify_permissions -e %{_kde4_libexecdir}/start_kdeinit

++ kdelibs-4.14.2.tar.xz - kdelibs-4.14.3.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.2.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.3.tar.xz differ: char 27, 
line 

commit kdelibs4 for openSUSE:Factory

2014-10-16 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2014-10-16 18:11:15

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2014-09-18 07:57:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2014-10-16 18:11:17.0 +0200
@@ -1,0 +2,7 @@
+Sun Oct 12 11:58:31 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.14.2
+   * KDE 4.14.2 SC Bugfix Release
+   * See http://www.kde.org/announcements/announce-4.14.2.php
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2014-09-18 
07:57:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2014-10-16 
18:11:18.0 +0200
@@ -1,0 +2,10 @@
+Sun Oct 12 11:58:31 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.14.2
+   * KDE 4.14.2 SC Bugfix Release
+   * See http://www.kde.org/announcements/announce-4.14.2.php
+- Add upstream patch utilize_xdg_runtime_dir.patch to create 
+  temporary sockets in the XDG_RUNTIME_DIR. This should make 
+  the system more responsive during high IO load
+
+---

Old:

  kdelibs-4.14.1.tar.xz

New:

  kdelibs-4.14.2.tar.xz
  utilize_xdg_runtime_dir.patch



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.QKMnGk/_old  2014-10-16 18:11:19.0 +0200
+++ /var/tmp/diff_new_pack.QKMnGk/_new  2014-10-16 18:11:19.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.1
+Version:4.14.2
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.QKMnGk/_old  2014-10-16 18:11:19.0 +0200
+++ /var/tmp/diff_new_pack.QKMnGk/_new  2014-10-16 18:11:19.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.1
+Version:4.14.2
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -90,6 +90,8 @@
 # PATCH-FIX-OPENSUSE 
0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch -- Nepomuk is only 
used in a private header, browserrun_p.h,
 # thus it is not needed as KParts public dependancy, makes it possible to drop 
libsoprano-devel from libkde4-devel Requires
 Patch15:0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch
+# PATCH-FIX-UPSTREAM Utilize the XDG_RUNTIME_DIR for temporary sockets
+Patch16:utilize_xdg_runtime_dir.patch
 PreReq: permissions
 Requires:   libattica0_4 = %( echo `rpm -q --queryformat '%{VERSION}' 
libattica-devel`)
 Recommends: media-player-info
@@ -149,6 +151,7 @@
 %patch11 -p1
 %patch12 -p1
 %patch15 -p1
+%patch16 -p1
 
 %build
   EXTRA_FLAGS=-DLIB_INSTALL_DIR=%{_kde4_libdir} \

++ kdelibs-4.14.1.tar.xz - kdelibs-4.14.2.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.1.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.2.tar.xz differ: char 27, 
line 1

++ utilize_xdg_runtime_dir.patch ++
From: Andre Woebbeking woebbek...@kde.org
Date: Fri, 10 Oct 2014 22:53:53 +
Subject: Sometimes when the system has high IO load (e. g. copying huge files 
or compiling and linking)
X-Git-Url: 
http://quickgit.kde.org/?p=kdelibs.gita=commitdiffh=c71ae727fdf3ff59a02519a66595b47e4371281e
---
Sometimes when the system has high IO load (e. g. copying huge files or 
compiling and linking)
some KDE apps become unresponsive. This seems to be caused by KDE's internal 
sockets created
in /tmp which is normally on the same block device as the ongoing IO traffic.

With this patch the sockets are created in the folder XDG_RUNTIME_DIR points 
to. On current
systems this folder is mounted with the tmpfs file system. So the sockets 
aren't affected by
high IO load anymore.

In frameworks QStandardPaths is used which does the same, so there is no need 
to port it.

REVIEW:120492
---


--- a/kinit/lnusertemp.c
+++ b/kinit/lnusertemp.c
@@ -256,6 +256,7 @@
 int main(int argc, char **argv)
 {
   const char *tmp = 0;
+  const char *xdg_runtime_dir = 0;
   char *tmp_prefix = 0;
   const char *kde_prefix = 0;
   int res = 0;
@@ -285,6 +286,10 @@
   }
   else if (strcmp(argv[1], socket) == 0)
   {
+xdg_runtime_dir = getenv(XDG_RUNTIME_DIR);
+if (xdg_runtime_dir  xdg_runtime_dir[0])
+  tmp = xdg_runtime_dir;
+
 tmp_prefix = (char *)malloc(strlen(tmp)+strlen(/ksocket-)+1);
 strcpy(tmp_prefix, tmp );
 strcat(tmp_prefix, /ksocket- 

commit kdelibs4 for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2014-09-18 07:57:04

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2014-08-25 10:58:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2014-09-18 07:57:28.0 +0200
@@ -1,0 +2,7 @@
+Sat Sep 13 16:20:09 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.14.1
+   * KDE 4.14.1 SC Bugfix Release
+   * See http://www.kde.org/announcements/announce-4.14.1.php
+
+---
@@ -6 +13 @@
-   * See http://www.kde.org/announcements/4.13/
+   * See http://www.kde.org/announcements/4.14/
kdelibs4.changes: same change

Old:

  kdelibs-4.14.0.tar.xz

New:

  kdelibs-4.14.1.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.FLn1Yf/_old  2014-09-18 07:57:30.0 +0200
+++ /var/tmp/diff_new_pack.FLn1Yf/_new  2014-09-18 07:57:30.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.0
+Version:4.14.1
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.FLn1Yf/_old  2014-09-18 07:57:30.0 +0200
+++ /var/tmp/diff_new_pack.FLn1Yf/_new  2014-09-18 07:57:30.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.0
+Version:4.14.1
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4

++ kdelibs-4.14.0.tar.xz - kdelibs-4.14.1.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.0.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.1.tar.xz differ: char 27, 
line 1


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



commit kdelibs4 for openSUSE:Factory

2014-08-25 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2014-08-25 10:58:03

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2014-07-16 16:21:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2014-08-25 10:58:08.0 +0200
@@ -1,0 +2,14 @@
+Fri Aug 15 08:16:44 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.14.0
+   * KDE 4.14.0 SC Final Release
+   * See http://www.kde.org/announcements/4.13/
+
+---
+Thu Jul 17 16:47:38 UTC 2014 - cgiboude...@gmx.com
+
+- Update to 4.13.90
+   * KDE 4.14 Beta 2 release
+   * See http://www.kde.org/announcements/announce-4.14-beta2.php
+
+---
kdelibs4.changes: same change

Old:

  kdelibs-4.13.80.tar.xz

New:

  kdelibs-4.14.0.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.aDCZj2/_old  2014-08-25 10:58:10.0 +0200
+++ /var/tmp/diff_new_pack.aDCZj2/_new  2014-08-25 10:58:10.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.13.80
+Version:4.14.0
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.aDCZj2/_old  2014-08-25 10:58:10.0 +0200
+++ /var/tmp/diff_new_pack.aDCZj2/_new  2014-08-25 10:58:10.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.13.80
+Version:4.14.0
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -273,7 +273,7 @@
 Summary:KDE Base Libraries
 License:LGPL-2.1+
 Group:  System/GUI/KDE
-Requires:   kde4-filesystem = %{_kde_platform_version}
+Requires:   kde4-filesystem = 4.14
 Requires:   libkdecore4 = %{version}
 %requires_gelibpolkit-qt-1-1
 

++ kdelibs-4.13.80.tar.xz - kdelibs-4.14.0.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.13.80.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.0.tar.xz differ: char 27, 
line 1


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



commit kdelibs4 for openSUSE:Factory

2014-07-16 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2014-07-16 16:19:28

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2014-06-19 13:14:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2014-07-16 16:21:59.0 +0200
@@ -1,0 +2,16 @@
+Thu Jul 10 22:29:10 UTC 2014 - cgiboude...@gmx.com
+
+- Update to 4.13.80
+   * KDE 4.14 Beta 1 release
+   * See http://www.kde.org/announcements/announce-4.14-beta1.php
+- Drop silence-warnings-with-cmake-3.patch (fixed upstream)
+- Drop CVE-2014-3494.diff (fixed upstream)
+
+---
+Thu Jun 19 10:27:15 UTC 2014 - tittiatc...@gmail.com
+
+- Add CVE-2014-3494.diff to fix a security issue that was detected.
+  The issue would make a man-in-the-middle attack possible on pop3
+  account passwords. 
+
+---
@@ -6,0 +23 @@
+- Drop avoid-automounting.patch due to upstream inclusion
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2014-06-19 
13:14:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2014-07-16 
16:21:59.0 +0200
@@ -1,0 +2,16 @@
+Thu Jul 10 22:29:10 UTC 2014 - cgiboude...@gmx.com
+
+- Update to 4.13.80
+   * KDE 4.14 Beta 1 release
+   * See http://www.kde.org/announcements/announce-4.14-beta1.php
+- Drop silence-warnings-with-cmake-3.patch (fixed upstream)
+- Drop CVE-2014-3494.diff (fixed upstream)
+
+---
+Thu Jun 19 10:27:15 UTC 2014 - tittiatc...@gmail.com
+
+- Add CVE-2014-3494.diff to fix a security issue that was detected.
+  The issue would make a man-in-the-middle attack possible on pop3
+  account passwords. 
+
+---

Old:

  kdelibs-4.13.2.tar.xz
  silence-warnings-with-cmake-3.patch

New:

  kdelibs-4.13.80.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.pgDXhS/_old  2014-07-16 16:22:01.0 +0200
+++ /var/tmp/diff_new_pack.pgDXhS/_new  2014-07-16 16:22:01.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.13.2
+Version:4.13.80
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.pgDXhS/_old  2014-07-16 16:22:01.0 +0200
+++ /var/tmp/diff_new_pack.pgDXhS/_new  2014-07-16 16:22:01.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.13.2
+Version:4.13.80
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -87,9 +87,6 @@
 Patch11:exclude-qtuitools-symbols-from-public-libraries.patch
 # PATCH-FIX-OPENSUSE 0001-Ommit-Solid-s-qDebug-and-qWarning-messages.patch -- 
we don't need verbosity here
 Patch12:0001-Ommit-Solid-s-qDebug-and-qWarning-messages.patch
-# PATCH-FIX-UPSTREAM silence-warnings-with-cmake-3.patch -- since cmake 3.0 
use of the LOCATION target property
-# is disallowed while it is used in KDE4Macros.cmake -- makes build logs more 
readable; will be in 4.14
-Patch14:silence-warnings-with-cmake-3.patch
 # PATCH-FIX-OPENSUSE 
0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch -- Nepomuk is only 
used in a private header, browserrun_p.h,
 # thus it is not needed as KParts public dependancy, makes it possible to drop 
libsoprano-devel from libkde4-devel Requires
 Patch15:0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch
@@ -151,7 +148,6 @@
 %patch10
 %patch11 -p1
 %patch12 -p1
-%patch14 -p1
 %patch15 -p1
 
 %build

++ kdelibs-4.13.2.tar.xz - kdelibs-4.13.80.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.13.2.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.13.80.tar.xz differ: char 
26, line 1


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



commit kdelibs4 for openSUSE:Factory

2014-06-19 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2014-06-19 13:14:54

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2014-05-22 06:49:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2014-06-19 13:14:59.0 +0200
@@ -1,0 +2,29 @@
+Sun Jun  8 18:27:15 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.2
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/announce-4.13.2.php
+
+---
+Sat May 24 23:25:09 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Added 0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch:
+  Nepomuk is only used in a private header, browserrun_p.h, thus it
+  is not needed as KParts public dependancy; makes it possible to
+  drop libsoprano-devel from libkde4-devel Requires
+
+---
+Sat May 24 18:35:28 UTC 2014 - wba...@tmo.at
+
+- Revert upstream commit avoid-automounting.patch (to avoid
+  auto-mounting in KDiskFreeSpaceInfo::freeSpaceInfo) as it caused
+  a regression (kde#334776)
+
+---
+Sat May 24 14:21:17 UTC 2014 - tittiatc...@gmail.com
+
+- Drop openSUSE patch make-strigi-optional.patch to restore 
+  the old kio behavior again to show file information during 
+  copy actions. (bnc#879506)
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2014-05-22 
06:49:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2014-06-19 
13:14:59.0 +0200
@@ -1,0 +2,30 @@
+Sun Jun  8 18:27:15 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.2
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/announce-4.13.2.php
+- Drop avoid-automounting.patch due to upstream inclusion
+
+---
+Sat May 24 23:25:09 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Added 0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch:
+  Nepomuk is only used in a private header, browserrun_p.h, thus it
+  is not needed as KParts public dependancy; makes it possible to
+  drop libsoprano-devel from libkde4-devel Requires
+
+---
+Sat May 24 18:35:28 UTC 2014 - wba...@tmo.at
+
+- Revert upstream commit avoid-automounting.patch (to avoid
+  auto-mounting in KDiskFreeSpaceInfo::freeSpaceInfo) as it caused
+  a regression (kde#334776)
+
+---
+Sat May 24 14:21:17 UTC 2014 - tittiatc...@gmail.com
+
+- Drop openSUSE patch make-strigi-optional.patch to restore 
+  the old kio behavior again to show file information during 
+  copy actions. (bnc#879506)
+
+---

Old:

  kdelibs-4.13.1.tar.xz
  make-strigi-optional.patch

New:

  0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch
  kdelibs-4.13.2.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.kjVjGu/_old  2014-06-19 13:15:00.0 +0200
+++ /var/tmp/diff_new_pack.kjVjGu/_new  2014-06-19 13:15:00.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.13.1
+Version:4.13.2
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.kjVjGu/_old  2014-06-19 13:15:00.0 +0200
+++ /var/tmp/diff_new_pack.kjVjGu/_new  2014-06-19 13:15:00.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.13.1
+Version:4.13.2
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -48,11 +48,15 @@
 BuildRequires:  libpolkit-qt-1-devel
 BuildRequires:  libqca2-devel = 2.0.0
 BuildRequires:  libqt4-devel = 4.8.0
+BuildRequires:  libsoprano-devel
 BuildRequires:  libudev-devel
 BuildRequires:  libxslt-devel
 BuildRequires:  pcre-devel
 BuildRequires:  phonon-devel
+BuildRequires:  shared-desktop-ontologies-devel
 BuildRequires:  shared-mime-info
+BuildRequires:  strigi
+BuildRequires:  strigi-devel
 BuildRequires:  update-desktop-files
 BuildRequires:  utempter-devel
 BuildRequires:  xz
@@ -83,11 +87,12 @@
 Patch11:exclude-qtuitools-symbols-from-public-libraries.patch
 # PATCH-FIX-OPENSUSE 

commit kdelibs4 for openSUSE:Factory

2014-05-21 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2014-05-22 06:49:04

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2014-05-06 13:57:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2014-05-22 06:49:05.0 +0200
@@ -1,0 +2,7 @@
+Fri May  9 16:39:26 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.1
+   * KDE 4.13.1  bug fix release
+   * See http://www.kde.org/announcements/announce-4.13.1.php
+
+---
kdelibs4.changes: same change

Old:

  kdelibs-4.13.0.tar.xz

New:

  kdelibs-4.13.1.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.DvV8Nb/_old  2014-05-22 06:49:07.0 +0200
+++ /var/tmp/diff_new_pack.DvV8Nb/_new  2014-05-22 06:49:07.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.13.0
+Version:4.13.1
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.DvV8Nb/_old  2014-05-22 06:49:07.0 +0200
+++ /var/tmp/diff_new_pack.DvV8Nb/_new  2014-05-22 06:49:07.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.13.0
+Version:4.13.1
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4

++ kdelibs-4.13.0.tar.xz - kdelibs-4.13.1.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.13.0.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.13.1.tar.xz differ: char 27, 
line 1


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



commit kdelibs4 for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2014-04-18 11:35:35

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2014-03-30 07:57:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2014-04-18 12:37:54.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 16:42:45 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2014-03-30 
07:57:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2014-04-18 
12:37:55.0 +0200
@@ -1,0 +2,12 @@
+Tue Apr 15 09:32:22 UTC 2014 - sweet_...@gmx.de
+
+- remove unused and unmaintained ssl certificates (bnc#873680)
+
+---
+Fri Apr 11 16:42:45 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kdelibs-4.12.97.tar.xz

New:

  kdelibs-4.13.0.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.9zFcTX/_old  2014-04-18 12:37:56.0 +0200
+++ /var/tmp/diff_new_pack.9zFcTX/_new  2014-04-18 12:37:56.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.9zFcTX/_old  2014-04-18 12:37:56.0 +0200
+++ /var/tmp/diff_new_pack.9zFcTX/_new  2014-04-18 12:37:56.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.12.97
+Version:4.13.0
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -172,6 +172,8 @@
 %install
   %kde4_makeinstall -C build
   chmod +x 
%{buildroot}%{_kde4_appsdir}/kconf_update/ksslcertificatemanager.upd.sh
+  # these unmaintained certs are probably unused anyway, remove them to be sure
+  rm -f %{buildroot}%{_kde4_appsdir}/kssl/ca-bundle.crt
   pushd build
   %create_subdir_filelist -d kdecore -v kdecore.devel
   %create_subdir_filelist -d kpty -f kdecore -v kdecore.devel

++ kdelibs-4.12.97.tar.xz - kdelibs-4.13.0.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.12.97.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.13.0.tar.xz differ: char 27, 
line 1


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



commit kdelibs4 for openSUSE:Factory

2014-03-30 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2014-03-30 07:50:52

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2014-03-18 16:01:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2014-03-30 07:57:14.0 +0200
@@ -1,0 +2,14 @@
+Thu Mar 27 17:36:42 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.12.97
+   * KDE 4.13 RC  release
+   * See http://www.kde.org/announcements/announce-4.13-rc.php
+
+---
+Thu Mar 20 18:02:42 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.12.95
+   * KDE 4.13 Beta 3  release
+   * See http://www.kde.org/announcements/announce-4.13-beta3.php
+
+---
kdelibs4.changes: same change

Old:

  kdelibs-4.12.90.tar.xz

New:

  kdelibs-4.12.97.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.n52eHC/_old  2014-03-30 08:00:24.0 +0200
+++ /var/tmp/diff_new_pack.n52eHC/_new  2014-03-30 08:00:24.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.12.90
+Version:4.12.97
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.n52eHC/_old  2014-03-30 08:00:24.0 +0200
+++ /var/tmp/diff_new_pack.n52eHC/_new  2014-03-30 08:00:24.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.12.90
+Version:4.12.97
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4

++ kdelibs-4.12.90.tar.xz - kdelibs-4.12.97.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.12.90.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.12.97.tar.xz differ: char 
27, line 1


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



commit kdelibs4 for openSUSE:Factory

2014-03-18 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2014-03-18 16:01:48

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2014-02-20 07:59:58.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2014-03-18 16:01:54.0 +0100
@@ -1,0 +2,17 @@
+Thu Mar 13 20:06:10 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.12.90
+   * KDE 4.13 Beta 2  release
+   * See http://www.kde.org/announcements/announce-4.13-beta2.php
+
+---
+Fri Mar  7 09:55:47 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.12.80
+   * KDE 4.13 Beta 1  release
+   * See http://www.kde.org/announcements/announce-4.13-beta1.php
+
+- Added openSUSE patches make-strigi-optional.patch and
+  0001-Ommit-Solid-s-qDebug-and-qWarning-messages.patch
+
+---
@@ -6,0 +24,10 @@
+   
+- Drop upstreamed patch  
+   * 0001-Fix-display-of-interlaced-GIF-images-with-giflib-v5.patch
+
+---
+Tue Jan 21 10:10:35 UTC 2014 - wba...@tmo.at
+
+- Added 0001-Fix-display-of-interlaced-GIF-images-with-giflib-v5.patch:
+  With giflib v5 GIF images don't need to be deinterlaced manually,
+  fixes display of interlaced GIF images in KHTML on 13.1 (kde#330148)
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2014-02-20 
07:59:58.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2014-03-18 
16:01:54.0 +0100
@@ -1,0 +2,17 @@
+Thu Mar 13 20:06:10 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.12.90
+   * KDE 4.13 Beta 2  release
+   * See http://www.kde.org/announcements/announce-4.13-beta2.php
+
+---
+Fri Mar  7 09:55:47 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.12.80
+   * KDE 4.13 Beta 1  release
+   * See http://www.kde.org/announcements/announce-4.13-beta1.php
+
+- Added openSUSE patches make-strigi-optional.patch and
+  0001-Ommit-Solid-s-qDebug-and-qWarning-messages.patch
+
+---

Old:

  kdelibs-4.12.2.tar.xz

New:

  0001-Ommit-Solid-s-qDebug-and-qWarning-messages.patch
  kdelibs-4.12.90.tar.xz
  make-strigi-optional.patch



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.QvSRPg/_old  2014-03-18 16:01:55.0 +0100
+++ /var/tmp/diff_new_pack.QvSRPg/_new  2014-03-18 16:01:55.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.12.2
+Version:4.12.90
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.QvSRPg/_old  2014-03-18 16:01:55.0 +0100
+++ /var/tmp/diff_new_pack.QvSRPg/_new  2014-03-18 16:01:55.0 +0100
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.12.2
+Version:4.12.90
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -48,15 +48,11 @@
 BuildRequires:  libpolkit-qt-1-devel
 BuildRequires:  libqca2-devel = 2.0.0
 BuildRequires:  libqt4-devel = 4.8.0
-BuildRequires:  libsoprano-devel = 2.7.56
 BuildRequires:  libudev-devel
 BuildRequires:  libxslt-devel
 BuildRequires:  pcre-devel
 BuildRequires:  phonon-devel
-BuildRequires:  shared-desktop-ontologies-devel = 0.10.0
 BuildRequires:  shared-mime-info
-BuildRequires:  strigi
-BuildRequires:  strigi-devel = 0.6.3
 BuildRequires:  update-desktop-files
 BuildRequires:  utempter-devel
 BuildRequires:  xz
@@ -85,10 +81,12 @@
 # this patch exlcudes qtuitools symbols from libs that link to qtuitools, as 
otherwise users of
 # those libs are crashing(bnc#819437, kde#303576, kde#231077, qtbug#437)
 Patch11:exclude-qtuitools-symbols-from-public-libraries.patch
+# PATCH-FIX-OPENSUSE 0001-Ommit-Solid-s-qDebug-and-qWarning-messages.patch -- 
we don't need verbosity here
+Patch12:0001-Ommit-Solid-s-qDebug-and-qWarning-messages.patch
+# PATCH-FIX-OPENSUSE make-strigi-optional.patch -- kill, kill, kill!!
+Patch13:make-strigi-optional.patch
 PreReq: permissions
 Requires:   libattica0_4 = %( echo `rpm -q --queryformat '%{VERSION}' 
libattica-devel`)
-Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
-Recommends: strigi = %( echo `rpm -q --queryformat '%{VERSION}' 
strigi-devel`)
 Recommends: 

commit kdelibs4 for openSUSE:Factory

2014-02-19 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2014-02-20 07:57:48

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2014-01-23 15:46:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2014-02-20 07:59:58.0 +0100
@@ -1,0 +2,7 @@
+Sat Feb  1 10:07:12 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.12.2
+   * KDE 4.12.2  release
+   * See http://www.kde.org/announcements/announce-4.12.2.php
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2014-01-23 
15:46:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2014-02-20 
07:59:58.0 +0100
@@ -1,0 +2,10 @@
+Sat Feb  1 10:07:12 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.12.2
+   * KDE 4.12.2  release
+   * See http://www.kde.org/announcements/announce-4.12.2.php
+   
+- Drop upstreamed patch  
+   * 0001-Fix-display-of-interlaced-GIF-images-with-giflib-v5.patch
+
+---

Old:

  0001-Fix-display-of-interlaced-GIF-images-with-giflib-v5.patch
  kdelibs-4.12.1.tar.xz

New:

  kdelibs-4.12.2.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.F3SJIg/_old  2014-02-20 07:59:59.0 +0100
+++ /var/tmp/diff_new_pack.F3SJIg/_new  2014-02-20 07:59:59.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.12.1
+Version:4.12.2
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.F3SJIg/_old  2014-02-20 07:59:59.0 +0100
+++ /var/tmp/diff_new_pack.F3SJIg/_new  2014-02-20 07:59:59.0 +0100
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.12.1
+Version:4.12.2
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -85,9 +85,6 @@
 # this patch exlcudes qtuitools symbols from libs that link to qtuitools, as 
otherwise users of
 # those libs are crashing(bnc#819437, kde#303576, kde#231077, qtbug#437)
 Patch11:exclude-qtuitools-symbols-from-public-libraries.patch
-# PATCH-FIX-UPSTREAM  -- With giflib v5 GIF images don't need to be 
deinterlaced manually,
-# fixes display of interlaced GIF images in KHTML on 13.1 (kde#330148)
-Patch12:0001-Fix-display-of-interlaced-GIF-images-with-giflib-v5.patch
 PreReq: permissions
 Requires:   libattica0_4 = %( echo `rpm -q --queryformat '%{VERSION}' 
libattica-devel`)
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
@@ -149,7 +146,6 @@
 %patch9
 %patch10
 %patch11 -p1
-%patch12 -p1
 
 %build
   EXTRA_FLAGS=-DLIB_INSTALL_DIR=%{_kde4_libdir} \

++ kdelibs-4.12.1.tar.xz - kdelibs-4.12.2.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.12.1.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.12.2.tar.xz differ: char 26, 
line 1


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



commit kdelibs4 for openSUSE:Factory

2014-01-23 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2014-01-22 18:19:52

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2013-12-19 13:14:58.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2014-01-23 15:46:26.0 +0100
@@ -1,0 +2,18 @@
+Sat Jan 11 15:32:25 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.12.1
+   * KDE 4.12.1  release
+   * See http://www.kde.org/announcements/announce-4.12.1.php
+
+---
+Thu Jan  9 13:52:12 UTC 2014 - idon...@suse.com
+
+- Remove gamin-devel dependency, KDirWatch can use in-kernel inotify
+  functionality instead.
+
+---
+Wed Jan  8 13:53:33 UTC 2014 - adr...@suse.de
+
+- use gamin-devel instead of unmaintained fam(-devel) package
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2014-01-09 
19:19:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2014-01-23 
15:46:26.0 +0100
@@ -1,0 +2,14 @@
+Tue Jan 21 10:10:35 UTC 2014 - wba...@tmo.at
+
+- Added 0001-Fix-display-of-interlaced-GIF-images-with-giflib-v5.patch:
+  With giflib v5 GIF images don't need to be deinterlaced manually,
+  fixes display of interlaced GIF images in KHTML on 13.1 (kde#330148)
+
+---
+Sat Jan 11 15:32:25 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.12.1
+   * KDE 4.12.1  release
+   * See http://www.kde.org/announcements/announce-4.12.1.php
+
+---

Old:

  kdelibs-4.12.0.tar.xz

New:

  0001-Fix-display-of-interlaced-GIF-images-with-giflib-v5.patch
  kdelibs-4.12.1.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.rKVQdq/_old  2014-01-23 15:46:27.0 +0100
+++ /var/tmp/diff_new_pack.rKVQdq/_new  2014-01-23 15:46:27.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.12.0
+Version:4.12.1
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.rKVQdq/_old  2014-01-23 15:46:27.0 +0100
+++ /var/tmp/diff_new_pack.rKVQdq/_new  2014-01-23 15:46:27.0 +0100
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.12.0
+Version:4.12.1
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -85,6 +85,9 @@
 # this patch exlcudes qtuitools symbols from libs that link to qtuitools, as 
otherwise users of
 # those libs are crashing(bnc#819437, kde#303576, kde#231077, qtbug#437)
 Patch11:exclude-qtuitools-symbols-from-public-libraries.patch
+# PATCH-FIX-UPSTREAM  -- With giflib v5 GIF images don't need to be 
deinterlaced manually,
+# fixes display of interlaced GIF images in KHTML on 13.1 (kde#330148)
+Patch12:0001-Fix-display-of-interlaced-GIF-images-with-giflib-v5.patch
 PreReq: permissions
 Requires:   libattica0_4 = %( echo `rpm -q --queryformat '%{VERSION}' 
libattica-devel`)
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
@@ -146,6 +149,7 @@
 %patch9
 %patch10
 %patch11 -p1
+%patch12 -p1
 
 %build
   EXTRA_FLAGS=-DLIB_INSTALL_DIR=%{_kde4_libdir} \

++ 0001-Fix-display-of-interlaced-GIF-images-with-giflib-v5.patch ++
From c4a7dc9bdb25e5f91a7b067636d38ff6c9bdc3bb Mon Sep 17 00:00:00 2001
From: Andreas Schwab sch...@linux-m68k.org
Date: Sun, 19 Jan 2014 11:20:39 +0100
Subject: [PATCH] Fix display of interlaced GIF images with giflib v5

With giflib v5 GIF images don't need to be deinterlaced manually
---
 khtml/imload/decoders/gifloader.cpp | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/khtml/imload/decoders/gifloader.cpp 
b/khtml/imload/decoders/gifloader.cpp
index 0c1acf5..6c61ff5 100644
--- a/khtml/imload/decoders/gifloader.cpp
+++ b/khtml/imload/decoders/gifloader.cpp
@@ -502,6 +502,7 @@ public:
 else
 buf = new uchar[w];
 
+#if GIFLIB_MAJOR  5
 if (curFrame-ImageDesc.Interlace)
 {
 // Interlaced. Considering we don't do progressive loading of 
gif's, 
@@ -551,6 +552,7 @@ public:
 } // for pass..
 } // if interlaced
 else
+#endif
 {
  

commit kdelibs4 for openSUSE:Factory

2014-01-09 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2014-01-09 19:19:10

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2013-12-19 
13:14:58.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2014-01-09 
19:19:11.0 +0100
@@ -1,0 +2,11 @@
+Thu Jan  9 13:52:12 UTC 2014 - idon...@suse.com
+
+- Remove gamin-devel dependency, KDirWatch can use in-kernel inotify
+  functionality instead.
+
+---
+Wed Jan  8 13:53:33 UTC 2014 - adr...@suse.de
+
+- use gamin-devel instead of unmaintained fam(-devel) package
+
+---



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.xTMwVY/_old  2014-01-09 19:19:12.0 +0100
+++ /var/tmp/diff_new_pack.xTMwVY/_new  2014-01-09 19:19:12.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4-apidocs
 #
-# 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

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.xTMwVY/_old  2014-01-09 19:19:12.0 +0100
+++ /var/tmp/diff_new_pack.xTMwVY/_new  2014-01-09 19:19:12.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4
 #
-# 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
@@ -29,7 +29,6 @@
 BuildRequires:  cmake = 2.8.9
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  enchant-devel
-BuildRequires:  fam-devel
 BuildRequires:  fdupes
 BuildRequires:  flex
 BuildRequires:  giflib-devel
@@ -389,7 +388,6 @@
 Requires:   avahi-compat-mDNSResponder-devel
 Requires:   docbook-xsl-stylesheets
 Requires:   enchant-devel
-Requires:   fam-devel
 Requires:   giflib-devel
 Requires:   kdelibs4 = %{version}
 Requires:   kdelibs4-doc = %{version}


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



commit kdelibs4 for openSUSE:Factory

2013-12-19 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2013-12-19 13:14:57

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2013-12-11 14:32:29.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2013-12-19 13:14:58.0 +0100
@@ -1,0 +2,7 @@
+Sat Dec 14 18:00:14 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.12.0
+   * KDE 4.12.0  release
+   * See http://www.kde.org/announcements/4.12.php
+
+---
kdelibs4.changes: same change

Old:

  kdelibs-4.11.97.tar.xz

New:

  kdelibs-4.12.0.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.Sd8F3w/_old  2013-12-19 13:14:59.0 +0100
+++ /var/tmp/diff_new_pack.Sd8F3w/_new  2013-12-19 13:14:59.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.11.97
+Version:4.12.0
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.Sd8F3w/_old  2013-12-19 13:14:59.0 +0100
+++ /var/tmp/diff_new_pack.Sd8F3w/_new  2013-12-19 13:14:59.0 +0100
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.11.97
+Version:4.12.0
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4

++ kdelibs-4.11.97.tar.xz - kdelibs-4.12.0.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.11.97.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.12.0.tar.xz differ: char 27, 
line 1


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



commit kdelibs4 for openSUSE:Factory

2013-12-11 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2013-12-11 14:32:28

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2013-12-02 12:31:00.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2013-12-11 14:32:29.0 +0100
@@ -1,0 +2,41 @@
+Mon Dec  9 21:54:21 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Small cleanup:
+   * Remove {?sles_version} and unsupported %{suse_version} checks
+   * Remove rpmlintrc file, it was used only for sles
+   * Remove alsa-devel and cups-devel requires from devel package,
+ they are not needed
+   * Remove grantlee-devel BuildRequires, it is needed only for tests,
+ which we don't build
+   * Adapt BuildRequires, and Requires to current requirements, as per
+ CMakeLists.txt
+   * Drop dubious kderev define
+   * Delete unused 0001-verbose.patch
+
+---
+Fri Nov 29 06:59:36 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.11.97
+   * KDE 4.12 RC 1 release
+   * See http://www.kde.org/announcements/announce-4.12-rc.php
+
+---
+Fri Nov 29 06:55:14 UTC 2013 - tittiatc...@gmail.com
+
+- Drop patch fix_kio_global_qfile_include.patch due to upstream
+  inclusion
+
+---
+Sun Nov 24 15:22:18 UTC 2013 - ctri...@opensuse.org
+
+- Add fix_kio_global_qfile_include.patch to change the include of
+  QFile in kio/kio/global.h to be consistent with the other Qt includes
+
+---
+Sat Nov 23 22:14:13 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.11.95
+   * KDE 4.12 Beta 3 release
+   * See http://www.kde.org/announcements/announce-4.12-beta3.php
+
+---
kdelibs4.changes: same change

Old:

  0001-verbose.patch
  kdelibs-4.11.90.tar.xz
  kdelibs4-rpmlintrc

New:

  kdelibs-4.11.97.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.cXvLaD/_old  2013-12-11 14:32:30.0 +0100
+++ /var/tmp/diff_new_pack.cXvLaD/_new  2013-12-11 14:32:30.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.11.90
+Version:4.11.97
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.cXvLaD/_old  2013-12-11 14:32:30.0 +0100
+++ /var/tmp/diff_new_pack.cXvLaD/_new  2013-12-11 14:32:30.0 +0100
@@ -19,12 +19,8 @@
 # a hack for building apidoc, currently unused and unneeded (rev.312)
 %bcond_with gendoxygen
 
-# This is KDE revision number, setting it to a higher value will enable more 
features
-# e.g. 420117248 enables kconfig_compiler.1
-%define kderev 0
-
 Name:   kdelibs4
-Version:4.11.90
+Version:4.11.97
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -37,7 +33,6 @@
 BuildRequires:  fdupes
 BuildRequires:  flex
 BuildRequires:  giflib-devel
-BuildRequires:  grantlee-devel
 BuildRequires:  help2man
 #Remove herqq support as this causes frequent crashes (bnc#768368)
 #BuildRequires:  herqq-devel
@@ -46,17 +41,15 @@
 BuildRequires:  krb5-devel
 BuildRequires:  libQtWebKit-devel
 BuildRequires:  libacl-devel
-BuildRequires:  libattica-devel
+BuildRequires:  libattica-devel = 0.4.2
 BuildRequires:  libattr-devel
 BuildRequires:  libdbusmenu-qt-devel
 BuildRequires:  libgssglue-devel
 BuildRequires:  libjasper-devel
-BuildRequires:  libqt4-devel = 4.8.0
-%if !0%{?sles_version}
 BuildRequires:  libpolkit-qt-1-devel
-%endif
-BuildRequires:  libqca2-devel
-BuildRequires:  libsoprano-devel
+BuildRequires:  libqca2-devel = 2.0.0
+BuildRequires:  libqt4-devel = 4.8.0
+BuildRequires:  libsoprano-devel = 2.7.56
 BuildRequires:  libudev-devel
 BuildRequires:  libxslt-devel
 BuildRequires:  pcre-devel
@@ -64,20 +57,12 @@
 BuildRequires:  shared-desktop-ontologies-devel = 0.10.0
 BuildRequires:  shared-mime-info
 BuildRequires:  strigi
-BuildRequires:  strigi-devel
+BuildRequires:  strigi-devel = 0.6.3
 BuildRequires:  update-desktop-files
-%if !0%{?sles_version}
 BuildRequires:  utempter-devel
-%else
-BuildRequires:  utempter
-%endif
 BuildRequires:  xz
 BuildRequires:  xz-devel
-%if !0%{?sles_version}
 BuildRequires:  pkgconfig(bzip2)
-%else
-BuildRequires:  libbz2-devel
-%endif
 Summary:KDE Base Libraries
 License:LGPL-2.1+
 Group: 

commit kdelibs4 for openSUSE:Factory

2013-12-02 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2013-12-02 12:30:58

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2013-10-19 11:15:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2013-12-02 12:31:00.0 +0100
@@ -1,0 +2,37 @@
+Sat Nov 16 17:47:09 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.11.90
+   * KDE 4.12 Beta 2 release
+   * See http://www.kde.org/announcements/announce-4.12-beta2.php
+
+---
+Sat Nov  9 22:47:53 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.11.80
+   * KDE 4.12 Beta 1 release
+   * See http://www.kde.org/announcements/announce-4.12-beta1.php
+ 
+ - Dropped 0001-verbose.patch as we are now on 4.12 
+master.
+
+---
+Sat Nov  2 15:00:09 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.11.3
+   * KDE 4.11.3 bugfix release
+   * See http://www.kde.org/announcements/announce-4.11.3.php
+
+---
+Sat Nov  2 14:56:50 UTC 2013 - tittiatc...@gmail.com
+
+- Drop patches due to upstream inclusion:
+  * 0001-Fix-association-with-derived-mimetype-again.patch
+  * 0001-Improve-fix-for-association-with-derived-mimetypes.patch
+
+---
+Mon Oct 21 14:30:48 UTC 2013 - wba...@tmo.at
+
+- Added 0001-Improve-fix-for-association-with-derived-mimetypes.patch,
+  improves the last fix for mimetype handling (kde#321706)
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2013-10-22 
10:18:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2013-12-02 
12:31:00.0 +0100
@@ -1,0 +2,31 @@
+Sat Nov 16 17:47:09 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.11.90
+   * KDE 4.12 Beta 2 release
+   * See http://www.kde.org/announcements/announce-4.12-beta2.php
+
+---
+Sat Nov  9 22:47:53 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.11.80
+   * KDE 4.12 Beta 1 release
+   * See http://www.kde.org/announcements/announce-4.12-beta1.php
+ 
+ - Dropped 0001-verbose.patch as we are now on 4.12 
+master.
+
+---
+Sat Nov  2 15:00:09 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.11.3
+   * KDE 4.11.3 bugfix release
+   * See http://www.kde.org/announcements/announce-4.11.3.php
+
+---
+Sat Nov  2 14:56:50 UTC 2013 - tittiatc...@gmail.com
+
+- Drop patches due to upstream inclusion:
+  * 0001-Fix-association-with-derived-mimetype-again.patch
+  * 0001-Improve-fix-for-association-with-derived-mimetypes.patch
+
+---

Old:

  0001-Fix-association-with-derived-mimetype-again.patch
  0001-Improve-fix-for-association-with-derived-mimetypes.patch
  kdelibs-4.11.2.tar.xz

New:

  kdelibs-4.11.90.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.3Q67hr/_old  2013-12-02 12:31:01.0 +0100
+++ /var/tmp/diff_new_pack.3Q67hr/_new  2013-12-02 12:31:01.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.11.2
+Version:4.11.90
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.3Q67hr/_old  2013-12-02 12:31:01.0 +0100
+++ /var/tmp/diff_new_pack.3Q67hr/_new  2013-12-02 12:31:01.0 +0100
@@ -24,7 +24,7 @@
 %define kderev 0
 
 Name:   kdelibs4
-Version:4.11.2
+Version:4.11.90
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -104,14 +104,6 @@
 # this patch exlcudes qtuitools symbols from libs that link to qtuitools, as 
otherwise users of
 # those libs are crashing(bnc#819437, kde#303576, kde#231077, qtbug#437)
 Patch11:exclude-qtuitools-symbols-from-public-libraries.patch
-# PATCH-FIX-OPENSUSE 0001-verbose.patch -- disables qDebug for udisks2 
queries, which resulted in ugly output,
-# when e.g. starting dolphin from CLI
-# NOTE patch is from master, aka 4.12 branch
-Patch1000:  0001-verbose.patch
-# PATCH-FIX-UPSTREAM 0001-Fix-association-with-derived-mimetype-again.patch -- 
fixup for resolving kde#321706. resolves 

commit kdelibs4 for openSUSE:Factory

2013-10-22 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2013-10-22 10:18:05

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2013-10-19 
11:15:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2013-10-22 
10:18:06.0 +0200
@@ -1,0 +2,6 @@
+Mon Oct 21 14:30:48 UTC 2013 - wba...@tmo.at
+
+- Added 0001-Improve-fix-for-association-with-derived-mimetypes.patch,
+  improves the last fix for mimetype handling (kde#321706)
+
+---

New:

  0001-Improve-fix-for-association-with-derived-mimetypes.patch



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.Mlh1vu/_old  2013-10-22 10:18:15.0 +0200
+++ /var/tmp/diff_new_pack.Mlh1vu/_new  2013-10-22 10:18:15.0 +0200
@@ -110,6 +110,8 @@
 Patch1000:  0001-verbose.patch
 # PATCH-FIX-UPSTREAM 0001-Fix-association-with-derived-mimetype-again.patch -- 
fixup for resolving kde#321706. resolves kde#324502
 Patch2000:  0001-Fix-association-with-derived-mimetype-again.patch
+# PATCH-FIX-UPSTREAM 
0001-Improve-fix-for-association-with-derived-mimetypes.patch -- followup fix 
for resolving kde#321706.
+Patch2001:  0001-Improve-fix-for-association-with-derived-mimetypes.patch
 PreReq: permissions
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
 Recommends: strigi = %( echo `rpm -q --queryformat '%{VERSION}' 
strigi-devel`)
@@ -176,6 +178,7 @@
 %patch11 -p1
 %patch1000 -p1
 %patch2000 -p1
+%patch2001 -p1
 
 %build
   EXTRA_FLAGS=-DLIB_INSTALL_DIR=%{_kde4_libdir} \

++ 0001-Improve-fix-for-association-with-derived-mimetypes.patch ++
commit 8bfcace7efc0feea8899f70dfc15c3050c90ea99
Author: David Faure fa...@kde.org
Date:   Sat Oct 19 10:15:35 2013 +0200

Improve fix for association with derived mimetypes (f723e2e7d36)

If a desktop file was mentionning two aliases, they would both get
removed, due to is() returning true for aliases as well.

CCBUG: 321706

diff --git a/kded/kbuildservicefactory.cpp b/kded/kbuildservicefactory.cpp
index b4564bd..7a2a2fc 100644
--- a/kded/kbuildservicefactory.cpp
+++ b/kded/kbuildservicefactory.cpp
@@ -269,8 +269,13 @@ void KBuildServiceFactory::populateServiceTypes()
 } else {
 bool shouldAdd = true;
 foreach (const QString otherType, 
service-serviceTypes()) {
+// Skip derived types if the base class is listed 
(#321706)
 if (stName != otherType  mime-is(otherType)) {
-shouldAdd = false;
+// But don't skip aliases (they got resolved into 
mime-name() already, but don't let two aliases cancel out)
+if 
(KMimeTypeRepository::self()-canonicalName(otherType) != mime-name()) {
+//kDebug()  Skipping  mime-name()  
because of  otherType  (canonical  
KMimeTypeRepository::self()-canonicalName(otherType)  ) while parsing  
service-entryPath();
+shouldAdd = false;
+}
 }
 }
 if (shouldAdd) {
diff --git a/kded/tests/kmimeassociationstest.cpp 
b/kded/tests/kmimeassociationstest.cpp
index a07637f..342a8fd 100644
--- a/kded/tests/kmimeassociationstest.cpp
+++ b/kded/tests/kmimeassociationstest.cpp
@@ -140,10 +140,12 @@ private Q_SLOTS:
 // This interacted badly with mimeapps.list listing another app for 
text/plain, but the
 // lookup found this app first, due to c-src. The fix: ignoring 
derived mimetypes when
 // the base mimetype is already listed.
+//
+// Also include aliases (msword), to check they don't cancel each 
other out.
 fakeCSrcApplication = m_localApps + fakecsrcapplication.desktop;
 if (!QFile::exists(fakeCSrcApplication)) {
 mustUpdateKSycoca = true;
-writeAppDesktopFile(fakeCSrcApplication, QStringList()  
text/plain  text/c-src, 8);
+writeAppDesktopFile(fakeCSrcApplication, QStringList()  
text/plain  text/c-src  application/vnd.ms-word  
application/msword, 8);
 }
 
 fakeJpegApplication = m_localApps + fakejpegapplication.desktop;
@@ -200,6 +202,7 @@ private Q_SLOTS:
 preferredApps[text/plain]  faketextapplication.desktop  
kde4-kwrite.desktop;
 preferredApps[text/x-csrc]  faketextapplication.desktop  

commit kdelibs4 for openSUSE:Factory

2013-10-19 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2013-10-19 11:11:07

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2013-10-03 15:54:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2013-10-19 11:15:56.0 +0200
@@ -1,0 +2,6 @@
+Fri Oct 18 15:40:44 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Added 0001-Fix-association-with-derived-mimetype-again.patch, fixes
+  remaining issues in mimetype handling, see e.g. kde#324502
+
+---
kdelibs4.changes: same change

New:

  0001-Fix-association-with-derived-mimetype-again.patch



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.J93iYU/_old  2013-10-19 11:16:11.0 +0200
+++ /var/tmp/diff_new_pack.J93iYU/_new  2013-10-19 11:16:11.0 +0200
@@ -108,6 +108,8 @@
 # when e.g. starting dolphin from CLI
 # NOTE patch is from master, aka 4.12 branch
 Patch1000:  0001-verbose.patch
+# PATCH-FIX-UPSTREAM 0001-Fix-association-with-derived-mimetype-again.patch -- 
fixup for resolving kde#321706. resolves kde#324502
+Patch2000:  0001-Fix-association-with-derived-mimetype-again.patch
 PreReq: permissions
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
 Recommends: strigi = %( echo `rpm -q --queryformat '%{VERSION}' 
strigi-devel`)
@@ -173,6 +175,7 @@
 %patch10
 %patch11 -p1
 %patch1000 -p1
+%patch2000 -p1
 
 %build
   EXTRA_FLAGS=-DLIB_INSTALL_DIR=%{_kde4_libdir} \

++ 0001-Fix-association-with-derived-mimetype-again.patch ++
From f723e2e7d36b597c5262bf63dde380d89ec6bfcb Mon Sep 17 00:00:00 2001
From: David Faure fa...@kde.org
Date: Fri, 18 Oct 2013 09:44:17 +0200
Subject: [PATCH 1/1] Fix association-with-derived-mimetype again.

8718a88a made it impossible to re-order file type associations.
7f42bf253009 fixed that, but changed the value of KService::mimeTypes(), which
broke okular. This new fix works the same way, but only inside kbuildsycoca
when it processes the mimetypes. The value of KService::mimeTypes() is now
restored to be exactly what's in the desktop file.

CCBUG: 321706
FIXED-IN: 4.11.3
---
 kdecore/services/kservice.cpp  | 45 +-
 kdecore/tests/kservicetest.cpp |  7 ---
 kded/kbuildservicefactory.cpp  | 11 ++-
 3 files changed, 23 insertions(+), 40 deletions(-)

diff --git a/kdecore/services/kservice.cpp b/kdecore/services/kservice.cpp
index d7945bf..8e81929 100644
--- a/kdecore/services/kservice.cpp
+++ b/kdecore/services/kservice.cpp
@@ -227,44 +227,17 @@ void KServicePrivate::init( const KDesktopFile *config, 
KService* q )
 has an empty mimetype!;
 continue;
 }
-
-// The following searches through the list for duplicate, inherited 
mimetypes
-// For example, if application/rtf and text/plain are both listed 
application/rtf is removed
-// since it is inherited from text/plain
-// This is a reworked fix for revision 
8718a88a600c8f850a020d44bfc5f5858caa
-bool shouldAdd = true;
-KMimeType::Ptr mimeType1 = 
KMimeTypeRepository::self()-findMimeTypeByName(st);
-if (mimeType1) {
-foreach(const QString mime2, lstServiceTypes) {
-// Don't compare the mimetype with itself
-if (st == mime2) {
-continue;
-}
-
-// is checks for inheritance and aliases, so this should 
suffice
-if (mimeType1-is(mime2)) {
-shouldAdd = false;
-break;
-}
+int initialPreference = m_initialPreference;
+if ( st_it.hasNext() ) {
+// TODO better syntax - separate group with mimetype=number 
entries?
+bool isNumber;
+const int val = st_it.peekNext().toInt(isNumber);
+if (isNumber) {
+initialPreference = val;
+st_it.next();
 }
 }
-
-// Only add unique mimetypes
-if (shouldAdd) {
-int initialPreference = m_initialPreference;
-if (st_it.hasNext()) {
-// TODO better syntax - separate group with mimetype=number 
entries?
-bool isNumber;
-const int val = st_it.peekNext().toInt(isNumber);
-if (isNumber) {
-initialPreference = val;
-st_it.next();
-

commit kdelibs4 for openSUSE:Factory

2013-09-09 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2013-09-09 11:06:16

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2013-08-30 11:39:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2013-09-09 11:06:18.0 +0200
@@ -1,0 +2,21 @@
+Tue Sep  3 22:29:25 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Added 0001-verbose.patch which disables qDebug for udisks2 queries, 
+  which resulted in ugly output, when e.g. starting dolphin from CLI
+
+---
+Sun Sep  1 09:55:15 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.11.1
+   * KDE 4.11.1 bugfix release
+   * See http://www.kde.org/announcements/announce-4.11.1.php
+
+---
+Sun Sep  1 09:49:01 UTC 2013 - tittiatc...@gmail.com
+
+- Drop upstream patches to prepare for the 4.11.1 update:
+  * 0001-when-the-request-theme-does-not-exist-delete-all-old.patch
+  * 0002-Fix-crash-when-failing-to-get-audio-CD-block-device.patch
+  * 0003-Fix-reordering-of-apps-for-a-derived-mimetype.patch
+
+---
kdelibs4.changes: same change

Old:

  0001-when-the-request-theme-does-not-exist-delete-all-old.patch
  0002-Fix-crash-when-failing-to-get-audio-CD-block-device.patch
  0003-Fix-reordering-of-apps-for-a-derived-mimetype.patch
  kdelibs-4.11.0.tar.xz

New:

  0001-verbose.patch
  kdelibs-4.11.1.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.7RDjXh/_old  2013-09-09 11:06:19.0 +0200
+++ /var/tmp/diff_new_pack.7RDjXh/_new  2013-09-09 11:06:19.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.11.0
+Version:4.11.1
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.7RDjXh/_old  2013-09-09 11:06:19.0 +0200
+++ /var/tmp/diff_new_pack.7RDjXh/_new  2013-09-09 11:06:19.0 +0200
@@ -24,7 +24,7 @@
 %define kderev 0
 
 Name:   kdelibs4
-Version:4.11.0
+Version:4.11.1
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -104,13 +104,10 @@
 # this patch exlcudes qtuitools symbols from libs that link to qtuitools, as 
otherwise users of
 # those libs are crashing(bnc#819437, kde#303576, kde#231077, qtbug#437)
 Patch11:exclude-qtuitools-symbols-from-public-libraries.patch
-# PATCH-FIX-UPSTREAM 
0001-when-the-request-theme-does-not-exist-delete-all-old.patch -- fixes crash 
on non-existing plasma themes (kde#320855)
-Patch100:   0001-when-the-request-theme-does-not-exist-delete-all-old.patch
-# PATCH-FIX-UPSTREAM 
0002-Fix-crash-when-failing-to-get-audio-CD-block-device.patch -- fixes crash 
when failing to get audio CD block device (kde#314544)
-Patch101:   0002-Fix-crash-when-failing-to-get-audio-CD-block-device.patch
-# PATCH-FIX-UPSTREAM 0003-Fix-reordering-of-apps-for-a-derived-mimetype.patch 
-- fixes a bug introduced by 8718a88a60 that made it impossible to re-order
-# file type associations both in System settings and in the open with list 
(kde#321706)
-Patch102:   0003-Fix-reordering-of-apps-for-a-derived-mimetype.patch
+# PATCH-FIX-OPENSUSE 0001-verbose.patch -- disables qDebug for udisks2 
queries, which resulted in ugly output,
+# when e.g. starting dolphin from CLI
+# NOTE patch is from master, aka 4.12 branch
+Patch1000:  0001-verbose.patch
 PreReq: permissions
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
 Recommends: strigi = %( echo `rpm -q --queryformat '%{VERSION}' 
strigi-devel`)
@@ -175,9 +172,7 @@
 %patch9
 %patch10
 %patch11 -p1
-%patch100 -p1
-%patch101 -p1
-%patch102 -p1
+%patch1000 -p1
 
 %build
   EXTRA_FLAGS=-DLIB_INSTALL_DIR=%{_kde4_libdir} \

++ 0001-verbose.patch ++
From 951be54a387a23175ba2d3d03c7a956c880eccc4 Mon Sep 17 00:00:00 2001
From: Aleix Pol aleix...@kde.org
Date: Mon, 2 Sep 2013 15:29:46 +0200
Subject: [PATCH 2/3] --verbose

Comment qDebug call, that we cannot disable. It's helpful when
testing/debugging to keep the output to what we are expecting.

Reviewed by Lukas Tinkl
---
 solid/solid/backends/udisks2/udisksdevicebackend.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solid/solid/backends/udisks2/udisksdevicebackend.cpp 
b/solid/solid/backends/udisks2/udisksdevicebackend.cpp
index 

commit kdelibs4 for openSUSE:Factory

2013-08-30 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2013-08-30 11:39:34

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2013-08-18 22:21:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2013-08-30 11:39:35.0 +0200
@@ -1,0 +2,9 @@
+Mon Aug 26 14:54:36 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Added patch from upstream:
+  0003-Fix-reordering-of-apps-for-a-derived-mimetype.patch -- fixes 
+  a bug introduced by 8718a88a60 that made it impossible to 
+  re-order file type associations both in System settings and in 
+  the open with list (kde#321706)
+
+---
kdelibs4.changes: same change

New:

  0003-Fix-reordering-of-apps-for-a-derived-mimetype.patch



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.YpcH7I/_old  2013-08-30 11:39:36.0 +0200
+++ /var/tmp/diff_new_pack.YpcH7I/_new  2013-08-30 11:39:36.0 +0200
@@ -108,6 +108,9 @@
 Patch100:   0001-when-the-request-theme-does-not-exist-delete-all-old.patch
 # PATCH-FIX-UPSTREAM 
0002-Fix-crash-when-failing-to-get-audio-CD-block-device.patch -- fixes crash 
when failing to get audio CD block device (kde#314544)
 Patch101:   0002-Fix-crash-when-failing-to-get-audio-CD-block-device.patch
+# PATCH-FIX-UPSTREAM 0003-Fix-reordering-of-apps-for-a-derived-mimetype.patch 
-- fixes a bug introduced by 8718a88a60 that made it impossible to re-order
+# file type associations both in System settings and in the open with list 
(kde#321706)
+Patch102:   0003-Fix-reordering-of-apps-for-a-derived-mimetype.patch
 PreReq: permissions
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
 Recommends: strigi = %( echo `rpm -q --queryformat '%{VERSION}' 
strigi-devel`)
@@ -174,6 +177,7 @@
 %patch11 -p1
 %patch100 -p1
 %patch101 -p1
+%patch102 -p1
 
 %build
   EXTRA_FLAGS=-DLIB_INSTALL_DIR=%{_kde4_libdir} \

++ 0003-Fix-reordering-of-apps-for-a-derived-mimetype.patch ++
From 7f42bf2530090526d0150428fe58b87123317e2e Mon Sep 17 00:00:00 2001
From: David Faure fa...@kde.org
Date: Mon, 26 Aug 2013 15:46:22 +0200
Subject: [PATCH 1/1] Fix reordering of apps for a derived mimetype.

This fixes a bug introduced by 8718a88a60 that made it impossible to 
re-order
file type associations both in System settings and in the open with list. Hence
it contains a new way of detecting duplicate (inherited) mimetype entries, that
the original was supposed to fix.

Unittest is in kde-runtime, commit 967979f (if I can commit it fast enough ;)

Patch by Mathias Tillman.
REVIEW: 111951
BUG: 321706
FIXED-IN: 4.11.1
---
 kdecore/services/kservice.cpp | 45 ++-
 kded/kbuildservicefactory.cpp |  2 +-
 kded/kmimeassociations.cpp| 25 
 kded/kmimeassociations.h  |  1 -
 4 files changed, 37 insertions(+), 36 deletions(-)

diff --git a/kdecore/services/kservice.cpp b/kdecore/services/kservice.cpp
index 8e81929..d7945bf 100644
--- a/kdecore/services/kservice.cpp
+++ b/kdecore/services/kservice.cpp
@@ -227,17 +227,44 @@ void KServicePrivate::init( const KDesktopFile *config, 
KService* q )
 has an empty mimetype!;
 continue;
 }
-int initialPreference = m_initialPreference;
-if ( st_it.hasNext() ) {
-// TODO better syntax - separate group with mimetype=number 
entries?
-bool isNumber;
-const int val = st_it.peekNext().toInt(isNumber);
-if (isNumber) {
-initialPreference = val;
-st_it.next();
+
+// The following searches through the list for duplicate, inherited 
mimetypes
+// For example, if application/rtf and text/plain are both listed 
application/rtf is removed
+// since it is inherited from text/plain
+// This is a reworked fix for revision 
8718a88a600c8f850a020d44bfc5f5858caa
+bool shouldAdd = true;
+KMimeType::Ptr mimeType1 = 
KMimeTypeRepository::self()-findMimeTypeByName(st);
+if (mimeType1) {
+foreach(const QString mime2, lstServiceTypes) {
+// Don't compare the mimetype with itself
+if (st == mime2) {
+continue;
+}
+
+// is checks for inheritance and aliases, so this should 
suffice
+if (mimeType1-is(mime2)) {
+

commit kdelibs4 for openSUSE:Factory

2013-08-18 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2013-08-18 22:21:20

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2013-08-16 13:48:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2013-08-18 22:21:22.0 +0200
@@ -1,0 +2,9 @@
+Sat Aug 17 20:52:53 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Added two patches from upstream 4.11 branch:
+  0001-when-the-request-theme-does-not-exist-delete-all-old.patch
+  fixes crash on non-existing plasma themes (kde#320855) and
+  0002-Fix-crash-when-failing-to-get-audio-CD-block-device.patch
+  fixes crash when failing to get audio CD block device (kde#314544)
+
+---
kdelibs4.changes: same change

New:

  0001-when-the-request-theme-does-not-exist-delete-all-old.patch
  0002-Fix-crash-when-failing-to-get-audio-CD-block-device.patch



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.cE3ad3/_old  2013-08-18 22:21:23.0 +0200
+++ /var/tmp/diff_new_pack.cE3ad3/_new  2013-08-18 22:21:23.0 +0200
@@ -104,6 +104,10 @@
 # this patch exlcudes qtuitools symbols from libs that link to qtuitools, as 
otherwise users of
 # those libs are crashing(bnc#819437, kde#303576, kde#231077, qtbug#437)
 Patch11:exclude-qtuitools-symbols-from-public-libraries.patch
+# PATCH-FIX-UPSTREAM 
0001-when-the-request-theme-does-not-exist-delete-all-old.patch -- fixes crash 
on non-existing plasma themes (kde#320855)
+Patch100:   0001-when-the-request-theme-does-not-exist-delete-all-old.patch
+# PATCH-FIX-UPSTREAM 
0002-Fix-crash-when-failing-to-get-audio-CD-block-device.patch -- fixes crash 
when failing to get audio CD block device (kde#314544)
+Patch101:   0002-Fix-crash-when-failing-to-get-audio-CD-block-device.patch
 PreReq: permissions
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
 Recommends: strigi = %( echo `rpm -q --queryformat '%{VERSION}' 
strigi-devel`)
@@ -168,6 +172,8 @@
 %patch9
 %patch10
 %patch11 -p1
+%patch100 -p1
+%patch101 -p1
 
 %build
   EXTRA_FLAGS=-DLIB_INSTALL_DIR=%{_kde4_libdir} \

++ 0001-when-the-request-theme-does-not-exist-delete-all-old.patch ++
From 59e88c777b92935cc95f28e52f84fe97563dec9d Mon Sep 17 00:00:00 2001
From: Aaron Seigo ase...@kde.org
Date: Wed, 14 Aug 2013 12:52:52 +0200
Subject: [PATCH 1/3] when the request theme does not exist, delete all old
 caches for it and don't crash

BUG:320855
---
 plasma/theme.cpp | 21 ++---
 1 file changed, 14 insertions(+), 7 deletions(-)

diff --git a/plasma/theme.cpp b/plasma/theme.cpp
index 4554de7..cb44878 100644
--- a/plasma/theme.cpp
+++ b/plasma/theme.cpp
@@ -222,18 +222,25 @@ bool ThemePrivate::useCache()
 {
 if (cacheTheme  !pixmapCache) {
 const bool isRegularTheme = themeName != systemColorsTheme;
-QString cacheFile = plasma_theme_ + themeName;
+const QString cacheFile = plasma_theme_ + themeName;
 
 if (isRegularTheme) {
+const QString cacheFileBase = cacheFile + *.kcache;
+
 const QString path = KStandardDirs::locate(data, desktoptheme/ 
+ themeName + /metadata.desktop);
-const KPluginInfo pluginInfo(path);
+// if the path is empty, then we haven't found the theme and so
+// we will leave currentCacheFileName empty, resulting in the 
deletion of
+// *all* matching cache files
+QString currentCacheFileName;
+if (!path.isEmpty()) {
+const KPluginInfo pluginInfo(path);
+currentCacheFileName = cacheFile + _v + pluginInfo.version() 
+ .kcache;
+}
 
-// now we check for, and remove if necessary, old caches
-const QString cacheFileBase = cacheFile + *.kcache;
-cacheFile += _v + pluginInfo.version();
-const QString currentCacheFileName = cacheFile + .kcache;
+// now we check for (and remove) old caches
 foreach (const QString file, 
KGlobal::dirs()-findAllResources(cache, cacheFileBase)) {
-if (!file.endsWith(currentCacheFileName)) {
+if (currentCacheFileName.isEmpty() ||
+!file.endsWith(currentCacheFileName)) {
 QFile::remove(file);
 }
 }
-- 
1.8.3.4

++ 0002-Fix-crash-when-failing-to-get-audio-CD-block-device.patch ++
From 31fdb4ab1b72fa39290931f6a8934eda4eb4f636 Mon 

commit kdelibs4 for openSUSE:Factory

2013-08-16 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2013-08-16 13:47:46

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2013-07-30 16:00:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2013-08-16 13:48:51.0 +0200
@@ -1,0 +2,7 @@
+Thu Aug  8 14:55:48 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.11.0
+   * KDE 4.11 Final release
+   * See http://www.kde.org/announcements/4.11/
+
+---
kdelibs4.changes: same change

Old:

  kdelibs-4.10.97.tar.xz

New:

  kdelibs-4.11.0.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.2pkO1O/_old  2013-08-16 13:48:52.0 +0200
+++ /var/tmp/diff_new_pack.2pkO1O/_new  2013-08-16 13:48:52.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.10.97
+Version:4.11.0
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source0:
http://download.kde.org/unstable/%{version}/src/kdelibs-%{version}.tar.xz
+Source0:kdelibs-%{version}.tar.xz
 Source1:baselibs.conf
 Source2:hidden.desktop
 Source3:ycp.xml

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.2pkO1O/_old  2013-08-16 13:48:52.0 +0200
+++ /var/tmp/diff_new_pack.2pkO1O/_new  2013-08-16 13:48:52.0 +0200
@@ -24,7 +24,7 @@
 %define kderev 0
 
 Name:   kdelibs4
-Version:4.10.97
+Version:4.11.0
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -82,7 +82,7 @@
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source0:
http://download.kde.org/unstable/%{version}/src/kdelibs-%{version}.tar.xz
+Source0:kdelibs-%{version}.tar.xz
 Source1:baselibs.conf
 Source2:hidden.desktop
 Source3:ycp.xml

++ kdelibs-4.10.97.tar.xz - kdelibs-4.11.0.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.10.97.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.11.0.tar.xz differ: char 26, 
line 1


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



commit kdelibs4 for openSUSE:Factory

2013-07-30 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2013-07-30 15:59:14

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2013-07-22 17:16:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2013-07-30 16:00:21.0 +0200
@@ -1,0 +2,14 @@
+Thu Jul 25 21:10:36 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Update to 4.10.97
+  * KDE 4.11 RC 2 release
+  * See http://www.kde.org/announcements/announce-4.11-rc2.php
+
+---
+Sun Jul 21 15:54:56 UTC 2013 - tittiatc...@gmail.com
+
+- Remove the part where the official KDE_VERSION_STRING is 
+  changed. This is causing issues upstream with automatic bug
+  reporting and it is no longer required. 
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2013-07-22 
17:16:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2013-07-30 
16:00:22.0 +0200
@@ -1,0 +2,7 @@
+Thu Jul 25 21:10:36 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Update to 4.10.97
+  * KDE 4.11 RC 2 release
+  * See http://www.kde.org/announcements/announce-4.11-rc2.php
+
+---

Old:

  kdelibs-4.10.95.tar.xz

New:

  kdelibs-4.10.97.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.HylIH1/_old  2013-07-30 16:00:24.0 +0200
+++ /var/tmp/diff_new_pack.HylIH1/_new  2013-07-30 16:00:24.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.10.95
+Version:4.10.97
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.HylIH1/_old  2013-07-30 16:00:24.0 +0200
+++ /var/tmp/diff_new_pack.HylIH1/_new  2013-07-30 16:00:24.0 +0200
@@ -24,7 +24,7 @@
 %define kderev 0
 
 Name:   kdelibs4
-Version:4.10.95
+Version:4.10.97
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4

++ kdelibs-4.10.95.tar.xz - kdelibs-4.10.97.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.10.95.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.10.97.tar.xz differ: char 
26, line 1


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



commit kdelibs4 for openSUSE:Factory

2013-07-22 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2013-07-22 17:14:57

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2013-07-08 07:34:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2013-07-22 17:16:18.0 +0200
@@ -1,0 +2,23 @@
+Thu Jul 18 19:04:23 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Remove obsolete patches:
+  windeco-color.diff -- we can define colors in oS branding
+  fix_kdeclarative_install_location.diff -- no longer needed
+  hotplug-kde3.diff, kde3-applications.diff -- kde3 is no more
+  kdebug-areas-update.diff -- kupdateapplet is also not available
+  no longer
+
+---
+Mon Jul 15 08:13:02 UTC 2013 - cgiboude...@gmx.com
+
+- Update to 4.10.95
+ * KDE 4.11 RC 1 release
+ * See http://www.kde.org/announcements/announce-4.11-rc1.php
+
+---
+Tue Jul  2 12:12:34 UTC 2013 - tittiatc...@gmail.com
+
+- Utilize the new _kde_branding_version macro to set the correct
+  branding version.
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2013-07-08 
07:34:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2013-07-22 
17:16:18.0 +0200
@@ -1,0 +2,24 @@
+Sun Jul 21 15:54:56 UTC 2013 - tittiatc...@gmail.com
+
+- Remove the part where the official KDE_VERSION_STRING is 
+  changed. This is causing issues upstream with automatic bug
+  reporting and it is no longer required. 
+
+---
+Thu Jul 18 19:04:23 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Remove obsolete patches:
+  windeco-color.diff -- we can define colors in oS branding
+  fix_kdeclarative_install_location.diff -- no longer needed
+  hotplug-kde3.diff, kde3-applications.diff -- kde3 is no more
+  kdebug-areas-update.diff -- kupdateapplet is also not available
+  no longer
+
+---
+Mon Jul 15 08:13:02 UTC 2013 - cgiboude...@gmx.com
+
+- Update to 4.10.95
+ * KDE 4.11 RC 1 release
+ * See http://www.kde.org/announcements/announce-4.11-rc1.php
+
+---

Old:

  fix_kdeclarative_install_location.diff
  hotplug-kde3.diff
  kde3-applications.diff
  kdebug-areas-update.diff
  kdelibs-4.10.90.tar.xz
  windeco-color.diff

New:

  kdelibs-4.10.95.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.fjYAga/_old  2013-07-22 17:16:20.0 +0200
+++ /var/tmp/diff_new_pack.fjYAga/_new  2013-07-22 17:16:20.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.10.90
+Version:4.10.95
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.fjYAga/_old  2013-07-22 17:16:20.0 +0200
+++ /var/tmp/diff_new_pack.fjYAga/_new  2013-07-22 17:16:20.0 +0200
@@ -24,7 +24,7 @@
 %define kderev 0
 
 Name:   kdelibs4
-Version:4.10.90
+Version:4.10.95
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -90,25 +90,20 @@
 %if 0%{?sles_version}
 Source99:   kdelibs4-rpmlintrc
 %endif
-Patch1: kde3-applications.diff
-Patch2: default-useragent.diff
-Patch3: add-suse-translations.diff
-Patch5: clever-menu.diff
-Patch6: hotplug-kde3.diff
-Patch8: windeco-color.diff
-Patch9: kdesu-settings.diff
-Patch10:kdebug-areas-update.diff
-Patch12:desktop-translations.diff
-Patch13:kjs-mark-register-stack.diff
-Patch17:flash-player-non-oss.diff
-Patch18:plasma-libs.diff
-Patch20:ignore-inline-menu.diff
-Patch24:ksuseinstall.diff
-Patch26:fix_kdeclarative_install_location.diff
+Patch1: default-useragent.diff
+Patch2: add-suse-translations.diff
+Patch3: clever-menu.diff
+Patch4: kdesu-settings.diff
+Patch5: desktop-translations.diff
+Patch6: kjs-mark-register-stack.diff
+Patch7: flash-player-non-oss.diff
+Patch8: plasma-libs.diff
+Patch9: ignore-inline-menu.diff
+Patch10:ksuseinstall.diff
 # PATCH-FIX-OPENSUSE exclude-qtuitools-symbols-from-public-libraries.patch -- 
We are using -Bsymbolic-functions link flags in kde4 

commit kdelibs4 for openSUSE:Factory

2013-07-07 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2013-07-08 07:34:36

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2013-06-11 09:31:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2013-07-08 07:34:38.0 +0200
@@ -1,0 +2,20 @@
+Thu Jun 27 18:07:10 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.10.90
+   * KDE 4.11 Beta 1 release
+   * See http://www.kde.org/announcements/announce-4.11-beta2.php
+
+---
+Sun Jun 16 23:59:28 UTC 2013 - jeng...@inai.de
+
+- Explicitly list libattr-devel as BuildRequires
+
+---
+Thu Jun 13 19:06:59 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.10.80
+   * KDE 4.11 Beta 1 release
+   * See http://www.kde.org/announcements/announce-4.11-beta1.php
+- Drop kjs-stacklimit.diff, patch is icluded in this release
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2013-06-11 
09:31:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2013-07-08 
07:34:38.0 +0200
@@ -1,0 +2,26 @@
+Tue Jul  2 12:12:34 UTC 2013 - tittiatc...@gmail.com
+
+- Utilize the new _kde_branding_version macro to set the correct
+  branding version.
+
+---
+Thu Jun 27 18:07:10 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.10.90
+   * KDE 4.11 Beta 1 release
+   * See http://www.kde.org/announcements/announce-4.11-beta2.php
+
+---
+Sun Jun 16 23:59:28 UTC 2013 - jeng...@inai.de
+
+- Explicitly list libattr-devel as BuildRequires
+
+---
+Thu Jun 13 19:06:59 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.10.80
+   * KDE 4.11 Beta 1 release
+   * See http://www.kde.org/announcements/announce-4.11-beta1.php
+- Drop kjs-stacklimit.diff, patch is icluded in this release
+
+---

Old:

  kdelibs-4.10.4.tar.xz
  kjs-stacklimit.diff

New:

  kdelibs-4.10.90.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.coHNtR/_old  2013-07-08 07:34:40.0 +0200
+++ /var/tmp/diff_new_pack.coHNtR/_new  2013-07-08 07:34:40.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.10.4
+Version:4.10.90
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source0:
http://download.kde.org/stable/%{version}/src/kdelibs-%{version}.tar.xz
+Source0:
http://download.kde.org/unstable/%{version}/src/kdelibs-%{version}.tar.xz
 Source1:baselibs.conf
 Source2:hidden.desktop
 Source3:ycp.xml

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.coHNtR/_old  2013-07-08 07:34:40.0 +0200
+++ /var/tmp/diff_new_pack.coHNtR/_new  2013-07-08 07:34:40.0 +0200
@@ -24,9 +24,8 @@
 %define kderev 0
 
 Name:   kdelibs4
-Version:4.10.4
+Version:4.10.90
 Release:0
-%define default_branding 4.10
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
 BuildRequires:  avahi-compat-mDNSResponder-devel
@@ -48,6 +47,7 @@
 BuildRequires:  libQtWebKit-devel
 BuildRequires:  libacl-devel
 BuildRequires:  libattica-devel
+BuildRequires:  libattr-devel
 BuildRequires:  libdbusmenu-qt-devel
 BuildRequires:  libgssglue-devel
 BuildRequires:  libjasper-devel
@@ -78,17 +78,11 @@
 %else
 BuildRequires:  libbz2-devel
 %endif
-%if %suse_version  1140
-%define brandingversion %{default_branding}
-%endif
-%if %suse_version == 1140
-%define brandingversion 11.4
-%endif
 Summary:KDE Base Libraries
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source0:
http://download.kde.org/stable/%{version}/src/kdelibs-%{version}.tar.xz
+Source0:
http://download.kde.org/unstable/%{version}/src/kdelibs-%{version}.tar.xz
 Source1:baselibs.conf
 Source2:hidden.desktop
 Source3:ycp.xml
@@ -106,8 +100,6 @@
 Patch10:kdebug-areas-update.diff
 Patch12:desktop-translations.diff
 Patch13:kjs-mark-register-stack.diff
-# PATCH-FIX-UPSTREAM kjs-stacklimit.diff -- kjs: Avoid overflow computing 

commit kdelibs4 for openSUSE:Factory

2013-06-11 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2013-06-11 06:12:00

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2013-06-05 11:53:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2013-06-11 09:31:32.0 +0200
@@ -1,0 +2,11 @@
+Sat Jun  1 09:20:08 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.10.4
+   * Bugfix release
+   * See http://www.kde.org/announcements/announce-4.10.4.php
+   * resolves bnc#8122760
+- Dropped patches included in this release: fix-freeX11Pixmaps.patch,
+  Fix-KWindowSystem-compositingChanged-signal.patch and
+  dont-show-passwords-contained-in-HTTP-URLs-in-error-messages.patch
+
+---
kdelibs4.changes: same change

Old:

  Fix-KWindowSystem-compositingChanged-signal.patch
  dont-show-passwords-contained-in-HTTP-URLs-in-error-messages.patch
  fix-freeX11Pixmaps.patch
  kdelibs-4.10.3.tar.xz

New:

  kdelibs-4.10.4.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.LtdtAJ/_old  2013-06-11 09:31:33.0 +0200
+++ /var/tmp/diff_new_pack.LtdtAJ/_new  2013-06-11 09:31:33.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.10.3
+Version:4.10.4
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.LtdtAJ/_old  2013-06-11 09:31:33.0 +0200
+++ /var/tmp/diff_new_pack.LtdtAJ/_new  2013-06-11 09:31:33.0 +0200
@@ -24,7 +24,7 @@
 %define kderev 0
 
 Name:   kdelibs4
-Version:4.10.3
+Version:4.10.4
 Release:0
 %define default_branding 4.10
 BuildRequires:  OpenEXR-devel
@@ -117,13 +117,6 @@
 # this patch exlcudes qtuitools symbols from libs that link to qtuitools, as 
otherwise users of
 # those libs are crashing(bnc#819437, kde#303576, kde#231077, qtbug#437)
 Patch27:exclude-qtuitools-symbols-from-public-libraries.patch
-# PATCH-FIX-UPSTREAM fix-freeX11Pixmaps.patch -- fixes crash at 
DialogShadows::Private::freeX11Pixmaps, kde#319137
-Patch100:   fix-freeX11Pixmaps.patch
-# PATCH-FIX-UPSTREAM 
dont-show-passwords-contained-in-HTTP-URLs-in-error-messages.patch -- Ommits 
passwords contained in HTTP URLs in error messages kde#319428
-Patch101:   
dont-show-passwords-contained-in-HTTP-URLs-in-error-messages.patch
-# PATCH-FIX-UPSTREAM Fix-KWindowSystem-compositingChanged-signal.patch, fixes 
long standing bug of KWin clients (e.g. plasma) not detecting
-# compositing state (kde#179042)
-Patch102:   Fix-KWindowSystem-compositingChanged-signal.patch
 PreReq: permissions
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
 Recommends: strigi = %( echo `rpm -q --queryformat '%{VERSION}' 
strigi-devel`)
@@ -194,9 +187,6 @@
 %patch24
 %patch26 -p1
 %patch27 -p1
-%patch100 -p1
-%patch101 -p1
-%patch102 -p1
 
 #
 # define KDE version exactly

++ kdelibs-4.10.3.tar.xz - kdelibs-4.10.4.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.10.3.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.10.4.tar.xz differ: char 25, 
line 1


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



commit kdelibs4 for openSUSE:Factory

2013-06-05 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2013-06-05 11:53:07

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2013-05-16 16:49:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2013-06-05 11:53:08.0 +0200
@@ -1,0 +2,7 @@
+Mon May 27 18:42:23 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Added Fix-KWindowSystem-compositingChanged-signal.patch, fixes
+  long standing bug of KWin clients (e.g. plasma) not detecting
+  compositing state (kde#179042)
+
+---
kdelibs4.changes: same change

New:

  Fix-KWindowSystem-compositingChanged-signal.patch



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.M7PgHI/_old  2013-06-05 11:53:09.0 +0200
+++ /var/tmp/diff_new_pack.M7PgHI/_new  2013-06-05 11:53:09.0 +0200
@@ -121,6 +121,9 @@
 Patch100:   fix-freeX11Pixmaps.patch
 # PATCH-FIX-UPSTREAM 
dont-show-passwords-contained-in-HTTP-URLs-in-error-messages.patch -- Ommits 
passwords contained in HTTP URLs in error messages kde#319428
 Patch101:   
dont-show-passwords-contained-in-HTTP-URLs-in-error-messages.patch
+# PATCH-FIX-UPSTREAM Fix-KWindowSystem-compositingChanged-signal.patch, fixes 
long standing bug of KWin clients (e.g. plasma) not detecting
+# compositing state (kde#179042)
+Patch102:   Fix-KWindowSystem-compositingChanged-signal.patch
 PreReq: permissions
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
 Recommends: strigi = %( echo `rpm -q --queryformat '%{VERSION}' 
strigi-devel`)
@@ -193,6 +196,7 @@
 %patch27 -p1
 %patch100 -p1
 %patch101 -p1
+%patch102 -p1
 
 #
 # define KDE version exactly

++ Fix-KWindowSystem-compositingChanged-signal.patch ++
From 73fa526cd5541e74c3e992e9fcb0278efaaa5366 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Thomas=20L=C3=BCbking?= thomas.luebk...@gmail.com
Date: Fri, 28 Dec 2012 20:49:15 +0100
Subject: [PATCH 3/3] Fix KWindowSystem::compositingChanged signal

This as a workaround also listens to selection notifications
on the rootwindow as caused by Qt which also blindly compresses
away the event on the KWindowSystem WId

BUG: 179042
FIXED-IN: 4.11
REVIEW: 107983
---
 kdeui/windowmanagement/kwindowsystem_x11.cpp | 32 ++--
 1 file changed, 25 insertions(+), 7 deletions(-)

diff --git a/kdeui/windowmanagement/kwindowsystem_x11.cpp 
b/kdeui/windowmanagement/kwindowsystem_x11.cpp
index f9b3cc1..be32fc5 100644
--- a/kdeui/windowmanagement/kwindowsystem_x11.cpp
+++ b/kdeui/windowmanagement/kwindowsystem_x11.cpp
@@ -152,14 +152,32 @@ bool KWindowSystemPrivate::x11Event( XEvent * ev )
 KWindowSystem* s_q = KWindowSystem::self();
 
 #ifdef HAVE_XFIXES
-if ( ev-type == xfixesEventBase + XFixesSelectionNotify  
ev-xany.window == winId() ) {
-XFixesSelectionNotifyEvent *event = 
reinterpret_castXFixesSelectionNotifyEvent*(ev);
-bool haveOwner = event-owner != None;
-if (compositingEnabled != haveOwner) {
-compositingEnabled = haveOwner;
-emit s_q-compositingChanged( compositingEnabled );
+if ( ev-type == xfixesEventBase + XFixesSelectionNotify ) {
+if ( ev-xany.window == winId() ) {
+XFixesSelectionNotifyEvent *event = 
reinterpret_castXFixesSelectionNotifyEvent*(ev);
+bool haveOwner = event-owner != None;
+if (compositingEnabled != haveOwner) {
+compositingEnabled = haveOwner;
+emit s_q-compositingChanged( compositingEnabled );
+}
+return true;
 }
-return true;
+// Qt compresses XFixesSelectionNotifyEvents without caring about the 
actual window
+// gui/kernel/qapplication_x11.cpp
+// until that can be assumed fixed, we also react on events on the 
root (caused by Qts own compositing tracker)
+if ( ev-xany.window == QX11Info::appRootWindow() ) {
+XFixesSelectionNotifyEvent *event = 
reinterpret_castXFixesSelectionNotifyEvent*(ev);
+if (event-selection == net_wm_cm) {
+bool haveOwner = event-owner != None;
+if (compositingEnabled != haveOwner) {
+compositingEnabled = haveOwner;
+emit s_q-compositingChanged( compositingEnabled );
+}
+// NOTICE this is not our event, we just randomly captured it 
from Qt - pass on
+return false;
+

commit kdelibs4 for openSUSE:Factory

2013-05-16 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2013-05-16 16:49:17

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2013-04-15 11:15:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2013-05-16 16:49:18.0 +0200
@@ -2 +2,28 @@
-Thu Apr 11 06:25:59 UTC 2013 - mmeis...@suse.com
+Sun May 12 15:26:36 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Added exclude-qtuitools-symbols-from-public-libraries.patch:
+  We are using -Bsymbolic-functions link flags in kde4 macros,
+  so this patch exlcudes qtuitools symbols from libs that link to 
+  qtuitools, as otherwise users of those libs are crashing 
+  (bnc#819437, kde#303576, kde#231077, qtbug#437)
+
+---
+Fri May 10 14:00:37 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Added patches from upstream: 
+  fix-freeX11Pixmaps.patch, fixes crashing of plasma-desktop and 
+  Amarok (kde#319137)
+  dont-show-passwords-contained-in-HTTP-URLs-in-error-messages.patch,
+  the patch fixes an old issue where password was passed in error
+  messages
+
+---
+Sat May  4 16:47:51 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.10.3
+   * Bugfix release
+   * See http://www.kde.org/announcements/announce-4.10.3.php
+   * resolves bnc#818500
+
+---
+Thu Apr 11 06:22:25 UTC 2013 - mmeis...@suse.com
@@ -5,0 +33,5 @@
+
+---
+Tue Apr  9 06:36:04 UTC 2013 - lnt-sysad...@lists.lrz.de
+
+- Drop kio_revert_slow_filesystems.patch, fixed upstream (kde#288824).
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2013-04-15 
11:15:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2013-05-16 
16:49:18.0 +0200
@@ -1,0 +2,27 @@
+Sun May 12 15:26:36 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Added exclude-qtuitools-symbols-from-public-libraries.patch:
+  We are using -Bsymbolic-functions link flags in kde4 macros,
+  so this patch exlcudes qtuitools symbols from libs that link to 
+  qtuitools, as otherwise users of those libs are crashing 
+  (bnc#819437, kde#303576, kde#231077, qtbug#437)
+
+---
+Fri May 10 14:00:37 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Added patches from upstream: 
+  fix-freeX11Pixmaps.patch, fixes crashing of plasma-desktop and 
+  Amarok (kde#319137)
+  dont-show-passwords-contained-in-HTTP-URLs-in-error-messages.patch,
+  the patch fixes an old issue where password was passed in error
+  messages
+
+---
+Sat May  4 16:47:51 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.10.3
+   * Bugfix release
+   * See http://www.kde.org/announcements/announce-4.10.3.php
+   * resolves bnc#818500
+
+---

Old:

  kdelibs-4.10.2.tar.xz

New:

  dont-show-passwords-contained-in-HTTP-URLs-in-error-messages.patch
  exclude-qtuitools-symbols-from-public-libraries.patch
  fix-freeX11Pixmaps.patch
  kdelibs-4.10.3.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.CE2nON/_old  2013-05-16 16:49:19.0 +0200
+++ /var/tmp/diff_new_pack.CE2nON/_new  2013-05-16 16:49:19.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.10.2
+Version:4.10.3
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.CE2nON/_old  2013-05-16 16:49:19.0 +0200
+++ /var/tmp/diff_new_pack.CE2nON/_new  2013-05-16 16:49:19.0 +0200
@@ -24,7 +24,7 @@
 %define kderev 0
 
 Name:   kdelibs4
-Version:4.10.2
+Version:4.10.3
 Release:0
 %define default_branding 4.10
 BuildRequires:  OpenEXR-devel
@@ -113,6 +113,14 @@
 Patch20:ignore-inline-menu.diff
 Patch24:ksuseinstall.diff
 Patch26:fix_kdeclarative_install_location.diff
+# PATCH-FIX-OPENSUSE exclude-qtuitools-symbols-from-public-libraries.patch -- 
We are using -Bsymbolic-functions link flags in kde4 macros,
+# this patch exlcudes qtuitools symbols from libs that link to qtuitools, as 
otherwise users of
+# those libs are crashing(bnc#819437, kde#303576, kde#231077, qtbug#437)
+Patch27:

commit kdelibs4 for openSUSE:Factory

2013-04-15 Thread h_root
Hello community,

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

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2013-03-15 10:38:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2013-04-15 11:15:19.0 +0200
@@ -1,0 +2,25 @@
+Thu Apr 11 06:25:59 UTC 2013 - mmeis...@suse.com
+
+- Added url as source.
+  Please see http://en.opensuse.org/SourceUrls
+
+---
+Mon Apr  1 19:13:48 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.10.2
+  * Bugfixes
+- Drop kdelibs-4.10.0-giflib5.patch, it is pushed upstream
+- Replace kjs-stacklimit.diff with a correct fix
+
+---
+Sat Mar 16 20:54:16 UTC 2013 - sch...@linux-m68k.org
+
+- Add kjs-stacklimit.diff:
+  * Fix overflow computing availableStackSize from stack limit (kde#316923)
+
+---
+Wed Mar 13 20:44:30 UTC 2013 - seife+...@b1-systems.com
+
+- fix build with giflib-5 (kdelibs-4.10.0-giflib5.patch)
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2013-03-30 
14:57:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2013-04-15 
11:15:19.0 +0200
@@ -1,0 +2,19 @@
+Thu Apr 11 06:22:25 UTC 2013 - mmeis...@suse.com
+
+- Added url as source.
+  Please see http://en.opensuse.org/SourceUrls
+
+---
+Tue Apr  9 06:36:04 UTC 2013 - lnt-sysad...@lists.lrz.de
+
+- Drop kio_revert_slow_filesystems.patch, fixed upstream (kde#288824).
+
+---
+Mon Apr  1 19:13:48 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.10.2
+  * Bugfixes
+- Drop kdelibs-4.10.0-giflib5.patch, it is pushed upstream
+- Replace kjs-stacklimit.diff with a correct fix
+
+---

Old:

  kdelibs-4.10.0-giflib5.patch
  kdelibs-4.10.1.tar.xz
  kio_revert_slow_filesystems.patch

New:

  kdelibs-4.10.2.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.ZnqhLT/_old  2013-04-15 11:15:23.0 +0200
+++ /var/tmp/diff_new_pack.ZnqhLT/_new  2013-04-15 11:15:23.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.10.1
+Version:4.10.2
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source0:kdelibs-%{version}.tar.xz
+Source0:
http://download.kde.org/stable/%{version}/src/kdelibs-%{version}.tar.xz
 Source1:baselibs.conf
 Source2:hidden.desktop
 Source3:ycp.xml

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.ZnqhLT/_old  2013-04-15 11:15:23.0 +0200
+++ /var/tmp/diff_new_pack.ZnqhLT/_new  2013-04-15 11:15:23.0 +0200
@@ -24,7 +24,7 @@
 %define kderev 0
 
 Name:   kdelibs4
-Version:4.10.1
+Version:4.10.2
 Release:0
 %define default_branding 4.10
 BuildRequires:  OpenEXR-devel
@@ -88,7 +88,7 @@
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source0:kdelibs-%{version}.tar.xz
+Source0:
http://download.kde.org/stable/%{version}/src/kdelibs-%{version}.tar.xz
 Source1:baselibs.conf
 Source2:hidden.desktop
 Source3:ycp.xml
@@ -106,16 +106,13 @@
 Patch10:kdebug-areas-update.diff
 Patch12:desktop-translations.diff
 Patch13:kjs-mark-register-stack.diff
-# PATCH-FIX-UPSTREAM kjs-stacklimit.diff -- Fix overflow computing 
availableStackSize - sch...@linux-m68k.org
+# PATCH-FIX-UPSTREAM kjs-stacklimit.diff -- kjs: Avoid overflow computing 
availableStackSize in KJS::RegExp::match - b.buschin...@googlemail.com
 Patch14:kjs-stacklimit.diff
 Patch17:flash-player-non-oss.diff
 Patch18:plasma-libs.diff
 Patch20:ignore-inline-menu.diff
 Patch24:ksuseinstall.diff
 Patch26:fix_kdeclarative_install_location.diff
-Patch28:kio_revert_slow_filesystems.patch
-# PATCH-FIX-UPSTREAM kdelibs-4.10.0-giflib5.patch -- fix for changed giflib-5 
API seife+...@b1-systems.com
-Patch29:kdelibs-4.10.0-giflib5.patch
 PreReq: permissions
 

commit kdelibs4 for openSUSE:Factory

2013-03-15 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2013-03-15 10:38:35

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2013-02-04 20:31:32.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2013-03-15 10:38:40.0 +0100
@@ -1,0 +2,14 @@
+Sat Mar  2 15:31:49 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.10.1
+ * Contains bug fixes. See http://www.kde.org/announcements/ 
+   for more information 
+
+---
+Thu Feb  7 18:56:22 UTC 2013 - wba...@tmo.at
+
+- changed clever-menu.patch:
+  * added method KServiceGroup::addSortOrderEntry(), needed to fix
+bnc#356553
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2013-02-09 
10:12:33.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2013-03-15 
10:38:40.0 +0100
@@ -1,0 +2,12 @@
+Wed Mar 13 20:44:30 UTC 2013 - seife+...@b1-systems.com
+
+- fix build with giflib-5 (kdelibs-4.10.0-giflib5.patch)
+
+---
+Sat Mar  2 15:31:49 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.10.1
+ * Contains bug fixes. See http://www.kde.org/announcements/ 
+   for more information 
+
+---

Old:

  kdelibs-4.10.0.tar.xz

New:

  kdelibs-4.10.0-giflib5.patch
  kdelibs-4.10.1.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.hTjl1C/_old  2013-03-15 10:38:43.0 +0100
+++ /var/tmp/diff_new_pack.hTjl1C/_new  2013-03-15 10:38:43.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.10.0
+Version:4.10.1
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.hTjl1C/_old  2013-03-15 10:38:43.0 +0100
+++ /var/tmp/diff_new_pack.hTjl1C/_new  2013-03-15 10:38:43.0 +0100
@@ -24,7 +24,7 @@
 %define kderev 0
 
 Name:   kdelibs4
-Version:4.10.0
+Version:4.10.1
 Release:0
 %define default_branding 4.10
 BuildRequires:  OpenEXR-devel
@@ -112,6 +112,8 @@
 Patch24:ksuseinstall.diff
 Patch26:fix_kdeclarative_install_location.diff
 Patch28:kio_revert_slow_filesystems.patch
+# PATCH-FIX-UPSTREAM kdelibs-4.10.0-giflib5.patch -- fix for changed giflib-5 
API seife+...@b1-systems.com
+Patch29:kdelibs-4.10.0-giflib5.patch
 PreReq: permissions
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
 Recommends: strigi = %( echo `rpm -q --queryformat '%{VERSION}' 
strigi-devel`)
@@ -181,6 +183,7 @@
 %patch24
 %patch26 -p1
 %patch28 -p1
+%patch29 -p1
 
 #
 # define KDE version exactly

++ kdelibs-4.10.0-giflib5.patch ++
Index: b/khtml/imload/decoders/gifloader.cpp
===
--- a/khtml/imload/decoders/gifloader.cpp
+++ b/khtml/imload/decoders/gifloader.cpp
@@ -43,10 +43,15 @@
 #include config.h //For endian
 extern C {
 #include gif_lib.h
 }
 
+/* avoid cpp warning about undefined macro, old giflib had no GIFLIB_MAJOR */
+#ifndef GIFLIB_MAJOR
+#define GIFLIB_MAJOR 4
+#endif
+
 // #define DEBUG_GIFLOADER
 
 namespace khtmlImLoad {
 
 static int INTERLACED_OFFSET[] = { 0, 4, 2, 1 };
@@ -298,11 +303,15 @@ public:
 
 return toRet;
 }
 
 
+#if GIFLIB_MAJOR = 5
+static unsigned int decode16Bit(unsigned char* signedLoc)
+#else
 static unsigned int decode16Bit(char* signedLoc)
+#endif
 {
 unsigned char* loc = reinterpret_castunsigned char*(signedLoc);
 
 //GIFs are little-endian
 return loc[0] | (((unsigned int)loc[1])  8);
@@ -346,11 +355,16 @@ public:
 }
 
 virtual int processEOF()
 {
 //Feed the buffered data to libUnGif
+#if GIFLIB_MAJOR = 5
+int e;
+GifFileType* file = DGifOpen(this, gifReaderBridge, e);
+#else
 GifFileType* file = DGifOpen(this, gifReaderBridge);
+#endif
 
 if (!file)
 return Error;
 
 if (DGifSlurp(file) == GIF_ERROR)
++ kdelibs-4.10.0.tar.xz - kdelibs-4.10.1.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.10.0.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.10.1.tar.xz differ: char 25, 

commit kdelibs4 for openSUSE:Factory

2013-02-09 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2013-02-09 10:12:31

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2013-02-04 
20:31:32.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2013-02-09 
10:12:33.0 +0100
@@ -1,0 +2,7 @@
+Thu Feb  7 18:56:22 UTC 2013 - wba...@tmo.at
+
+- changed clever-menu.patch:
+  * added method KServiceGroup::addSortOrderEntry(), needed to fix
+bnc#356553
+
+---



Other differences:
--
kdelibs4.spec: same change
++ clever-menu.diff ++
--- /var/tmp/diff_new_pack.U4T5Gm/_old  2013-02-09 10:12:35.0 +0100
+++ /var/tmp/diff_new_pack.U4T5Gm/_new  2013-02-09 10:12:35.0 +0100
@@ -117,10 +117,18 @@
  }
  
  QListKServiceGroup::Ptr KServiceGroup::groupEntries(EntriesOptions options)
-@@ -359,6 +388,13 @@ KServiceGroup::entries(bool sort, bool e
+@@ -359,6 +388,21 @@ KServiceGroup::entries(bool sort, bool e
  return d-entries(this, sort, excludeNoDisplay, allowSeparators, 
sortByGenericName);
  }
  
++void KServiceGroup::addSortOrderEntry( const char *entry )
++{
++Q_D(KServiceGroup);
++const QString s = QString::fromLatin1(entry);
++if (!d-sortOrder.contains(s))
++   d-sortOrder  s;
++}
++
 +KServiceGroup::List
 +KServiceGroup::SuSEsortEntries( KSortableListKServiceGroup::SPtr,QByteArray 
slist, KSortableListKServiceGroup::SPtr,QByteArray glist, bool 
excludeNoDisplay, bool allowSeparators )
 +{
@@ -131,7 +139,7 @@
  static void addItem(KServiceGroup::List sorted, const KSycocaEntry::Ptr p, 
bool addSeparator)
  {
 if (addSeparator  !sorted.isEmpty())
-@@ -370,6 +406,12 @@ static void addItem(KServiceGroup::List
+@@ -370,6 +414,12 @@ static void addItem(KServiceGroup::List
  KServiceGroup::List
  KServiceGroupPrivate::entries(KServiceGroup *group, bool sort, bool 
excludeNoDisplay, bool allowSeparators, bool sortByGenericName)
  {
@@ -144,7 +152,7 @@
  KServiceGroup::Ptr grp;
  
  // If the entries haven't been loaded yet, we have to reload ourselves
-@@ -395,11 +437,20 @@ KServiceGroupPrivate::entries(KServiceGr
+@@ -395,11 +445,20 @@ KServiceGroupPrivate::entries(KServiceGr
  KSortableListKServiceGroup::SPtr,QByteArray glist;
  Q_FOREACH (KSycocaEntry::Ptr p, group-d_func()-m_serviceList)
  {
@@ -165,7 +173,7 @@
  // Choose the right list
  KSortableListKServiceGroup::SPtr,QByteArray  list = 
p-isType(KST_KServiceGroup) ? glist : slist;
  QString name;
-@@ -435,6 +486,12 @@ KServiceGroupPrivate::entries(KServiceGr
+@@ -435,6 +494,12 @@ KServiceGroupPrivate::entries(KServiceGr
  }
  list.insert(key,KServiceGroup::SPtr(p));
  }
@@ -178,7 +186,7 @@
  // Now sort
  slist.sort();
  glist.sort();
-@@ -475,6 +532,8 @@ KServiceGroupPrivate::entries(KServiceGr
+@@ -475,6 +540,8 @@ KServiceGroupPrivate::entries(KServiceGr
 // TODO: This prevents duplicates
for(KSortableListKServiceGroup::SPtr,QByteArray::Iterator it2 = 
slist.begin(); it2 != slist.end(); ++it2)
{
@@ -212,12 +220,13 @@
 * @internal
 * Returns information related to the layout of services in this group.
 */
-@@ -200,6 +207,12 @@ public:
+@@ -200,6 +207,13 @@ public:
List entries(bool sorted = false);
  
/**
 +   * UNOFFICIAL SuSE special
 +   */
++  void addSortOrderEntry( const char *entry );
 +  KServiceGroup::List SuSEsortEntries( 
KSortableListKServiceGroup::SPtr,QByteArray slist, 
KSortableListKServiceGroup::SPtr,QByteArray glist, bool excludeNoDisplay, 
bool allowSeparators );
 +
 +



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



commit kdelibs4 for openSUSE:Factory

2013-02-04 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2013-02-04 20:31:26

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2013-01-22 15:43:29.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2013-02-04 20:31:32.0 +0100
@@ -1,0 +2,15 @@
+Thu Jan 31 17:42:11 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.10.0
+ * This is the final release for 4.10. Contains bugfixes 
+- Dropped make-plasma-widgets-respect-plasma-button-colors.patch,
+  included upstream
+
+---
+Tue Jan 29 12:17:59 UTC 2013 - lnt-sysad...@lists.lrz.de
+
+- Add kio_revert_slow_filesystems.patch to work around bnc#776141.
+  This is a workaround, reverting to KDE 4.7.3 behavior.
+  A fix should come from upstream (kde#288824).
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2013-02-01 
09:43:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2013-02-04 
20:31:32.0 +0100
@@ -1,0 +2,8 @@
+Thu Jan 31 17:42:11 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.10.0
+ * This is the final release for 4.10. Contains bugfixes 
+- Dropped make-plasma-widgets-respect-plasma-button-colors.patch,
+  included upstream
+
+---

Old:

  kdelibs-4.9.98.tar.xz
  make-plasma-widgets-respect-plasma-button-colors.patch

New:

  kdelibs-4.10.0.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.SIPCqw/_old  2013-02-04 20:31:35.0 +0100
+++ /var/tmp/diff_new_pack.SIPCqw/_new  2013-02-04 20:31:35.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.9.98
+Version:4.10.0
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.SIPCqw/_old  2013-02-04 20:31:35.0 +0100
+++ /var/tmp/diff_new_pack.SIPCqw/_new  2013-02-04 20:31:35.0 +0100
@@ -24,7 +24,7 @@
 %define kderev 0
 
 Name:   kdelibs4
-Version:4.9.98
+Version:4.10.0
 Release:0
 %define default_branding 4.10
 BuildRequires:  OpenEXR-devel
@@ -111,8 +111,6 @@
 Patch20:ignore-inline-menu.diff
 Patch24:ksuseinstall.diff
 Patch26:fix_kdeclarative_install_location.diff
-# PATCH-FIX-OPENSUSE make-plasma-widgets-respect-plasma-button-colors.patch 
hrvoje.sen...@gmail.com -- Fixes Plasma::Checkox, so it uses plasma theme color 
(example - nm plasmoid)
-Patch27:make-plasma-widgets-respect-plasma-button-colors.patch
 Patch28:kio_revert_slow_filesystems.patch
 PreReq: permissions
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
@@ -182,7 +180,6 @@
 %patch20
 %patch24
 %patch26 -p1
-%patch27 -p1
 %patch28 -p1
 
 #


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



commit kdelibs4 for openSUSE:Factory

2013-02-01 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2013-02-01 09:43:18

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2013-01-22 
15:43:29.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2013-02-01 
09:43:20.0 +0100
@@ -1,0 +2,7 @@
+Tue Jan 29 12:17:59 UTC 2013 - lnt-sysad...@lists.lrz.de
+
+- Add kio_revert_slow_filesystems.patch to work around bnc#776141.
+  This is a workaround, reverting to KDE 4.7.3 behavior.
+  A fix should come from upstream (kde#288824).
+
+---

New:

  kio_revert_slow_filesystems.patch



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.teN5Kr/_old  2013-02-01 09:43:23.0 +0100
+++ /var/tmp/diff_new_pack.teN5Kr/_new  2013-02-01 09:43:23.0 +0100
@@ -113,6 +113,7 @@
 Patch26:fix_kdeclarative_install_location.diff
 # PATCH-FIX-OPENSUSE make-plasma-widgets-respect-plasma-button-colors.patch 
hrvoje.sen...@gmail.com -- Fixes Plasma::Checkox, so it uses plasma theme color 
(example - nm plasmoid)
 Patch27:make-plasma-widgets-respect-plasma-button-colors.patch
+Patch28:kio_revert_slow_filesystems.patch
 PreReq: permissions
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
 Recommends: strigi = %( echo `rpm -q --queryformat '%{VERSION}' 
strigi-devel`)
@@ -182,6 +183,7 @@
 %patch24
 %patch26 -p1
 %patch27 -p1
+%patch28 -p1
 
 #
 # define KDE version exactly


++ kio_revert_slow_filesystems.patch ++
--- a/kio/kio/kfileitem.cpp 2012-12-17 15:14:16.0 +0100
+++ b/kio/kio/kfileitem.cpp 2013-01-29 13:14:49.699629861 +0100
@@ -750,8 +750,7 @@ bool KFileItemPrivate::isSlow() const
 if (m_slow == SlowUnknown) {
 const QString path = localPath();
 if (!path.isEmpty()) {
-const KFileSystemType::Type fsType = 
KFileSystemType::fileSystemType(path);
-m_slow = (fsType == KFileSystemType::Nfs || fsType == 
KFileSystemType::Smb) ? Slow : Fast;
+m_slow = Fast;
 } else {
 m_slow = Slow;
 }

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



commit kdelibs4 for openSUSE:Factory

2013-01-22 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2013-01-22 15:43:27

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2013-01-19 16:37:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2013-01-22 15:43:29.0 +0100
@@ -1,0 +2,6 @@
+Mon Jan 21 03:50:35 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Added make-plasma-widgets-respect-plasma-button-colors.patch,
+  fixes kde#310389, kde#263979 
+
+---
kdelibs4.changes: same change

New:

  make-plasma-widgets-respect-plasma-button-colors.patch



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.W0FeAw/_old  2013-01-22 15:43:31.0 +0100
+++ /var/tmp/diff_new_pack.W0FeAw/_new  2013-01-22 15:43:31.0 +0100
@@ -111,6 +111,8 @@
 Patch20:ignore-inline-menu.diff
 Patch24:ksuseinstall.diff
 Patch26:fix_kdeclarative_install_location.diff
+# PATCH-FIX-OPENSUSE make-plasma-widgets-respect-plasma-button-colors.patch 
hrvoje.sen...@gmail.com -- Fixes Plasma::Checkox, so it uses plasma theme color 
(example - nm plasmoid)
+Patch27:make-plasma-widgets-respect-plasma-button-colors.patch
 PreReq: permissions
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
 Recommends: strigi = %( echo `rpm -q --queryformat '%{VERSION}' 
strigi-devel`)
@@ -179,6 +181,7 @@
 %patch20
 %patch24
 %patch26 -p1
+%patch27 -p1
 
 #
 # define KDE version exactly


++ make-plasma-widgets-respect-plasma-button-colors.patch ++
From 6820f05d48096398bb5c60ff6aaa2cacfe2d41c7 Mon Sep 17 00:00:00 2001
From: Hrvoje Senjan hrvoje.sen...@gmail.com
Date: Mon, 21 Jan 2013 13:43:36 +0100
Subject: [PATCH 1/1] Fix

REVIEW: 108525
BUG: 310389
BUG: 263979
---
 plasma/private/themedwidgetinterface.cpp | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/plasma/private/themedwidgetinterface.cpp 
b/plasma/private/themedwidgetinterface.cpp
index 399033c..c7b3e88 100644
--- a/plasma/private/themedwidgetinterface.cpp
+++ b/plasma/private/themedwidgetinterface.cpp
@@ -67,6 +67,10 @@ void PaletteHelper::generatePalettes()
 palette.setColor(QPalette::Normal, QPalette::ButtonText, buttonColor);
 palette.setColor(QPalette::Inactive, QPalette::ButtonText, buttonColor);
 
+const QColor backgroundColor = 
Theme::defaultTheme()-color(Theme::ButtonBackgroundColor);
+palette.setColor(QPalette::Normal, QPalette::Button, backgroundColor);
+palette.setColor(QPalette::Inactive, QPalette::Button, backgroundColor);
+
 //FIXME: hardcoded colors .. looks incorrect
 palette.setColor(QPalette::Normal, QPalette::Base, QColor(0,0,0,0));
 palette.setColor(QPalette::Inactive, QPalette::Base, QColor(0,0,0,0));
@@ -74,6 +78,8 @@ void PaletteHelper::generatePalettes()
 buttonPalette = palette;
 buttonPalette.setColor(QPalette::Normal, QPalette::Text, buttonColor);
 buttonPalette.setColor(QPalette::Inactive, QPalette::Text, buttonColor);
+buttonPalette.setColor(QPalette::Normal, QPalette::Base, backgroundColor);
+buttonPalette.setColor(QPalette::Inactive, QPalette::Base, 
backgroundColor);
 
 emit palettesUpdated();
 }
-- 
1.8.1.1


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



commit kdelibs4 for openSUSE:Factory

2013-01-19 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2013-01-19 16:37:50

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2013-01-07 11:01:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2013-01-19 16:37:54.0 +0100
@@ -1,0 +2,6 @@
+Thu Jan 17 07:59:34 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.9.98
+ * This is the third RC release for 4.10. Contains bugfixes 
+
+---
kdelibs4.changes: same change

Old:

  kdelibs-4.9.97.tar.xz

New:

  kdelibs-4.9.98.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.QdiqAh/_old  2013-01-19 16:37:55.0 +0100
+++ /var/tmp/diff_new_pack.QdiqAh/_new  2013-01-19 16:37:55.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.9.97
+Version:4.9.98
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.QdiqAh/_old  2013-01-19 16:37:55.0 +0100
+++ /var/tmp/diff_new_pack.QdiqAh/_new  2013-01-19 16:37:55.0 +0100
@@ -24,7 +24,7 @@
 %define kderev 0
 
 Name:   kdelibs4
-Version:4.9.97
+Version:4.9.98
 Release:0
 %define default_branding 4.10
 BuildRequires:  OpenEXR-devel


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



commit kdelibs4 for openSUSE:Factory

2013-01-07 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2013-01-07 11:01:41

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2012-12-28 15:02:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2013-01-07 11:01:48.0 +0100
@@ -1,0 +2,6 @@
+Thu Jan  3 21:04:43 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.9.97
+ * This is the second RC release for 4.10. Contains bugfixes 
+
+---
kdelibs4.changes: same change

Old:

  kdelibs-4.9.95.tar.xz

New:

  kdelibs-4.9.97.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.eyrNOD/_old  2013-01-07 11:01:53.0 +0100
+++ /var/tmp/diff_new_pack.eyrNOD/_new  2013-01-07 11:01:53.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4-apidocs
 #
-# 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,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.9.95
+Version:4.9.97
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.eyrNOD/_old  2013-01-07 11:01:53.0 +0100
+++ /var/tmp/diff_new_pack.eyrNOD/_new  2013-01-07 11:01:53.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4
 #
-# 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
@@ -24,7 +24,7 @@
 %define kderev 0
 
 Name:   kdelibs4
-Version:4.9.95
+Version:4.9.97
 Release:0
 %define default_branding 4.10
 BuildRequires:  OpenEXR-devel


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



commit kdelibs4 for openSUSE:Factory

2012-12-28 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2012-12-28 15:02:40

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2012-12-21 09:16:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2012-12-28 15:02:53.0 +0100
@@ -1,0 +2,7 @@
+Thu Dec 27 12:21:46 UTC 2012 - hrvoje.sen...@gmail.com
+
+- Clean the BuildRequirements:
+  * alsa-devel, cups-devel and unzip are not required
+  * Minimal required versions are cmake = 2.8.9 and Qt = 4.8.0
+
+---
kdelibs4.changes: same change



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.LqqDBE/_old  2012-12-28 15:02:54.0 +0100
+++ /var/tmp/diff_new_pack.LqqDBE/_new  2012-12-28 15:02:54.0 +0100
@@ -28,12 +28,10 @@
 Release:0
 %define default_branding 4.10
 BuildRequires:  OpenEXR-devel
-BuildRequires:  alsa-devel
 BuildRequires:  automoc4
 BuildRequires:  avahi-compat-mDNSResponder-devel
 BuildRequires:  bison
-BuildRequires:  cmake
-BuildRequires:  cups-devel
+BuildRequires:  cmake = 2.8.9
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  enchant-devel
 BuildRequires:  fam-devel
@@ -53,6 +51,7 @@
 BuildRequires:  libdbusmenu-qt-devel
 BuildRequires:  libgssglue-devel
 BuildRequires:  libjasper-devel
+BuildRequires:  libqt4-devel = 4.8.0
 %if !0%{?sles_version}
 BuildRequires:  libpolkit-qt-1-devel
 %endif
@@ -66,7 +65,6 @@
 BuildRequires:  shared-mime-info
 BuildRequires:  strigi
 BuildRequires:  strigi-devel
-BuildRequires:  unzip
 BuildRequires:  update-desktop-files
 %if !0%{?sles_version}
 BuildRequires:  utempter-devel
@@ -198,7 +196,7 @@
 -DDATA_INSTALL_DIR=%{_kde4_appsdir} \
 -DKCFG_INSTALL_DIR=%{_kde4_configkcfgdir} \
 -DMIME_INSTALL_DIR=/nogo \
--DKDE4_ENABLE_FPIE=1
+-DKDE4_ENABLE_FPIE=1 \
 -DTEMPLATES_INSTALL_DIR=%{_kde4_sharedir}/templates \
 -DHTML_INSTALL_DIR=%{_kde4_htmldir} \
 %if %{suse_version}  1220



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



commit kdelibs4 for openSUSE:Factory

2012-12-21 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2012-12-21 09:15:57

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2012-12-07 14:23:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2012-12-21 09:16:02.0 +0100
@@ -1,0 +2,6 @@
+Wed Dec 19 18:31:05 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 4.9.95
+ * This is the first RC release for 4.10. Contains bugfixes 
+
+---
kdelibs4.changes: same change

Old:

  kdelibs-4.9.90.tar.xz

New:

  kdelibs-4.9.95.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.aCLUv4/_old  2012-12-21 09:16:04.0 +0100
+++ /var/tmp/diff_new_pack.aCLUv4/_new  2012-12-21 09:16:04.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.9.90
+Version:4.9.95
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.aCLUv4/_old  2012-12-21 09:16:04.0 +0100
+++ /var/tmp/diff_new_pack.aCLUv4/_new  2012-12-21 09:16:04.0 +0100
@@ -24,9 +24,9 @@
 %define kderev 0
 
 Name:   kdelibs4
-Version:4.9.90
+Version:4.9.95
 Release:0
-%define default_branding 4.8
+%define default_branding 4.10
 BuildRequires:  OpenEXR-devel
 BuildRequires:  alsa-devel
 BuildRequires:  automoc4
@@ -396,7 +396,7 @@
 %if %suse_version  1200
 %{_kde4_appsdir}/kdeui/about
 %else
-%{_kde4_appsdir}/kdeui/about/body-background.jpg
+%{_kde4_appsdir}/kdeui/about/body-background.png
 %endif
 
 %files -n libkde4
@@ -526,7 +526,7 @@
 %if %suse_version  1200
 %exclude %{_kde4_appsdir}/kdeui/about
 %else
-%exclude %{_kde4_appsdir}/kdeui/about/body-background.jpg
+%exclude %{_kde4_appsdir}/kdeui/about/body-background.png
 %endif
 %exclude %{_kde4_appsdir}/ksgmltools2
 %exclude %{_kde4_bindir}/meinproc4


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



commit kdelibs4 for openSUSE:Factory

2012-12-07 Thread h_root
Hello community,

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

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2012-11-08 07:43:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2012-12-07 14:23:18.0 +0100
@@ -1,0 +2,36 @@
+Sat Dec  1 19:57:40 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 4.9.90
+ * This is the second Beta release for 4.10. Contains bugfixes 
+
+---
+Sun Nov 25 11:39:38 UTC 2012 - tittiatc...@gmail.com
+
+- Drop patch 4_7_branch.diff as it is not used at all
+
+---
+Tue Nov 24 14:08:11 UTC 2012 - cgiboude...@gmx.com
+
+- Fix the SLES build
+  * Replace 'BuildRequires:pkgconfig(bzip2)'
+  * Disable the polkit backend (polkit is not available in SLES)
+  * Add kdelibs4-rpmlintrc to silence the percent-in-dependency and 
percent-in-provides errors
+(rpmlint complains about 'Requires: %{name}-branding = %{brandingversion}' 
and
+ 'Provides: %{name}-branding = %{brandingversion}')
+- Remove obsolete conditions
+
+---
+Sat Nov 24 12:46:55 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 4.9.80
+  * see http://www.kde.org/announcements/announce-4.10-beta1.php
+- Remove the patches enable-solid-udisks2-backend.diff and 
+  kdelibs4-fix-python3-install.diff as it is now included upstream
+
+---
+Sun Nov 18 16:52:05 UTC 2012 - hrvoje.sen...@gmail.com
+
+- Explicitly require pkgconfig(bzip2) for 12.3
+- Recommend media-player-info for kde#269447, kde#269451
+
+---
@@ -11 +47 @@
-  * see http://kde.org/announcements/4.9.3/ for details
+  * see http://kde.org/announcements/announce-4.9.3.php for details
@@ -30 +66 @@
-  * see http://kde.org/announcements/4.9.2/ for details
+  * see http://kde.org/announcements/announce-4.9.2.php for details
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2012-11-18 
20:30:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2012-12-07 
14:23:18.0 +0100
@@ -1,0 +2,30 @@
+Sat Dec  1 19:57:40 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 4.9.90
+ * This is the second Beta release for 4.10. Contains bugfixes 
+
+---
+Sun Nov 25 11:39:38 UTC 2012 - tittiatc...@gmail.com
+
+- Drop patch 4_7_branch.diff as it is not used at all
+
+---
+Tue Nov 24 14:08:11 UTC 2012 - cgiboude...@gmx.com
+
+- Fix the SLES build
+  * Replace 'BuildRequires:pkgconfig(bzip2)'
+  * Disable the polkit backend (polkit is not available in SLES)
+  * Add kdelibs4-rpmlintrc to silence the percent-in-dependency and 
percent-in-provides errors
+(rpmlint complains about 'Requires: %{name}-branding = %{brandingversion}' 
and
+ 'Provides: %{name}-branding = %{brandingversion}')
+- Remove obsolete conditions
+
+---
+Sat Nov 24 12:46:55 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 4.9.80
+  * see http://www.kde.org/announcements/announce-4.10-beta1.php
+- Remove the patches enable-solid-udisks2-backend.diff and 
+  kdelibs4-fix-python3-install.diff as it is now included upstream
+
+---
@@ -17 +47 @@
-  * see http://kde.org/announcements/4.9.3/ for details
+  * see http://kde.org/announcements/announce-4.9.3.php for details
@@ -36 +66 @@
-  * see http://kde.org/announcements/4.9.2/ for details
+  * see http://kde.org/announcements/announce-4.9.2.php for details

Old:

  4_7_BRANCH.diff
  enable-solid-udisks2-backend.diff
  kdelibs-4.9.3.tar.xz
  kdelibs4-fix-python3-install.diff

New:

  kdelibs-4.9.90.tar.xz
  kdelibs4-rpmlintrc



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.2GC0f8/_old  2012-12-07 14:23:20.0 +0100
+++ /var/tmp/diff_new_pack.2GC0f8/_new  2012-12-07 14:23:20.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.9.3
+Version:4.9.90
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.2GC0f8/_old  2012-12-07 

commit kdelibs4 for openSUSE:Factory

2012-11-18 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2012-11-18 20:30:05

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2012-11-08 
07:43:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2012-11-18 
20:30:07.0 +0100
@@ -1,0 +2,6 @@
+Sun Nov 18 16:52:05 UTC 2012 - hrvoje.sen...@gmail.com
+
+- Explicitly require pkgconfig(bzip2) for 12.3
+- Recommend media-player-info for kde#269447, kde#269451
+
+---



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.a8p4im/_old  2012-11-18 20:30:09.0 +0100
+++ /var/tmp/diff_new_pack.a8p4im/_new  2012-11-18 20:30:09.0 +0100
@@ -68,6 +68,7 @@
 BuildRequires:  strigi-devel
 BuildRequires:  unzip
 BuildRequires:  update-desktop-files
+BuildRequires:  pkgconfig(bzip2)
 %if 0%{?suse_version}  1130
 BuildRequires:  utempter-devel
 %else
@@ -121,6 +122,7 @@
 PreReq: permissions
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
 Recommends: strigi = %( echo `rpm -q --queryformat '%{VERSION}' 
strigi-devel`)
+Recommends: media-player-info
 Requires:   kdelibs4-core = %{version}
 Requires:   libkde4 = %{version}
 %if %{suse_version}  1220



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



commit kdelibs4 for openSUSE:Factory

2012-10-18 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2012-10-18 21:51:02

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2012-10-08 
07:11:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2012-10-18 
21:51:27.0 +0200
@@ -1,0 +2,7 @@
+Sat Oct 13 08:10:10 UTC 2012 - ei...@heavensinferno.net
+
+- Add patch from upstream to enable correct Python 3 installation:
+  this is a prerequisite to provide PyKDE4 Python 3 packages.
+- Currently the patch is enabled just for Factory (openSUSE 12.3)
+
+---

New:

  kdelibs4-fix-python3-install.diff



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.v2VaKK/_old  2012-10-18 21:51:28.0 +0200
+++ /var/tmp/diff_new_pack.v2VaKK/_new  2012-10-18 21:51:28.0 +0200
@@ -115,6 +115,8 @@
 %if %{suse_version}  1220
 # PATCH-FIX-UPSTREAM Build a udisks2 backend for solid (KDE 4.10)
 Patch100:   enable-solid-udisks2-backend.diff
+# PATCH-FIX-UPSTREAM Enable support for installing Python 3 modules
+Patch101:   kdelibs4-fix-python3-install.diff
 %endif
 PreReq: permissions
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
@@ -186,6 +188,7 @@
 %patch26 -p1
 %if %{suse_version}  1220
 %patch100 -p1
+%patch101 -p1
 %endif
 
 #
@@ -270,7 +273,7 @@
 
 %package doc
 Summary:Documentation for KDE Base Libraries
-License:LGPL-2.1+ and SUSE-GFDL-1.2+
+License:LGPL-2.1+ and GFDL-1.2+
 Group:  System/GUI/KDE
 %define regcat /usr/bin/sgml-register-catalog
 PreReq: %{regcat}


++ kdelibs4-fix-python3-install.diff ++
diff --git a/cmake/modules/PythonMacros.cmake b/cmake/modules/PythonMacros.cmake
index 774c6b2..661e32d 100644
--- a/cmake/modules/PythonMacros.cmake
+++ b/cmake/modules/PythonMacros.cmake
@@ -7,21 +7,21 @@
 #
 # This file defines the following macros:
 #
-# PYTHON_INSTALL (SOURCE_FILE DESINATION_DIR)
+# PYTHON_INSTALL (SOURCE_FILE DESTINATION_DIR)
 # Install the SOURCE_FILE, which is a Python .py file, into the
 # destination directory during install. The file will be byte compiled
 # and both the .py file and .pyc file will be installed.
 
 GET_FILENAME_COMPONENT(PYTHON_MACROS_MODULE_PATH ${CMAKE_CURRENT_LIST_FILE}  
PATH)
 
-MACRO(PYTHON_INSTALL SOURCE_FILE DESINATION_DIR)
+MACRO(PYTHON_INSTALL SOURCE_FILE DESTINATION_DIR)
 
   FIND_FILE(_python_compile_py PythonCompile.py PATHS ${CMAKE_MODULE_PATH})
 
   ADD_CUSTOM_TARGET(compile_python_files ALL)
 
   # Install the source file.
-  INSTALL(FILES ${SOURCE_FILE} DESTINATION ${DESINATION_DIR})
+  INSTALL(FILES ${SOURCE_FILE} DESTINATION ${DESTINATION_DIR})
 
   # Byte compile and install the .pyc file.
   GET_FILENAME_COMPONENT(_absfilename ${SOURCE_FILE} ABSOLUTE)
@@ -34,11 +34,19 @@ MACRO(PYTHON_INSTALL SOURCE_FILE DESINATION_DIR)
   endif(WIN32)
 
   SET(_bin_py ${CMAKE_CURRENT_BINARY_DIR}/${_basepath}/${_filename})
-  SET(_bin_pyc ${CMAKE_CURRENT_BINARY_DIR}/${_basepath}/${_filenamebase}.pyc)
+
+  # Python 3.2 changed the pyc file location
+  IF(PYTHON_SHORT_VERSION GREATER 3.1)
+# To get the right version for suffix
+STRING(REPLACE .  _suffix ${PYTHON_SHORT_VERSION})
+SET(_bin_pyc 
${CMAKE_CURRENT_BINARY_DIR}/${_basepath}/__pycache__/${_filenamebase}.cpython-${_suffix}.pyc)
+  ELSE(PYTHON_SHORT_VERSION GREATER 3.1)
+SET(_bin_pyc ${CMAKE_CURRENT_BINARY_DIR}/${_basepath}/${_filenamebase}.pyc)
+  ENDIF(PYTHON_SHORT_VERSION GREATER 3.1)
 
   FILE(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${_basepath})
 
-  SET(_message -DMESSAGE=Byte-compiling ${_bin_py})
+  SET(_message Byte-compiling ${_bin_py})
 
   GET_FILENAME_COMPONENT(_abs_bin_py ${_bin_py} ABSOLUTE)
   IF(_abs_bin_py STREQUAL ${_absfilename})# Don't copy the file onto 
itself.
@@ -58,5 +66,10 @@ MACRO(PYTHON_INSTALL SOURCE_FILE DESINATION_DIR)
 )
   ENDIF(_abs_bin_py STREQUAL ${_absfilename})
 
-  INSTALL(FILES ${_bin_pyc} DESTINATION ${DESINATION_DIR})
+  IF(PYTHON_SHORT_VERSION GREATER 3.1)
+INSTALL(FILES ${_bin_pyc} DESTINATION ${DESTINATION_DIR}/__pycache__/)
+  ELSE (PYTHON_SHORT_VERSION GREATER 3.1)
+  INSTALL(FILES ${_bin_pyc} DESTINATION ${DESTINATION_DIR})
+  ENDIF (PYTHON_SHORT_VERSION GREATER 3.1)
+
 ENDMACRO(PYTHON_INSTALL)

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



commit kdelibs4 for openSUSE:Factory

2012-10-07 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2012-10-08 07:11:20

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2012-09-20 15:47:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2012-10-08 07:11:23.0 +0200
@@ -1,0 +2,13 @@
+Sat Sep 29 09:52:50 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 4.9.2
+  * see http://kde.org/announcements/4.9.2/ for details
+
+---
+Tue Sep 25 14:23:31 UTC 2012 - tittiatc...@gmail.com
+
+- Add upstream patch to bring udisks2 support for solid. 
+  The udisks2 solid backend will replace the udisks only on 
+  Factory (openSUSE 12.3)
+
+---
kdelibs4.changes: same change

Old:

  kdelibs-4.9.1.tar.xz

New:

  enable-solid-udisks2-backend.diff
  kdelibs-4.9.2.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.qGIyOs/_old  2012-10-08 07:11:25.0 +0200
+++ /var/tmp/diff_new_pack.qGIyOs/_new  2012-10-08 07:11:25.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.9.1
+Version:4.9.2
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.qGIyOs/_old  2012-10-08 07:11:25.0 +0200
+++ /var/tmp/diff_new_pack.qGIyOs/_new  2012-10-08 07:11:25.0 +0200
@@ -24,7 +24,7 @@
 %define kderev 0 
 
 Name:   kdelibs4
-Version:4.9.1
+Version:4.9.2
 Release:0
 %define default_branding 4.8
 BuildRequires:  OpenEXR-devel
@@ -112,15 +112,21 @@
 Patch20:ignore-inline-menu.diff
 Patch24:ksuseinstall.diff
 Patch26:fix_kdeclarative_install_location.diff
+%if %{suse_version}  1220
+# PATCH-FIX-UPSTREAM Build a udisks2 backend for solid (KDE 4.10)
+Patch100:   enable-solid-udisks2-backend.diff
+%endif
 PreReq: permissions
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
 Recommends: strigi = %( echo `rpm -q --queryformat '%{VERSION}' 
strigi-devel`)
 Requires:   kdelibs4-core = %{version}
 Requires:   libkde4 = %{version}
-%if %{suse_version}  1130
+%if %{suse_version}  1220
+Requires:   udisks2
+%else
 Requires:   udisks
-Requires:   upower
 %endif
+Requires:   upower
 Requires(post): shared-mime-info
 Requires(postun):   shared-mime-info
 
@@ -178,6 +184,9 @@
 %patch20
 %patch24
 %patch26 -p1
+%if %{suse_version}  1220
+%patch100 -p1
+%endif
 
 #
 # define KDE version exactly
@@ -201,6 +210,9 @@
 -DKDE4_ENABLE_FPIE=1
 -DTEMPLATES_INSTALL_DIR=%{_kde4_sharedir}/templates \
 -DHTML_INSTALL_DIR=%{_kde4_htmldir} \
+%if %{suse_version}  1220
+-DWITH_SOLID_UDISKS2=TRUE \
+%endif
 -DKDE_DEFAULT_HOME=.kde4 -DSYSCONF_INSTALL_DIR=%{_sysconfdir}
   %cmake_kde4 -d build -- -DKDE_DISTRIBUTION_TEXT=%distribution $EXTRA_FLAGS
   %make_jobs

++ enable-solid-udisks2-backend.diff ++
 3609 lines (skipped)


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



commit kdelibs4 for openSUSE:Factory

2012-09-20 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2012-09-20 15:47:39

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2012-09-11 07:56:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2012-09-20 15:47:45.0 +0200
@@ -1,0 +2,10 @@
+Thu Sep 13 20:12:03 UTC 2012 - ctri...@opensuse.org
+
+- BuildRequires: krb5-devel to enable kerberos support (bnc#780300)
+
+---
+Tue Sep 11 08:18:29 UTC 2012 - dmuel...@suse.com
+
+- require the right shared-desktop-ontologies package
+
+---
@@ -6 +15,0 @@
-  
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2012-09-11 
11:39:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2012-09-20 
15:47:45.0 +0200
@@ -1,0 +2,5 @@
+Thu Sep 13 20:12:03 UTC 2012 - ctri...@opensuse.org
+
+- BuildRequires: krb5-devel to enable kerberos support (bnc#780300)
+
+---



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.HeTUvi/_old  2012-09-20 15:47:46.0 +0200
+++ /var/tmp/diff_new_pack.HeTUvi/_new  2012-09-20 15:47:46.0 +0200
@@ -46,6 +46,7 @@
 #BuildRequires:  herqq-devel
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  kde4-filesystem
+BuildRequires:  krb5-devel
 BuildRequires:  libQtWebKit-devel
 BuildRequires:  libacl-devel
 BuildRequires:  libattica-devel



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



commit kdelibs4 for openSUSE:Factory

2012-09-11 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2012-09-11 11:39:00

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2012-09-11 
07:56:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2012-09-11 
11:39:02.0 +0200
@@ -1,0 +2,5 @@
+Tue Sep 11 08:18:29 UTC 2012 - dmuel...@suse.com
+
+- require the right shared-desktop-ontologies package
+
+---
@@ -6 +10,0 @@
-  



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.4vaG67/_old  2012-09-11 11:39:03.0 +0200
+++ /var/tmp/diff_new_pack.4vaG67/_new  2012-09-11 11:39:03.0 +0200
@@ -61,7 +61,7 @@
 BuildRequires:  libxslt-devel
 BuildRequires:  pcre-devel
 BuildRequires:  phonon-devel
-BuildRequires:  shared-desktop-ontologies-devel
+BuildRequires:  shared-desktop-ontologies-devel = 0.10.0
 BuildRequires:  shared-mime-info
 BuildRequires:  strigi
 BuildRequires:  strigi-devel



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



commit kdelibs4 for openSUSE:Factory

2012-09-10 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2012-09-11 07:56:39

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2012-08-08 22:23:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2012-09-11 07:56:52.0 +0200
@@ -1,0 +2,7 @@
+Wed Sep  5 12:03:15 UTC 2012 - dmuel...@suse.com
+
+- update to 4.9.1
+  * see http://kde.org/announcements/4.9.1/ for details
+  
+
+---
@@ -10,0 +18 @@
+- remove upstreamed patches
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2012-08-08 
22:23:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2012-09-11 
07:56:52.0 +0200
@@ -1,0 +2,7 @@
+Wed Sep  5 12:03:15 UTC 2012 - dmuel...@suse.com
+
+- update to 4.9.1
+  * see http://kde.org/announcements/4.9.1/ for details
+  
+
+---

Old:

  fix_kcalc_shortcut.diff
  kdelibs-4.8.5.tar.xz

New:

  kdelibs-4.9.1.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.KUDQv0/_old  2012-09-11 07:56:57.0 +0200
+++ /var/tmp/diff_new_pack.KUDQv0/_new  2012-09-11 07:56:57.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.8.5
+Version:4.9.1
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.KUDQv0/_old  2012-09-11 07:56:57.0 +0200
+++ /var/tmp/diff_new_pack.KUDQv0/_new  2012-09-11 07:56:57.0 +0200
@@ -24,7 +24,7 @@
 %define kderev 0 
 
 Name:   kdelibs4
-Version:4.8.5
+Version:4.9.1
 Release:0
 %define default_branding 4.8
 BuildRequires:  OpenEXR-devel
@@ -110,7 +110,6 @@
 Patch18:plasma-libs.diff
 Patch20:ignore-inline-menu.diff
 Patch24:ksuseinstall.diff
-Patch25:fix_kcalc_shortcut.diff
 Patch26:fix_kdeclarative_install_location.diff
 PreReq: permissions
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
@@ -177,7 +176,6 @@
 %patch18
 %patch20
 %patch24
-%patch25
 %patch26 -p1
 
 #
@@ -465,7 +463,7 @@
 Requires:   libxslt-devel
 Requires:   pcre-devel
 Requires:   phonon-devel
-Requires:   shared-desktop-ontologies-devel
+Requires:   shared-desktop-ontologies-devel = 0.10
 Requires:   strigi-devel
 Requires:   update-desktop-files
 Requires:   pkgconfig(libxml-2.0)
@@ -486,9 +484,9 @@
 %exclude %{_kde4_libdir}/libksuseinstall.so
 
 %{_kde4_appsdir}/cmake
-%{_kde4_libdir}/cmake/KDeclarative
 %{_kde4_includedir}/*
 %{_kde4_libdir}/*.so
+%{_kde4_libdir}/cmake
 %{_kde4_libdir}/kde4/plugins/script/libkrossqtsplugin.so
 
 %doc COPYING.LIB README
@@ -518,7 +516,6 @@
 %doc %lang(en) %{_kde4_htmldir}/en/sonnet
 
 %exclude %{_kde4_appsdir}/cmake
-%exclude %{_kde4_libdir}/cmake/KDeclarative
 %if %suse_version  1200
 %exclude %{_kde4_appsdir}/kdeui/about
 %else


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



commit kdelibs4 for openSUSE:Factory

2012-08-08 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2012-08-08 22:23:12

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2012-07-13 11:31:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2012-08-08 22:23:15.0 +0200
@@ -2 +2,12 @@
-Mon Jul  2 08:02:40 UTC 2012 - m...@suse.com
+Mon Jul 30 18:31:35 UTC 2012 - ctri...@opensuse.org
+
+- Remove herqq support as this causes frequent crashes (bnc#768368)
+
+---
+Mon Jul 30 16:51:37 UTC 2012 - dmuel...@suse.com
+
+- update to 4.8.5
+  * see http://kde.org/announcements/changelogs/changelog4_8_4to4_8_5.php for 
details
+
+---
+Mon Jul  2 08:00:13 UTC 2012 - m...@suse.com
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2012-07-13 
11:31:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2012-08-08 
22:23:15.0 +0200
@@ -1,0 +2,12 @@
+Mon Jul 30 18:31:35 UTC 2012 - ctri...@opensuse.org
+
+- Remove herqq support as this causes frequent crashes (bnc#768368)
+
+---
+Mon Jul 30 16:51:37 UTC 2012 - dmuel...@suse.com
+
+- update to 4.8.5
+  * see http://kde.org/announcements/changelogs/changelog4_8_4to4_8_5.php for 
details
+- remove upstreamed patches
+
+---

Old:

  76e0376d-kdelibs-soprano-276-1.diff
  bde5aad1-kdelibs-soprano-276-2.diff
  kdelibs-4.8.4.tar.xz
  kdelibs4-mount-vfat-fs-with-flush.diff
  solid_udisks_upower_fix_properties.diff

New:

  kdelibs-4.8.5.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.1jgUsV/_old  2012-08-08 22:23:18.0 +0200
+++ /var/tmp/diff_new_pack.1jgUsV/_new  2012-08-08 22:23:18.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.8.4
+Version:4.8.5
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.1jgUsV/_old  2012-08-08 22:23:18.0 +0200
+++ /var/tmp/diff_new_pack.1jgUsV/_new  2012-08-08 22:23:18.0 +0200
@@ -24,7 +24,7 @@
 %define kderev 0 
 
 Name:   kdelibs4
-Version:4.8.4
+Version:4.8.5
 Release:0
 %define default_branding 4.8
 BuildRequires:  OpenEXR-devel
@@ -42,7 +42,8 @@
 BuildRequires:  giflib-devel
 BuildRequires:  grantlee-devel
 BuildRequires:  help2man
-BuildRequires:  herqq-devel
+#Remove herqq support as this causes frequent crashes (bnc#768368)
+#BuildRequires:  herqq-devel
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  kde4-filesystem
 BuildRequires:  libQtWebKit-devel
@@ -111,10 +112,6 @@
 Patch24:ksuseinstall.diff
 Patch25:fix_kcalc_shortcut.diff
 Patch26:fix_kdeclarative_install_location.diff
-Patch28:solid_udisks_upower_fix_properties.diff
-Patch29:76e0376d-kdelibs-soprano-276-1.diff
-Patch30:bde5aad1-kdelibs-soprano-276-2.diff
-Patch31:kdelibs4-mount-vfat-fs-with-flush.diff
 PreReq: permissions
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
 Recommends: strigi = %( echo `rpm -q --queryformat '%{VERSION}' 
strigi-devel`)
@@ -182,10 +179,6 @@
 %patch24
 %patch25
 %patch26 -p1
-%patch28 -p1
-%patch29 -p1
-%patch30 -p1
-%patch31 -p1
 
 #
 # define KDE version exactly


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



commit kdelibs4 for openSUSE:Factory

2012-07-13 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2012-07-13 11:31:23

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2012-06-28 15:30:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2012-07-13 11:31:25.0 +0200
@@ -1,0 +2,6 @@
+Mon Jul  2 08:02:40 UTC 2012 - m...@suse.com
+
+- Apply to a upstream patch to mount vfat filesystem with flush 
+  option. (bnc#746394, kde#273792)
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2012-06-28 
15:30:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2012-07-13 
11:31:25.0 +0200
@@ -1,0 +2,6 @@
+Mon Jul  2 08:00:13 UTC 2012 - m...@suse.com
+
+- Apply to a upstream patch to mount vfat filesystem with flush 
+  option. (bnc#746394, kde#273792)
+
+---

New:

  kdelibs4-mount-vfat-fs-with-flush.diff



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.mm6t35/_old  2012-07-13 11:31:27.0 +0200
+++ /var/tmp/diff_new_pack.mm6t35/_new  2012-07-13 11:31:27.0 +0200
@@ -114,6 +114,7 @@
 Patch28:solid_udisks_upower_fix_properties.diff
 Patch29:76e0376d-kdelibs-soprano-276-1.diff
 Patch30:bde5aad1-kdelibs-soprano-276-2.diff
+Patch31:kdelibs4-mount-vfat-fs-with-flush.diff
 PreReq: permissions
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
 Recommends: strigi = %( echo `rpm -q --queryformat '%{VERSION}' 
strigi-devel`)
@@ -184,6 +185,7 @@
 %patch28 -p1
 %patch29 -p1
 %patch30 -p1
+%patch31 -p1
 
 #
 # define KDE version exactly


++ kdelibs4-mount-vfat-fs-with-flush.diff ++
commit 6f8a052881ac699ff2cc4917b32f4620c599a24f
Author: Lukas Tinkl lu...@kde.org
Date:   Tue Jun 12 12:28:41 2012 +0200

UDisks mount vfat filesystems with flush option

REVIEW:105224
BUG:273792

diff --git a/solid/solid/backends/udisks/udisksstorageaccess.cpp 
b/solid/solid/backends/udisks/udisksstorageaccess.cpp
index 7d72a88..a5f013c 100644
--- a/solid/solid/backends/udisks/udisksstorageaccess.cpp
+++ b/solid/solid/backends/udisks/udisksstorageaccess.cpp
@@ -259,6 +259,7 @@ bool UDisksStorageAccess::mount()
 path.chop(6);
 }
 QString fstype;
+QStringList options;
 
 if (isLuksDevice()) { // mount options for the cleartext volume
 path = m_device-prop(LuksHolder).valueQDBusObjectPath().path();
@@ -272,8 +273,12 @@ bool UDisksStorageAccess::mount()
 if (m_device-prop(IdUsage).toString() == filesystem)
 fstype = m_device-prop(IdType).toString();
 
+if (fstype == vfat) {
+options  flush;
+}
+
 msg  fstype;
-msg  QStringList();   // options, unused now
+msg  options;
 
 return c.callWithCallback(msg, this,
   SLOT(slotDBusReply(QDBusMessage)),

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



commit kdelibs4 for openSUSE:Factory

2012-06-28 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2012-06-28 15:29:57

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2012-06-12 21:43:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2012-06-28 15:30:09.0 +0200
@@ -1,0 +2,5 @@
+Tue Jun 26 09:56:49 UTC 2012 - idon...@suse.com
+
+- Add patches to fix Soprano crashes 
+
+---
kdelibs4.changes: same change

New:

  76e0376d-kdelibs-soprano-276-1.diff
  bde5aad1-kdelibs-soprano-276-2.diff



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.Cb8IoV/_old  2012-06-28 15:30:13.0 +0200
+++ /var/tmp/diff_new_pack.Cb8IoV/_new  2012-06-28 15:30:13.0 +0200
@@ -112,6 +112,8 @@
 Patch25:fix_kcalc_shortcut.diff
 Patch26:fix_kdeclarative_install_location.diff
 Patch28:solid_udisks_upower_fix_properties.diff
+Patch29:76e0376d-kdelibs-soprano-276-1.diff
+Patch30:bde5aad1-kdelibs-soprano-276-2.diff
 PreReq: permissions
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
 Recommends: strigi = %( echo `rpm -q --queryformat '%{VERSION}' 
strigi-devel`)
@@ -180,6 +182,8 @@
 %patch25
 %patch26 -p1
 %patch28 -p1
+%patch29 -p1
+%patch30 -p1
 
 #
 # define KDE version exactly

++ 76e0376d-kdelibs-soprano-276-1.diff ++
commit 76e0376d7582cfe5b898c56bf3779ca2279dace8
Author: Vishesh Handa m...@vhanda.in
Date:   Thu Jun 14 02:55:32 2012 +0530

Revert Disconnect before re-connecting. Soprano does not do that for us.

This reverts commit 3708be2d09700b21f934c2129218e1c7ea44efdf.

This is being done so that KDE 4.8.x works with Soprano 2.7.6

diff --git a/nepomuk/core/nepomukmainmodel.cpp 
b/nepomuk/core/nepomukmainmodel.cpp
index 8dc0b1f..ff742d7 100644
--- a/nepomuk/core/nepomukmainmodel.cpp
+++ b/nepomuk/core/nepomukmainmodel.cpp
@@ -97,7 +97,6 @@ public:
 if ( forced || (!m_socketConnectFailed  
!localSocketClient.isConnected()) ) {
 delete localSocketModel;
 localSocketModel = 0;
-localSocketClient.disconnect();
 QString socketName = KGlobal::dirs()-locateLocal( socket, 
nepomuk-socket );
 kDebug()  Connecting to local socket  socketName;
 if ( localSocketClient.connect( socketName ) ) {
++ bde5aad1-kdelibs-soprano-276-2.diff ++
commit bde5aad1e9f7bfb6f8d5c60197797de4a315158d
Author: Vishesh Handa m...@vhanda.in
Date:   Thu Jun 14 02:56:31 2012 +0530

Revert Always rec-connect if forced (ie. when Nepomuk server restarts)

This reverts commit a43824a200ed76cef48a90bd3aee8547698b7c91.

This is done so that 4.8.x works with Soprano 2.7.6

diff --git a/nepomuk/core/nepomukmainmodel.cpp 
b/nepomuk/core/nepomukmainmodel.cpp
index ff742d7..be23b38 100644
--- a/nepomuk/core/nepomukmainmodel.cpp
+++ b/nepomuk/core/nepomukmainmodel.cpp
@@ -94,7 +94,7 @@ public:
 
 // we may get disconnected from the server but we don't want to try
 // to connect every time the model is requested
-if ( forced || (!m_socketConnectFailed  
!localSocketClient.isConnected()) ) {
+if ( !m_socketConnectFailed  !localSocketClient.isConnected() ) {
 delete localSocketModel;
 localSocketModel = 0;
 QString socketName = KGlobal::dirs()-locateLocal( socket, 
nepomuk-socket );


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



commit kdelibs4 for openSUSE:Factory

2012-06-12 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2012-06-12 21:42:23

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2012-05-26 13:05:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2012-06-12 21:43:05.0 +0200
@@ -1,0 +2,12 @@
+Fri Jun  1 13:53:09 UTC 2012 - dmuel...@suse.com
+
+- update to 4.8.4
+  * see http://kde.org/announcements/changelogs/changelog4_8_3to4_8_4.php for 
details
+
+---
+Tue May 29 09:29:30 UTC 2012 - toddrme2...@gmail.com
+
+- Re-enable building with herqq/hupnp support.  The licensing issues have all 
been resolved (see bnc#710616)
+  This allows browsing of upnp servers in kio as well as upnp playback in 
amarok.
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2012-05-31 
17:05:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2012-06-12 
21:43:05.0 +0200
@@ -1,0 +2,6 @@
+Fri Jun  1 13:53:09 UTC 2012 - dmuel...@suse.com
+
+- update to 4.8.4
+  * see http://kde.org/announcements/changelogs/changelog4_8_3to4_8_4.php for 
details
+
+---

Old:

  kdelibs-4.8.3.tar.xz
  solid_fstab_cache_storageaccess.diff
  solid_fstab_fix_race.diff

New:

  kdelibs-4.8.4.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.pZ0lp1/_old  2012-06-12 21:43:07.0 +0200
+++ /var/tmp/diff_new_pack.pZ0lp1/_new  2012-06-12 21:43:07.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.8.3
+Version:4.8.4
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.pZ0lp1/_old  2012-06-12 21:43:07.0 +0200
+++ /var/tmp/diff_new_pack.pZ0lp1/_new  2012-06-12 21:43:07.0 +0200
@@ -24,7 +24,7 @@
 %define kderev 0 
 
 Name:   kdelibs4
-Version:4.8.3
+Version:4.8.4
 Release:0
 %define default_branding 4.8
 BuildRequires:  OpenEXR-devel
@@ -112,8 +112,6 @@
 Patch25:fix_kcalc_shortcut.diff
 Patch26:fix_kdeclarative_install_location.diff
 Patch28:solid_udisks_upower_fix_properties.diff
-Patch29:solid_fstab_fix_race.diff
-Patch30:solid_fstab_cache_storageaccess.diff
 PreReq: permissions
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
 Recommends: strigi = %( echo `rpm -q --queryformat '%{VERSION}' 
strigi-devel`)
@@ -182,8 +180,6 @@
 %patch25
 %patch26 -p1
 %patch28 -p1
-%patch29 -p1
-%patch30 -p1
 
 #
 # define KDE version exactly


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



commit kdelibs4 for openSUSE:Factory

2012-05-31 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2012-05-31 17:05:49

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2012-05-26 
13:05:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2012-05-31 
17:05:57.0 +0200
@@ -1,0 +2,6 @@
+Tue May 29 09:29:30 UTC 2012 - toddrme2...@gmail.com
+
+- Re-enable building with herqq/hupnp support.  The licensing issues have all 
been resolved (see bnc#710616)
+  This allows browsing of upnp servers in kio as well as upnp playback in 
amarok.
+
+---



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.pZFANe/_old  2012-05-31 17:05:59.0 +0200
+++ /var/tmp/diff_new_pack.pZFANe/_new  2012-05-31 17:05:59.0 +0200
@@ -42,9 +42,7 @@
 BuildRequires:  giflib-devel
 BuildRequires:  grantlee-devel
 BuildRequires:  help2man
-%if 0%{?kdelibs_is_fully_gplv3_compatible}
 BuildRequires:  herqq-devel
-%endif
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  kde4-filesystem
 BuildRequires:  libQtWebKit-devel



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



commit kdelibs4 for openSUSE:Factory

2012-05-26 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2012-05-26 13:05:08

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2012-05-10 14:32:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2012-05-26 13:05:15.0 +0200
@@ -1,0 +2,5 @@
+Thu May 24 18:26:54 UTC 2012 - co...@suse.com
+
+- fix brandingversion
+
+---
@@ -37,0 +43,9 @@
+
+---
+Tue Mar  6 01:21:08 UTC 2012 - stefan.bru...@rwth-aachen.de
+
+- fix crash due to race in fstabstorageaccess constructor
+- cache fstabstorageaccess interface instance
+- solid udisks/upower backends:
+  * fix solid call to org.freedesktop.Properties.GetAll
+  * do not call Properties method on Root object
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2012-05-10 
14:32:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2012-05-26 
13:05:15.0 +0200
@@ -1,0 +2,5 @@
+Thu May 24 18:26:54 UTC 2012 - co...@suse.com
+
+- fix brandingversion
+
+---



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.H05gfC/_old  2012-05-26 13:05:16.0 +0200
+++ /var/tmp/diff_new_pack.H05gfC/_new  2012-05-26 13:05:16.0 +0200
@@ -26,6 +26,7 @@
 Name:   kdelibs4
 Version:4.8.3
 Release:0
+%define default_branding 4.8
 BuildRequires:  OpenEXR-devel
 BuildRequires:  alsa-devel
 BuildRequires:  automoc4
@@ -74,8 +75,8 @@
 %endif
 BuildRequires:  xz
 BuildRequires:  xz-devel
-%if %suse_version  1210
-%define brandingversion 4.8
+%if %suse_version  1140
+%define brandingversion %{default_branding}
 %endif
 %if %suse_version == 1130
 %define brandingversion 11.3
@@ -83,9 +84,6 @@
 %if %suse_version == 1140
 %define brandingversion 11.4
 %endif
-%if %suse_version == 1210
-%define brandingversion 12.1
-%endif
 %if %suse_version  1130
 %define brandingversion 11.1
 %endif



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



commit kdelibs4 for openSUSE:Factory

2012-05-10 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2012-05-10 14:32:13

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2012-04-17 21:59:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2012-05-10 14:32:33.0 +0200
@@ -1,0 +2,6 @@
+Sun Apr 29 20:52:53 UTC 2012 - dmuel...@suse.com
+
+- update to 4.8.3
+  * see http://kde.org/announcements/changelogs/changelog4_8_2to4_8_3.php for 
details
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2012-04-17 
21:59:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2012-05-10 
14:32:33.0 +0200
@@ -1,0 +2,6 @@
+Sun Apr 29 20:52:53 UTC 2012 - dmuel...@suse.com
+
+- update to 4.8.3
+  * see http://kde.org/announcements/changelogs/changelog4_8_2to4_8_3.php for 
details
+
+---
@@ -31,0 +38,9 @@
+
+---
+Tue Mar  6 01:21:08 UTC 2012 - stefan.bru...@rwth-aachen.de
+
+- fix crash due to race in fstabstorageaccess constructor
+- cache fstabstorageaccess interface instance
+- solid udisks/upower backends:
+  * fix solid call to org.freedesktop.Properties.GetAll
+  * do not call Properties method on Root object

Old:

  kdelibs-4.8.2.tar.xz

New:

  fix_kdeclarative_install_location.diff
  kdelibs-4.8.3.tar.xz
  solid_fstab_cache_storageaccess.diff
  solid_fstab_fix_race.diff
  solid_udisks_upower_fix_properties.diff



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.K8w0Ts/_old  2012-05-10 14:32:39.0 +0200
+++ /var/tmp/diff_new_pack.K8w0Ts/_new  2012-05-10 14:32:39.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.8.2
+Version:4.8.3
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.K8w0Ts/_old  2012-05-10 14:32:39.0 +0200
+++ /var/tmp/diff_new_pack.K8w0Ts/_new  2012-05-10 14:32:39.0 +0200
@@ -24,7 +24,7 @@
 %define kderev 0 
 
 Name:   kdelibs4
-Version:4.8.2
+Version:4.8.3
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  alsa-devel
@@ -114,6 +114,10 @@
 Patch20:ignore-inline-menu.diff
 Patch24:ksuseinstall.diff
 Patch25:fix_kcalc_shortcut.diff
+Patch26:fix_kdeclarative_install_location.diff
+Patch28:solid_udisks_upower_fix_properties.diff
+Patch29:solid_fstab_fix_race.diff
+Patch30:solid_fstab_cache_storageaccess.diff
 PreReq: permissions
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
 Recommends: strigi = %( echo `rpm -q --queryformat '%{VERSION}' 
strigi-devel`)
@@ -180,6 +184,10 @@
 %patch20
 %patch24
 %patch25
+%patch26 -p1
+%patch28 -p1
+%patch29 -p1
+%patch30 -p1
 
 #
 # define KDE version exactly
@@ -487,6 +495,7 @@
 %exclude %{_kde4_libdir}/libksuseinstall.so
 
 %{_kde4_appsdir}/cmake
+%{_kde4_libdir}/cmake/KDeclarative
 %{_kde4_includedir}/*
 %{_kde4_libdir}/*.so
 %{_kde4_libdir}/kde4/plugins/script/libkrossqtsplugin.so
@@ -518,6 +527,7 @@
 %doc %lang(en) %{_kde4_htmldir}/en/sonnet
 
 %exclude %{_kde4_appsdir}/cmake
+%exclude %{_kde4_libdir}/cmake/KDeclarative
 %if %suse_version  1200
 %exclude %{_kde4_appsdir}/kdeui/about
 %else

++ fix_kdeclarative_install_location.diff ++
Index: kdelibs-4.8.3/experimental/libkdeclarative/CMakeLists.txt
===
--- kdelibs-4.8.3.orig/experimental/libkdeclarative/CMakeLists.txt
+++ kdelibs-4.8.3/experimental/libkdeclarative/CMakeLists.txt
@@ -6,6 +6,9 @@ endif(KDE_PLATFORM_FEATURE_BINARY_COMPAT
 
 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config-kdeclarative.h.cmake 
${CMAKE_CURRENT_BINARY_DIR}/config-kdeclarative.h)
 
+set (LIB_SUFFIX  CACHE STRING Define suffix of library directory name (eg. 
'64'))
+set( LIB_INSTALL_DIR lib${LIB_SUFFIX} )
+
 include_directories(
${CMAKE_SOURCE_DIR}
${CMAKE_BINARY_DIR}
++ solid_fstab_cache_storageaccess.diff ++
diff --git a/solid/solid/backends/fstab/fstabdevice.cpp 
b/solid/solid/backends/fstab/fstabdevice.cpp
index 4a4dcee..30a961a 100644
--- a/solid/solid/backends/fstab/fstabdevice.cpp
+++ b/solid/solid/backends/fstab/fstabdevice.cpp
@@ -77,8 +77,11 @@ QString 

commit kdelibs4 for openSUSE:Factory

2012-04-17 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2012-04-17 21:58:53

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2012-04-12 09:32:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2012-04-17 21:59:01.0 +0200
@@ -1,0 +2,15 @@
+Sun Apr 15 17:07:24 UTC 2012 - ctri...@opensuse.org
+
+- Make XF86Calculator key work (bnc#726550, kde#257900)
+
+---
+Sat Apr 14 08:20:02 UTC 2012 - dmuel...@suse.com
+
+- fix build on older distributions
+
+---
+Sun Apr  1 17:40:36 UTC 2012 - wstephen...@suse.com
+
+- Remove wrongly added %kde_runtime_requires macro
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2012-04-12 
09:32:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2012-04-17 
21:59:01.0 +0200
@@ -1,0 +2,10 @@
+Sun Apr 15 17:07:24 UTC 2012 - ctri...@opensuse.org
+
+- Make XF86Calculator key work (bnc#726550, kde#257900)
+
+---
+Sat Apr 14 08:20:02 UTC 2012 - dmuel...@suse.com
+
+- fix build on older distributions
+
+---

New:

  fix_kcalc_shortcut.diff



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.pJANhR/_old  2012-04-17 21:59:03.0 +0200
+++ /var/tmp/diff_new_pack.pJANhR/_new  2012-04-17 21:59:03.0 +0200
@@ -52,7 +52,9 @@
 BuildRequires:  libdbusmenu-qt-devel
 BuildRequires:  libgssglue-devel
 BuildRequires:  libjasper-devel
+%if %{?suse_version}  1120
 BuildRequires:  libpolkit-qt-1-devel
+%endif
 BuildRequires:  libqca2-devel
 BuildRequires:  libsoprano-devel
 BuildRequires:  libudev-devel
@@ -84,6 +86,9 @@
 %if %suse_version == 1210
 %define brandingversion 12.1
 %endif
+%if %suse_version  1130
+%define brandingversion 11.1
+%endif
 Summary:KDE Base Libraries
 License:LGPL-2.1+
 Group:  System/GUI/KDE
@@ -108,13 +113,16 @@
 Patch18:plasma-libs.diff
 Patch20:ignore-inline-menu.diff
 Patch24:ksuseinstall.diff
+Patch25:fix_kcalc_shortcut.diff
 PreReq: permissions
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
 Recommends: strigi = %( echo `rpm -q --queryformat '%{VERSION}' 
strigi-devel`)
 Requires:   kdelibs4-core = %{version}
 Requires:   libkde4 = %{version}
+%if %{suse_version}  1130
 Requires:   udisks
 Requires:   upower
+%endif
 Requires(post): shared-mime-info
 Requires(postun):   shared-mime-info
 
@@ -171,6 +179,7 @@
 %patch18
 %patch20
 %patch24
+%patch25
 
 #
 # define KDE version exactly
@@ -308,7 +317,9 @@
 Group:  System/GUI/KDE
 Requires:   kde4-filesystem = %{_kde_platform_version}
 Requires:   libkdecore4 = %{version}
+%if %{?suse_version}  1120
 %requires_gelibpolkit-qt-1-1
+%endif
 
 %description -n kdelibs4-core
 This package contains the basic packages of the K Desktop Environment.
@@ -448,7 +459,9 @@
 Requires:   libidn-devel
 Requires:   libkde4 = %{version}
 Requires:   libkdecore4-devel = %{version}
+%if %{?suse_version}  1120
 Requires:   libpolkit-qt-1-devel
+%endif
 Requires:   libsoprano-devel
 Requires:   libxslt-devel
 Requires:   pcre-devel
@@ -482,7 +495,12 @@
 
 %files -f filelists/exclude
 %defattr(-,root,root)
+# not all rpm versions handle caps
+%if %suse_version  1120
 %verify(not mode caps) %attr(4755,root,root) %{_kde4_libexecdir}/start_kdeinit
+%else
+%verify(not mode) %attr(755,root,root) %{_kde4_libexecdir}/start_kdeinit
+%endif
 
 %{_kde4_configdir}/*
 %config %{_kde4_sysconfdir}/xdg/menus/applications.menu.kde4

++ fix_kcalc_shortcut.diff ++
Subject: Make XF86Calculator key work
From: lpleg...@gmail.com
Signed-Off-By: Christian Trippe, ctri...@opensuse.org
Bug: bnc#726550, kde#257900 
Patch-upstream: no

--- kdeui/util/kkeyserver_x11.cpp   2012-02-25 18:53:49.480771132 -0200
+++ kdeui/util/kkeyserver_x11.cpp   2012-02-25 18:20:38.912403430 -0200
@@ -355,7 +355,7 @@
 { Qt::Key_MediaRecord, XF86XK_AudioRecord },
 { Qt::Key_LaunchMail, XF86XK_Mail },
 { Qt::Key_Launch0,XF86XK_MyComputer },
-{ Qt::Key_Calculator,XF86XK_Calculator },
+{ Qt::Key_Launch1,XF86XK_Calculator },
 

commit kdelibs4 for openSUSE:Factory

2012-04-12 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2012-04-12 09:31:49

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2012-03-13 11:24:43.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2012-04-12 09:32:00.0 +0200
@@ -1,0 +2,17 @@
+Fri Mar 30 01:01:55 CEST 2012 - dmuel...@suse.de
+
+- update to 4.8.2
+  * see http://kde.org/announcements/changelogs/changelog4_8_1to4_8_2.php for 
details
+
+---
+Mon Mar 26 08:21:56 UTC 2012 - corne...@solcon.nl
+
+- Do not build aspell backend, only enchant. This is less confusing, as there 
is no interface for choosing the backend. Aspell is still supported by the 
enchant backend, but default is hunspell.
+
+---
+Wed Mar 14 09:47:52 UTC 2012 - kru...@zib.de
+
+- added fix for KMail2 crashes from
+  https://bugs.kde.org/show_bug.cgi?id=295474#c27
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2012-03-29 
07:45:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2012-04-12 
09:32:01.0 +0200
@@ -1,0 +2,11 @@
+Sun Apr  1 17:40:36 UTC 2012 - wstephen...@suse.com
+
+- Remove wrongly added %kde_runtime_requires macro
+
+---
+Fri Mar 30 01:01:55 CEST 2012 - dmuel...@suse.de
+
+- update to 4.8.2
+  * see http://kde.org/announcements/changelogs/changelog4_8_1to4_8_2.php for 
details
+
+---

Old:

  kdelibs-4.8.1.tar.bz2
  kmail2-crash.diff

New:

  kdelibs-4.8.2.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.tSki88/_old  2012-04-12 09:32:07.0 +0200
+++ /var/tmp/diff_new_pack.tSki88/_new  2012-04-12 09:32:07.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.8.1
+Version:4.8.2
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source0:kdelibs-%{version}.tar.bz2
+Source0:kdelibs-%{version}.tar.xz
 Source1:baselibs.conf
 Source2:hidden.desktop
 Source3:ycp.xml
@@ -35,6 +35,7 @@
 BuildRequires:  graphviz-gnome
 BuildRequires:  kde4-filesystem
 BuildRequires:  libqt4-devel-doc
+BuildRequires:  xz
 Requires:   kde4-filesystem
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.tSki88/_old  2012-04-12 09:32:07.0 +0200
+++ /var/tmp/diff_new_pack.tSki88/_new  2012-04-12 09:32:07.0 +0200
@@ -24,7 +24,7 @@
 %define kderev 0 
 
 Name:   kdelibs4
-Version:4.8.1
+Version:4.8.2
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  alsa-devel
@@ -70,6 +70,7 @@
 %else
 BuildRequires:  utempter
 %endif
+BuildRequires:  xz
 BuildRequires:  xz-devel
 %if %suse_version  1210
 %define brandingversion 4.8
@@ -87,7 +88,7 @@
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source0:kdelibs-%{version}.tar.bz2
+Source0:kdelibs-%{version}.tar.xz
 Source1:baselibs.conf
 Source2:hidden.desktop
 Source3:ycp.xml
@@ -107,8 +108,6 @@
 Patch18:plasma-libs.diff
 Patch20:ignore-inline-menu.diff
 Patch24:ksuseinstall.diff
-# fix for KDE Bug 295474 from https://bugs.kde.org/show_bug.cgi?id=295474#c27
-Patch25:kmail2-crash.diff
 PreReq: permissions
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
 Recommends: strigi = %( echo `rpm -q --queryformat '%{VERSION}' 
strigi-devel`)
@@ -124,7 +123,6 @@
 %requires_geshared-mime-info
 %requires_geshared-desktop-ontologies
 %requires_gelibqt4-x11
-%kde4_runtime_requires
 
 %if 0%{?opensuse_bs}
 %define debug_package_requires %{name} = %{version}-%{release} libqt4-debuginfo
@@ -173,7 +171,6 @@
 %patch18
 %patch20
 %patch24
-%patch25 -p1
 
 #
 # define KDE version exactly
@@ -264,7 +261,6 @@
 PreReq: grep
 PreReq: sed
 Requires:   sgml-skel
-%kde4_runtime_requires
 
 %description doc
 This package contains the core environment and templates for the KDE
@@ -313,7 

commit kdelibs4 for openSUSE:Factory

2012-03-28 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2012-03-29 07:43:17

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2012-03-19 
10:12:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2012-03-29 
07:43:19.0 +0200
@@ -1,0 +2,5 @@
+Mon Mar 26 08:21:56 UTC 2012 - corne...@solcon.nl
+
+- Do not build aspell backend, only enchant. This is less confusing, as there 
is no interface for choosing the backend. Aspell is still supported by the 
enchant backend, but default is hunspell.
+
+---



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.I4L2CC/_old  2012-03-29 07:43:21.0 +0200
+++ /var/tmp/diff_new_pack.I4L2CC/_new  2012-03-29 07:43:21.0 +0200
@@ -28,8 +28,6 @@
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  alsa-devel
-BuildRequires:  aspell
-BuildRequires:  aspell-devel
 BuildRequires:  automoc4
 BuildRequires:  avahi-compat-mDNSResponder-devel
 BuildRequires:  bison
@@ -440,7 +438,6 @@
 Group:  Development/Libraries/KDE
 Requires:   OpenEXR-devel
 Requires:   alsa-devel
-Requires:   aspell-devel
 Requires:   avahi-compat-mDNSResponder-devel
 Requires:   cups-devel
 Requires:   docbook-xsl-stylesheets


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



commit kdelibs4 for openSUSE:Factory

2012-03-19 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2012-03-19 10:11:54

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2012-03-13 
11:24:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2012-03-19 
10:12:02.0 +0100
@@ -1,0 +2,6 @@
+Wed Mar 14 09:47:52 UTC 2012 - kru...@zib.de
+
+- added fix for KMail2 crashes from
+  https://bugs.kde.org/show_bug.cgi?id=295474#c27
+
+---

New:

  kmail2-crash.diff



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.Pm9sab/_old  2012-03-19 10:12:04.0 +0100
+++ /var/tmp/diff_new_pack.Pm9sab/_new  2012-03-19 10:12:04.0 +0100
@@ -109,6 +109,8 @@
 Patch18:plasma-libs.diff
 Patch20:ignore-inline-menu.diff
 Patch24:ksuseinstall.diff
+# fix for KDE Bug 295474 from https://bugs.kde.org/show_bug.cgi?id=295474#c27
+Patch25:kmail2-crash.diff
 PreReq: permissions
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
 Recommends: strigi = %( echo `rpm -q --queryformat '%{VERSION}' 
strigi-devel`)
@@ -173,6 +175,7 @@
 %patch18
 %patch20
 %patch24
+%patch25 -p1
 
 #
 # define KDE version exactly

++ kmail2-crash.diff ++
diff --git a/nepomuk/core/resourcedata.cpp b/nepomuk/core/resourcedata.cpp
index abe55ea..e65e66e 100644
--- a/nepomuk/core/resourcedata.cpp
+++ b/nepomuk/core/resourcedata.cpp
@@ -175,7 +175,7 @@ void Nepomuk::ResourceData::resetAll( bool isDelete )
 if( !m_uri.isEmpty() ) {
 m_rm-m_initializedData.remove( m_uri );
 if( m_rm-m_watcher  m_addedToWatcher ) {
-m_rm-m_watcher-removeResource(Resource::fromResourceUri(m_uri));
+QMetaObject::invokeMethod(m_rm-m_watcher, removeResource, 
Qt::AutoConnection, Q_ARG(Nepomuk::Resource, Resource::fromResourceUri(m_uri)));
 m_addedToWatcher = false;
 }
 }
@@ -394,15 +394,16 @@ bool Nepomuk::ResourceData::load()
 
 if(!m_rm-m_watcher) {
 m_rm-m_watcher = new ResourceWatcher(m_rm-m_manager);
+m_rm-m_watcher-moveToThread(m_rm-m_manager-thread());
 QObject::connect( m_rm-m_watcher, 
SIGNAL(propertyAdded(Nepomuk::Resource, Nepomuk::Types::Property, QVariant)),
   m_rm-m_manager, 
SLOT(slotPropertyAdded(Nepomuk::Resource, Nepomuk::Types::Property, QVariant)) 
);
 QObject::connect( m_rm-m_watcher, 
SIGNAL(propertyRemoved(Nepomuk::Resource, Nepomuk::Types::Property, QVariant)),
   m_rm-m_manager, 
SLOT(slotPropertyRemoved(Nepomuk::Resource, Nepomuk::Types::Property, 
QVariant)) );
 m_rm-m_watcher-addResource( 
Nepomuk::Resource::fromResourceUri(m_uri) );
-m_rm-m_watcher-start();
+QMetaObject::invokeMethod(m_rm-m_watcher, start, 
Qt::AutoConnection);
 }
 else {
-m_rm-m_watcher-addResource( 
Nepomuk::Resource::fromResourceUri(m_uri) );
+QMetaObject::invokeMethod(m_rm-m_watcher, addResource, 
Qt::AutoConnection, Q_ARG(Nepomuk::Resource, 
Nepomuk::Resource::fromResourceUri(m_uri)) );
 }
 m_addedToWatcher = true;
 
diff --git a/nepomuk/core/resourcewatcher.h b/nepomuk/core/resourcewatcher.h
index 06b9622..92b12f5 100644
--- a/nepomuk/core/resourcewatcher.h
+++ b/nepomuk/core/resourcewatcher.h
@@ -93,6 +93,7 @@ namespace Nepomuk {
  */
 virtual ~ResourceWatcher();
 
+public Q_SLOTS:
 /**
  * \brief Add a type to be watched.
  *
@@ -204,7 +205,6 @@ namespace Nepomuk {
  */
 QListTypes::Property properties() const;
 
-public Q_SLOTS:
 /**
  * \brief Start the signalling of changes.
  *

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



commit kdelibs4 for openSUSE:Factory

2012-03-13 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2012-03-13 11:24:41

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2012-01-27 15:20:43.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2012-03-13 11:24:43.0 +0100
@@ -1,0 +2,31 @@
+Fri Mar  2 23:14:20 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---
+Mon Feb 27 11:52:01 UTC 2012 - sasc...@suse.de
+
+- Local service run of spec formatter broke it
+
+---
+Mon Feb 27 11:04:20 UTC 2012 - sasc...@suse.de
+
+- The 'factory-auto' review script doesn't like macros in Name:
+
+---
+Mon Jan 30 14:07:45 UTC 2012 - giecr...@stegny.2a.pl
+
+- update documentation (bnc#743337)
+- move meinproc4_simple to doc
+- mark doc as GFDL
+- unmark config in /usr/share (config is in /etc)
+- reinstate checkXML.1 (why was it killed?)
+- remove kde4-doxygen.sh (build time only script)
+
+---
+Mon Jan 30 10:31:47 UTC 2012 - toddrme2...@gmail.com
+
+- Fixed aspell detection
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2012-01-31 
10:21:03.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2012-03-13 
11:24:44.0 +0100
@@ -1,0 +2,26 @@
+Fri Mar  2 23:14:20 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---
+Mon Feb 27 11:52:01 UTC 2012 - sasc...@suse.de
+
+- Local service run of spec formatter broke it
+
+---
+Mon Feb 27 11:04:20 UTC 2012 - sasc...@suse.de
+
+- The 'factory-auto' review script doesn't like macros in Name:
+
+---
+Mon Jan 30 14:07:45 UTC 2012 - giecr...@stegny.2a.pl
+
+- update documentation (bnc#743337)
+- move meinproc4_simple to doc
+- mark doc as GFDL
+- unmark config in /usr/share (config is in /etc)
+- reinstate checkXML.1 (why was it killed?)
+- remove kde4-doxygen.sh (build time only script)
+
+---

Old:

  kdelibs-4.8.0.tar.bz2

New:

  kdelibs-4.8.1.tar.bz2



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.ugVg5H/_old  2012-03-13 11:24:46.0 +0100
+++ /var/tmp/diff_new_pack.ugVg5H/_new  2012-03-13 11:24:46.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.8.0
+Version:4.8.1
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+
@@ -53,8 +53,8 @@
 %install
   mkdir -p %{buildroot}%{_kde4_htmldir}/en
   cp -prf kdelibs-%{version}-apidocs 
%{buildroot}%{_kde4_htmldir}/en/kdelibs4-apidocs
+  find %{buildroot} -name installdox | xargs rm -f
   %fdupes %{buildroot}%{_kde4_htmldir}/en/kdelibs4-apidocs
-  find %{buildroot}%{_kde4_htmldir}/en/kdelibs4-apidocs -iname installdox | 
xargs chmod -x
   %kde_post_install
 
 %clean

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.ugVg5H/_old  2012-03-13 11:24:46.0 +0100
+++ /var/tmp/diff_new_pack.ugVg5H/_new  2012-03-13 11:24:46.0 +0100
@@ -15,7 +15,17 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
+# a hack for building apidoc, currently unused and unneeded (rev.312)
+%bcond_with gendoxygen
+
+# This is KDE revision number, setting it to a higher value will enable more 
features
+# e.g. 420117248 enables kconfig_compiler.1
+%define kderev 0 
+
 Name:   kdelibs4
+Version:4.8.1
+Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  alsa-devel
 BuildRequires:  aspell
@@ -32,6 +42,7 @@
 BuildRequires:  flex
 BuildRequires:  giflib-devel
 BuildRequires:  grantlee-devel
+BuildRequires:  help2man
 %if 0%{?kdelibs_is_fully_gplv3_compatible}
 BuildRequires:  herqq-devel
 %endif
@@ -62,10 +73,8 @@
 BuildRequires:  utempter
 %endif
 BuildRequires:  xz-devel
-Version:4.8.0
-Release:0
-%if %suse_version  1140
-%define brandingversion 4.7
+%if %suse_version  

commit kdelibs4 for openSUSE:Factory

2012-01-31 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2012-01-31 10:20:29

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2012-01-27 
15:20:43.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2012-01-31 
10:21:03.0 +0100
@@ -1,0 +2,5 @@
+Mon Jan 30 10:31:47 UTC 2012 - toddrme2...@gmail.com
+
+- Fixed aspell detection
+
+---



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.ZgbcAA/_old  2012-01-31 10:21:04.0 +0100
+++ /var/tmp/diff_new_pack.ZgbcAA/_new  2012-01-31 10:21:04.0 +0100
@@ -15,10 +15,10 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
 Name:   kdelibs4
 BuildRequires:  OpenEXR-devel
 BuildRequires:  alsa-devel
+BuildRequires:  aspell
 BuildRequires:  aspell-devel
 BuildRequires:  automoc4
 BuildRequires:  avahi-compat-mDNSResponder-devel


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



commit kdelibs4 for openSUSE:Factory

2012-01-27 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2012-01-27 15:19:12

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2011-12-08 12:24:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2012-01-27 15:20:43.0 +0100
@@ -1,0 +2,16 @@
+Wed Jan 18 20:57:14 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.0
+  * first stable release of KDE 4.8 (only critical fixes over 4.7.98)
+  * see http://kde.org/announcements/4.8/ for details
+  
+
+---
+Tue Jan 10 16:32:19 CET 2012 - dmuel...@suse.de
+
+- update to 4.7.98
+  * RC2+ milestone release of KDE 4.8
+  *  see http://kde.org/announcements/4.8/ for details
+  
+
+---
kdelibs4.changes: same change

Old:

  kdelibs-4.7.4.tar.bz2

New:

  kdelibs-4.8.0.tar.bz2



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.Urtpny/_old  2012-01-27 15:20:44.0 +0100
+++ /var/tmp/diff_new_pack.Urtpny/_new  2012-01-27 15:20:44.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4-apidocs
 #
-# 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
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.7.4
+Version:4.8.0
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.Urtpny/_old  2012-01-27 15:20:44.0 +0100
+++ /var/tmp/diff_new_pack.Urtpny/_new  2012-01-27 15:20:44.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4
 #
-# 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
@@ -62,7 +62,7 @@
 BuildRequires:  utempter
 %endif
 BuildRequires:  xz-devel
-Version:4.7.4
+Version:4.8.0
 Release:0
 %if %suse_version  1140
 %define brandingversion 4.7
@@ -154,7 +154,7 @@
 %patch12
 %patch13
 %patch17
-%patch18 -p1
+%patch18
 %patch20
 %patch24
 
@@ -359,7 +359,6 @@
 %defattr(-,root,root)
 %doc COPYING COPYING.DOC COPYING.LIB README
 %{_datadir}/locale/all_languages
-%{_kde4_libdir}/libkactivities.so.*
 %{_kde4_libdir}/libkcmutils.so.*
 %{_kde4_libdir}/libkde3support.so.*
 %{_kde4_libdir}/libkdeclarative.so.*

++ kdelibs-4.7.4.tar.bz2 - kdelibs-4.8.0.tar.bz2 ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.7.4.tar.bz2 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.8.0.tar.bz2 differ: char 11, 
line 1

++ plasma-libs.diff ++
--- /var/tmp/diff_new_pack.Urtpny/_old  2012-01-27 15:20:44.0 +0100
+++ /var/tmp/diff_new_pack.Urtpny/_new  2012-01-27 15:20:44.0 +0100
@@ -1,8 +1,8 @@
-diff --git a/plasma/containment.cpp b/plasma/containment.cpp
-index c3c688f..2837882 100644
 a/plasma/containment.cpp
-+++ b/plasma/containment.cpp
-@@ -143,6 +143,18 @@ Containment::Containment(const QString packagePath, uint 
appletId, const QVaria
+Index: plasma/containment.cpp
+===
+--- plasma/containment.cpp.orig
 plasma/containment.cpp
+@@ -143,6 +143,18 @@ Containment::Containment(const QString 
  setHasConfigurationInterface(false);
  }
  
@@ -21,11 +21,11 @@
  Containment::~Containment()
  {
  delete d;
-diff --git a/plasma/containment.h b/plasma/containment.h
-index a6ebcdd..810b05f 100644
 a/plasma/containment.h
-+++ b/plasma/containment.h
-@@ -128,6 +128,8 @@ class PLASMA_EXPORT Containment : public Applet
+Index: plasma/containment.h
+===
+--- plasma/containment.h.orig
 plasma/containment.h
+@@ -128,6 +128,8 @@ class PLASMA_EXPORT Containment : public
   */
  Containment(QObject *parent, const QVariantList args);
  
@@ -34,10 +34,10 @@
  ~Containment();
  
  /**
-diff --git a/plasma/private/containment_p.h b/plasma/private/containment_p.h
-index 4025bf4..3eff519 100644
 a/plasma/private/containment_p.h
-+++ 

commit kdelibs4 for openSUSE:Factory

2011-11-14 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2011-11-14 14:09:02

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2011-11-05 11:16:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2011-11-14 14:09:05.0 +0100
@@ -1,0 +2,6 @@
+Wed Nov  2 20:21:47 CET 2011 - dmuel...@suse.de
+
+- update to 4.7.3
+  * see http://kde.org/announcements/changelogs/changelog4_7_2to4_7_3.php for 
details
+
+---
kdelibs4.changes: same change

Old:

  kdelibs-4.7.2.tar.bz2

New:

  kdelibs-4.7.3.tar.bz2



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.gjPlPq/_old  2011-11-14 14:09:08.0 +0100
+++ /var/tmp/diff_new_pack.gjPlPq/_new  2011-11-14 14:09:08.0 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.7.2
+Version:4.7.3
 Release:1
 License:LGPLv2.1+
 Summary:KDE 4 API documentation

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.gjPlPq/_old  2011-11-14 14:09:08.0 +0100
+++ /var/tmp/diff_new_pack.gjPlPq/_new  2011-11-14 14:09:08.0 +0100
@@ -63,7 +63,7 @@
 BuildRequires:  utempter
 %endif
 BuildRequires:  xz-devel
-Version:4.7.2
+Version:4.7.3
 Release:1
 %if %suse_version  1140
 %define brandingversion 4.7

++ 4_7_BRANCH.diff ++
 2008 lines (skipped)
 between /work/SRC/openSUSE:Factory/kdelibs4/4_7_BRANCH.diff
 and /work/SRC/openSUSE:Factory/.kdelibs4.new/4_7_BRANCH.diff

++ kdelibs-4.7.2.tar.bz2 - kdelibs-4.7.3.tar.bz2 ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.7.2.tar.bz2 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.7.3.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



  1   2   >