commit kdelibs3 for openSUSE:Factory

2017-08-16 Thread root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2017-08-16 16:14:47

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


Package is "kdelibs3"

Wed Aug 16 16:14:47 2017 rev:90 rq:516796 version:3.5.10

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2017-06-12 
15:34:38.233697005 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2017-08-16 
16:15:07.413509477 +0200
@@ -1,0 +2,5 @@
+Fri Aug 11 10:36:46 UTC 2017 - pgaj...@suse.com
+
+- turn off spell checker support [bsc#1052954]
+
+---



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.03Dbpg/_old  2017-08-16 16:15:10.685050256 +0200
+++ /var/tmp/diff_new_pack.03Dbpg/_new  2017-08-16 16:15:10.697048572 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs3
 #
-# 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
@@ -19,7 +19,6 @@
 Name:   kdelibs3
 BuildRequires:  OpenEXR-devel
 BuildRequires:  arts-devel
-BuildRequires:  aspell-devel
 BuildRequires:  automake
 BuildRequires:  avahi-compat-mDNSResponder-devel
 BuildRequires:  ca-certificates





commit kdelibs3 for openSUSE:Factory

2017-06-12 Thread root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2017-06-12 15:34:36

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


Package is "kdelibs3"

Mon Jun 12 15:34:36 2017 rev:89 rq:502827 version:3.5.10

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2016-06-23 
13:36:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2017-06-12 
15:34:38.233697005 +0200
@@ -1,0 +2,11 @@
+Fri Jun 02 15:54:12 CEST 2017 - cf...@kde.org
+
+- Updated kdelibs-3.5.10-gcc6.patch to fix build with gcc7 (boo#1041235)
+
+---
+Wed May 31 02:50:21 UTC 2017 - bwiedem...@suse.com
+
+- Add reproducible.patch to sort input files to make build reproducible
+  also for packages like ksimus that call our update_admin (boo#1041090)
+
+---

New:

  reproducible.patch



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.qv7hG9/_old  2017-06-12 15:34:42.933034203 +0200
+++ /var/tmp/diff_new_pack.qv7hG9/_new  2017-06-12 15:34:42.933034203 +0200
@@ -210,6 +210,7 @@
 Patch233:   kdelibs-3.5.10-CVE-2013-2074.patch
 Patch234:   fix-perl-no-defined-array.diff
 Patch235:   kdelibs-3.5.10-gcc6.patch
+Patch236:   reproducible.patch
 
 %description
 This package contains kdelibs, one of the basic packages of the K
@@ -420,6 +421,7 @@
 %patch232 -p1
 %patch234 -p1
 %patch235 -p1
+%patch236 -p1
 
 # disable a debug feature
 sed -i 's|#define KICONLOADER_CHECKS||g' kdecore/kiconloader.cpp


++ kdelibs-3.5.10-gcc6.patch ++
--- /var/tmp/diff_new_pack.qv7hG9/_old  2017-06-12 15:34:43.268986819 +0200
+++ /var/tmp/diff_new_pack.qv7hG9/_new  2017-06-12 15:34:43.268986819 +0200
@@ -26,7 +26,8 @@
kdDebug(13020)<<"updatePreviousNotEmptyLine: updating 
line:"<<(blk->startLine()+current_line)< foldingList=textLine->foldingListArray();
 -  while ( (foldingList.size()>0)  && ( 
abs(foldingList[foldingList.size()-2])==1)) {
-+  while ( (foldingList.size()>0)  && ( 
std::abs(foldingList[foldingList.size()-2])==1)) {
++  while ( (foldingList.size()>0)  && ( 
std::abs((long)foldingList[foldingList.size()-2])==1)) {
  foldingList.resize(foldingList.size()-2,QGArray::SpeedOptim);
}
addIndentBasedFoldingInformation(foldingList,addindent,deindent);
+

++ reproducible.patch ++
Index: kdelibs-3.5.10/admin/ltmain.sh
===
--- kdelibs-3.5.10.orig/admin/ltmain.sh
+++ kdelibs-3.5.10/admin/ltmain.sh
@@ -3719,7 +3719,7 @@ EOF
done
  fi
 
- libobjs="$libobjs "`find $xdir -name \*.$objext -print -o -name 
\*.lo -print | $NL2SP`
+ libobjs="$libobjs "`find $xdir -name \*.$objext -print -o -name 
\*.lo -print | LC_ALL=C sort | $NL2SP`
done
  fi
fi
@@ -4013,7 +4013,7 @@ EOF
  done
fi
 
-   reload_conv_objs="$reload_objs "`find $xdir -name \*.$objext -print 
-o -name \*.lo -print | $NL2SP`
+   reload_conv_objs="$reload_objs "`find $xdir -name \*.$objext -print 
-o -name \*.lo -print | LC_ALL=C sort | $NL2SP`
  done
fi
   fi
@@ -5043,7 +5043,7 @@ fi\
done
  fi
 
- oldobjs="$oldobjs "`find $xdir -name \*.${objext} -print -o -name 
\*.lo -print | $NL2SP`
+ oldobjs="$oldobjs "`find $xdir -name \*.${objext} -print -o -name 
\*.lo -print | LC_ALL=C sort | $NL2SP`
done
   fi
 
Index: kdelibs-3.5.10/admin/am_edit
===
--- kdelibs-3.5.10.orig/admin/am_edit
+++ kdelibs-3.5.10/admin/am_edit
@@ -1168,7 +1168,7 @@ sub handle_TOPLEVEL()
 my $pofiles = "";
 my @restfiles = ();
 opendir (THISDIR, ".");
-foreach $entry (readdir(THISDIR)) {
+foreach $entry (sort(readdir(THISDIR))) {
 next if (-d $entry);
 
 next if ($entry eq "CVS" || $entry =~ /^\./  || $entry =~ /^Makefile/ 
|| $entry =~ /~$/ || $entry =~ /^\#.*\#$/ || $entry =~ /.gmo$/);
@@ -1209,7 +1209,7 @@ sub tag_SUBDIRS ()
   my $subdirs = ".";
 
   opendir (THISDIR, ".");
-  foreach $entry (readdir(THISDIR)) {
+  foreach $entry (sort(readdir(THISDIR))) {
 next if ($entry eq "CVS" || $entry =~ /^\./);
 if (-d $entry && -f $entry . "/Makefile.am") {
   $subdirs .= " $entry";
@@ -1490,7 +1490,7 @@ sub tag_ICON()
 
 my @files = ();
 opendir (THISDIR, ".");
-foreach $entry (readdir(THISDIR)) {
+foreach $entry (sort(readdir(THISDIR))) {
 next i

commit kdelibs3 for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2016-06-23 13:36:54

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


Package is "kdelibs3"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2015-09-08 
18:09:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2016-06-23 
13:36:57.0 +0200
@@ -1,0 +2,8 @@
+Mon Jun 20 16:12:43 UTC 2016 - i...@marguerite.su
+
+- add patch: kdelibs-3.5.10-gcc6.patch
+  * fix boo#985092
+  * fix narrowing conversion from int to char inside {}
+  * fix call of overloaded 'abs(unsigned int&)' is ambiguous
+
+---

New:

  kdelibs-3.5.10-gcc6.patch



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.inf0kb/_old  2016-06-23 13:37:01.0 +0200
+++ /var/tmp/diff_new_pack.inf0kb/_new  2016-06-23 13:37:01.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs3
 #
-# 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
@@ -209,6 +209,7 @@
 Patch232:   kdelibs-3.5.10-cups20.patch
 Patch233:   kdelibs-3.5.10-CVE-2013-2074.patch
 Patch234:   fix-perl-no-defined-array.diff
+Patch235:   kdelibs-3.5.10-gcc6.patch
 
 %description
 This package contains kdelibs, one of the basic packages of the K
@@ -418,6 +419,7 @@
 %patch231 -p1
 %patch232 -p1
 %patch234 -p1
+%patch235 -p1
 
 # disable a debug feature
 sed -i 's|#define KICONLOADER_CHECKS||g' kdecore/kiconloader.cpp


++ kdelibs-3.5.10-gcc6.patch ++
Index: kdelibs-3.5.10/kate/part/katebuffer.cpp
===
--- kdelibs-3.5.10.orig/kate/part/katebuffer.cpp
+++ kdelibs-3.5.10/kate/part/katebuffer.cpp
@@ -20,6 +20,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include "katebuffer.h"
 #include "katebuffer.moc"
@@ -122,8 +123,8 @@ class KateFileLoader
   if ((c >= 2) && (m_codec->mibEnum() == 1000) && (m_buffer[1] == 
0x00))
   {
 // utf16LE, we need to put the decoder in LE mode
-char reverseUtf16[3] = {0xFF, 0xFE, 0x00};
-m_decoder->toUnicode(reverseUtf16, 2);
+unsigned char reverseUtf16[3] = {0xFF, 0xFE, 0x00};
+m_decoder->toUnicode((char *)reverseUtf16, 2);
   }
 
   processNull (c);
@@ -917,7 +918,7 @@ void KateBuffer::updatePreviousNotEmptyL
   } while (textLine->firstChar()==-1);
   kdDebug(13020)<<"updatePreviousNotEmptyLine: updating 
line:"<<(blk->startLine()+current_line)< foldingList=textLine->foldingListArray();
-  while ( (foldingList.size()>0)  && ( 
abs(foldingList[foldingList.size()-2])==1)) {
+  while ( (foldingList.size()>0)  && ( 
std::abs(foldingList[foldingList.size()-2])==1)) {
 foldingList.resize(foldingList.size()-2,QGArray::SpeedOptim);
   }
   addIndentBasedFoldingInformation(foldingList,addindent,deindent);



commit kdelibs3 for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2015-09-08 17:45:17

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


Package is "kdelibs3"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2015-06-06 
09:54:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2015-09-08 
18:09:19.0 +0200
@@ -1,0 +2,6 @@
+Mon Sep  7 00:00:00 CEST 2015 - dste...@suse.cz
+
+- fix build on factory
+  * Added: fix-perl-no-defined-array.diff
+
+---

New:

  fix-perl-no-defined-array.diff



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.wzi77F/_old  2015-09-08 18:10:04.0 +0200
+++ /var/tmp/diff_new_pack.wzi77F/_new  2015-09-08 18:10:04.0 +0200
@@ -208,6 +208,7 @@
 Patch231:   kdelibs-3.5.10-cups16.patch
 Patch232:   kdelibs-3.5.10-cups20.patch
 Patch233:   kdelibs-3.5.10-CVE-2013-2074.patch
+Patch234:   fix-perl-no-defined-array.diff
 
 %description
 This package contains kdelibs, one of the basic packages of the K
@@ -416,6 +417,7 @@
 %patch230 -p1
 %patch231 -p1
 %patch232 -p1
+%patch234 -p1
 
 # disable a debug feature
 sed -i 's|#define KICONLOADER_CHECKS||g' kdecore/kiconloader.cpp


++ fix-perl-no-defined-array.diff ++
defined(@array) is deprecated and is an error newer perl


Index: kdelibs-3.5.10/dcop/dcopidlng/kdocAstUtil.pm
===
--- kdelibs-3.5.10.orig/dcop/dcopidlng/kdocAstUtil.pm
+++ kdelibs-3.5.10/dcop/dcopidlng/kdocAstUtil.pm
@@ -438,7 +438,7 @@ sub dumpAst
dumpAst( $kid );
}
 
-   print "\t" x $depth, "Documentation nodes:\n" if defined 
+   print "\t" x $depth, "Documentation nodes:\n" if
@{ $node->{Doc}->{ "Text" }};
 
foreach $kid ( @{ $node->{Doc}->{ "Text" }} ) {



commit kdelibs3 for openSUSE:Factory

2015-06-06 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2015-06-06 09:54:14

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


Package is "kdelibs3"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2015-03-25 
21:33:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2015-06-06 
09:54:22.0 +0200
@@ -1,0 +2,5 @@
+Fri Jun  5 03:01:00 UTC 2015 - an...@opensuse.org
+
+- add security patch kdelibs-3.5.10-CVE-2013-2074.patch from Fedora
+
+---

New:

  kdelibs-3.5.10-CVE-2013-2074.patch



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.UEV1rA/_old  2015-06-06 09:54:24.0 +0200
+++ /var/tmp/diff_new_pack.UEV1rA/_new  2015-06-06 09:54:24.0 +0200
@@ -207,6 +207,7 @@
 Patch230:   libxml2-parser.patch
 Patch231:   kdelibs-3.5.10-cups16.patch
 Patch232:   kdelibs-3.5.10-cups20.patch
+Patch233:   kdelibs-3.5.10-CVE-2013-2074.patch
 
 %description
 This package contains kdelibs, one of the basic packages of the K
@@ -344,6 +345,7 @@
 %patch88
 %patch89
 %patch90
+%patch233 -p1
 %patch95
 %patch97
 %if %suse_version < 1030


++ kdelibs-3.5.10-CVE-2013-2074.patch ++
diff -ur kdelibs-3.5.10/kioslave/http/http.cc 
kdelibs-3.5.10-CVE-2013-2074/kioslave/http/http.cc
--- kdelibs-3.5.10/kioslave/http/http.cc2008-02-13 10:41:06.0 
+0100
+++ kdelibs-3.5.10-CVE-2013-2074/kioslave/http/http.cc  2013-05-14 
17:54:42.0 +0200
@@ -288,7 +288,7 @@
 m_bUseProxy = m_proxyURL.isValid();
 
 kdDebug(7113) << "(" << m_pid << ") Using proxy: " << m_bUseProxy <<
-  " URL: " << m_proxyURL.url() <<
+  " URL: " << 
m_proxyURL.prettyURL() <<
 " Realm: " << m_strProxyRealm << 
endl;
   }
 
@@ -458,7 +458,7 @@
 
 bool HTTPProtocol::checkRequestURL( const KURL& u )
 {
-  kdDebug (7113) << "(" << m_pid << ") HTTPProtocol::checkRequestURL:  " << 
u.url() << endl;
+  kdDebug (7113) << "(" << m_pid << ") HTTPProtocol::checkRequestURL:  " << 
u.prettyURL() << endl;
 
   m_request.url = u;
 
@@ -640,7 +640,7 @@
 
 void HTTPProtocol::listDir( const KURL& url )
 {
-  kdDebug(7113) << "(" << m_pid << ") HTTPProtocol::listDir " << url.url()
+  kdDebug(7113) << "(" << m_pid << ") HTTPProtocol::listDir " << 
url.prettyURL()
 << endl;
 
   if ( !checkRequestURL( url ) )
@@ -807,7 +807,7 @@
 
 void HTTPProtocol::davGeneric( const KURL& url, KIO::HTTP_METHOD method )
 {
-  kdDebug(7113) << "(" << m_pid << ") HTTPProtocol::davGeneric " << url.url()
+  kdDebug(7113) << "(" << m_pid << ") HTTPProtocol::davGeneric " << 
url.prettyURL()
 << endl;
 
   if ( !checkRequestURL( url ) )
@@ -1206,7 +1206,7 @@
 
 void HTTPProtocol::mkdir( const KURL& url, int )
 {
-  kdDebug(7113) << "(" << m_pid << ") HTTPProtocol::mkdir " << url.url()
+  kdDebug(7113) << "(" << m_pid << ") HTTPProtocol::mkdir " << url.prettyURL()
 << endl;
 
   if ( !checkRequestURL( url ) )
@@ -1228,7 +1228,7 @@
 
 void HTTPProtocol::get( const KURL& url )
 {
-  kdDebug(7113) << "(" << m_pid << ") HTTPProtocol::get " << url.url()
+  kdDebug(7113) << "(" << m_pid << ") HTTPProtocol::get " << url.prettyURL()
 << endl;
 
   if ( !checkRequestURL( url ) )
@@ -1543,8 +1543,10 @@
 callError = true;
   }
 
+  // Huh? This looks like inverted logic to me (it doesn't make sense to me as
+  // written), but I'm only fixing the CVE now. -- Kevin Kofler
   if ( !url.isNull() )
-url = m_request.url.url();
+url = m_request.url.prettyURL();
 
   QString action, errorString;
   KIO::Error kError;
@@ -1840,7 +1842,7 @@
  if ( !checkRequestURL( url ) )
 continue;
 
- kdDebug(7113) << "(" << m_pid << ") HTTPProtocol::multi_get " << 
url.url() << endl;
+ kdDebug(7113) << "(" << m_pid << ") HTTPProtocol::multi_get " << 
url.prettyURL() << endl;
 
  m_request.method = HTTP_GET;
  m_request.path = url.path();
@@ -2212,12 +2214,12 @@
 
  if (bCacheOnly)
  {
-error( ERR_DOES_NOT_EXIST, m_request.url.url() );
+error( ERR_DOES_NOT_EXIST, m_request.url.prettyURL() );
 return false;
  }
  if (bOffline)
  {
-error( ERR_COULD_NOT_CONNECT, m_request.url.url() );
+error( ERR_COULD_NOT_CONNECT, m_request.url.prettyURL() );
 return false;
  }
   }
@@ -2891,7 +2893,7 @@
   errorPage();
else
{
-  error(ERR_INTERNAL_SERVER

commit kdelibs3 for openSUSE:Factory

2015-03-25 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2015-03-25 21:05:39

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


Package is "kdelibs3"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2014-12-01 
14:01:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2015-03-25 
21:33:13.0 +0100
@@ -1,0 +2,9 @@
+Tue Mar 24 05:25:03 UTC 2015 - sfal...@opensuse.org
+
+- Patches for cups-2.0 update, shamelessly stolen from:
+  http://pkgs.fedoraproject.org/cgit/kdelibs3.git/tree/
+- Added:
+ + kdelibs-3.5.10-cups16.patch
+ + kdelibs-3.5.10-cups20.patch
+
+---

New:

  kdelibs-3.5.10-cups16.patch
  kdelibs-3.5.10-cups20.patch



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.o1ogHE/_old  2015-03-25 21:33:16.0 +0100
+++ /var/tmp/diff_new_pack.o1ogHE/_new  2015-03-25 21:33:16.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs3
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -205,6 +205,8 @@
 Patch228:   merge-svn-diff.patch
 Patch229:   kdelibs-fix-htdig.diff
 Patch230:   libxml2-parser.patch
+Patch231:   kdelibs-3.5.10-cups16.patch
+Patch232:   kdelibs-3.5.10-cups20.patch
 
 %description
 This package contains kdelibs, one of the basic packages of the K
@@ -410,6 +412,8 @@
 %patch227 -p1
 %patch229 -p1
 %patch230 -p1
+%patch231 -p1
+%patch232 -p1
 
 # disable a debug feature
 sed -i 's|#define KICONLOADER_CHECKS||g' kdecore/kiconloader.cpp


++ kdelibs-3.5.10-cups16.patch ++
 850 lines (skipped)

++ kdelibs-3.5.10-cups20.patch ++
diff -ur kdelibs-3.5.10/kdeprint/cups/cupsdconf2/cups-util.c 
kdelibs-3.5.10-cups20/kdeprint/cups/cupsdconf2/cups-util.c
--- kdelibs-3.5.10/kdeprint/cups/cupsdconf2/cups-util.c 2007-10-08 
11:52:10.0 +0200
+++ kdelibs-3.5.10-cups20/kdeprint/cups/cupsdconf2/cups-util.c  2014-11-25 
21:41:51.0 +0100
@@ -32,7 +32,7 @@
   char prompt[1024];   /* Prompt string */
   int  digest_tries;   /* Number of tries with Digest */
   static char  filename[HTTP_MAX_URI]; /* Local filename */
-#if CUPS_VERSION_MAJOR - 0 <= 1 && CUPS_VERSION_MINOR - 0 < 2
+#if CUPS_VERSION_MAJOR < 1 || (CUPS_VERSION_MAJOR == 1 && CUPS_VERSION_MINOR < 
2)
   const char*fqdn = 0;
 #else
   char  fqdn[ HTTP_MAX_URI ];   /* Server name buffer */
@@ -118,7 +118,7 @@
   * See if we should retry the current digest password...
   */
 
-#if CUPS_VERSION_MAJOR - 0 <= 1 && CUPS_VERSION_MINOR - 0 < 2
+#if CUPS_VERSION_MAJOR < 1 || (CUPS_VERSION_MAJOR == 1 && CUPS_VERSION_MINOR < 
2)
   www_authenticate = cups_server->fields[HTTP_FIELD_WWW_AUTHENTICATE];
 #else
   www_authenticate = httpGetField( cups_server, 
HTTP_FIELD_WWW_AUTHENTICATE );
@@ -129,7 +129,7 @@
/*
* Nope - get a password from the user...
*/
-#if CUPS_VERSION_MAJOR - 0 <= 1 && CUPS_VERSION_MINOR - 0 < 2
+#if CUPS_VERSION_MAJOR < 1 || (CUPS_VERSION_MAJOR == 1 && CUPS_VERSION_MINOR < 
2)
 fqdn = cups_server->hostname;
 #else
 httpGetHostname( cups_server, fqdn, sizeof( fqdn ) );
@@ -154,7 +154,7 @@
   * Got a password; encode it for the server...
   */
 
-#if CUPS_VERSION_MAJOR - 0 <= 1 && CUPS_VERSION_MINOR - 0 < 2
+#if CUPS_VERSION_MAJOR < 1 || (CUPS_VERSION_MAJOR == 1 && CUPS_VERSION_MINOR < 
2)
   www_authenticate = cups_server->fields[HTTP_FIELD_WWW_AUTHENTICATE];
 #else
   www_authenticate = httpGetField( cups_server, 
HTTP_FIELD_WWW_AUTHENTICATE );
@@ -166,7 +166,7 @@
*/
 
snprintf(plain, sizeof(plain), "%s:%s", cupsUser(), pwdstring);
-#if CUPS_VERSION_MAJOR == 1 && CUPS_VERSION_MINOR >= 2
+#if CUPS_VERSION_MAJOR > 1 || (CUPS_VERSION_MAJOR == 1 && CUPS_VERSION_MINOR 
>= 2)
httpEncode64_2(encode, sizeof(encode), plain, sizeof(plain));
 #else
httpEncode64(encode, plain);
@@ -235,7 +235,7 @@
   */
 
   while ((bytes =
-#if CUPS_VERSION_MAJOR - 0 <= 1 && CUPS_VERSION_MINOR - 0 < 2
+#if CUPS_VERSION_MAJOR < 1 || (CUPS_VERSION_MAJOR == 1 && CUPS_VERSION_MINOR < 
2)
   httpRead
 #else
   httpRead2
@@ -265,7 +265,7 @@
   http_status_tstatus; /* HTTP status from server */
   char prompt[1024];   /* Prompt string */
   int  digest_tries;   

commit kdelibs3 for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2014-12-01 14:01:15

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


Package is "kdelibs3"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2014-06-19 
13:20:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2014-12-01 
14:01:28.0 +0100
@@ -1,0 +2,8 @@
+Sat Nov 29 21:56:00 UTC 2014 - Led 
+
+- fix 'echo -e' in cvs.sh script that may be unsupported in some
+  POSIX-complete shells
+- add patches:
+  * kdelibs-3.5.10-fix-bashisms.patch
+
+---

New:

  kdelibs-3.5.10-fix-bashisms.patch



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.V2CCfB/_old  2014-12-01 14:01:31.0 +0100
+++ /var/tmp/diff_new_pack.V2CCfB/_new  2014-12-01 14:01:31.0 +0100
@@ -100,6 +100,7 @@
 Patch1: kdeversion.diff
 Patch2: admin.diff
 Patch3: show-distribution.diff
+Patch4: kdelibs-3.5.10-fix-bashisms.patch
 Patch5: applications.menu-fallback.diff
 Patch7: stat-on-media.diff
 Patch8: kmimelist.diff
@@ -293,6 +294,7 @@
 %patch228 -p1
 %patch1
 %patch3
+%patch4 -p1
 %patch5
 %patch7
 %patch10


++ kdelibs-3.5.10-fix-bashisms.patch ++
diff -Ndur kdelibs-3.5.10/admin/cvs.sh kdelibs-3.5.10-fix-bashisms/admin/cvs.sh
--- kdelibs-3.5.10/admin/cvs.sh 2008-08-19 23:28:39.0 +0300
+++ kdelibs-3.5.10-fix-bashisms/admin/cvs.sh2014-11-29 23:54:33.155464281 
+0200
@@ -549,7 +549,12 @@
fi
fi
if find . -name \*.c\* -o -name \*.h\* | fgrep -v ".svn" | xargs fgrep -s 
-q KAboutData ; then
-   echo -e 'i18n("_: NAME OF TRANSLATORS\\n"\n"Your names")\ni18n("_: 
EMAIL OF TRANSLATORS\\n"\n"Your emails")' > _translatorinfo.cpp
+   cat > _translatorinfo.cpp <<-EOF
+   i18n("_: NAME OF TRANSLATORS\n"
+   "Your names")
+   i18n("_: EMAIL OF TRANSLATORS\n"
+   "Your emails")
+   EOF
else echo " " > _translatorinfo.cpp
fi
perl -e '$mes=0; while () { next if (/^(if\s|else\s|endif)/); if 
(/^messages:/) { $mes=1; print $_; next; } if ($mes) { if (/$\\(XGETTEXT\)/ && 
/ -o/) { s/ -o \$\(podir\)/ _translatorinfo.cpp -o \$\(podir\)/ } print $_; } 
else { print $_; } }' < Makefile.am | egrep -v '^include ' > _transMakefile
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kdelibs3 for openSUSE:Factory

2014-06-19 Thread h_root
Hello community,

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

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


Package is "kdelibs3"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2014-04-23 
17:32:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2014-06-19 
13:20:43.0 +0200
@@ -1,0 +2,6 @@
+Thu Jun 19 05:04:49 UTC 2014 - an...@opensuse.org
+
+- Add patch libxml2-parser.patch
+  It fixes build of kdebase3 and kde3-i18n with new libxml2
+
+---

New:

  libxml2-parser.patch



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.Rb5Hze/_old  2014-06-19 13:20:45.0 +0200
+++ /var/tmp/diff_new_pack.Rb5Hze/_new  2014-06-19 13:20:45.0 +0200
@@ -203,6 +203,7 @@
 Patch227:   kdelibs-kactionselector-multiple-item-movement.patch
 Patch228:   merge-svn-diff.patch
 Patch229:   kdelibs-fix-htdig.diff
+Patch230:   libxml2-parser.patch
 
 %description
 This package contains kdelibs, one of the basic packages of the K
@@ -406,6 +407,7 @@
 %patch226 -p1
 %patch227 -p1
 %patch229 -p1
+%patch230 -p1
 
 # disable a debug feature
 sed -i 's|#define KICONLOADER_CHECKS||g' kdecore/kiconloader.cpp


++ libxml2-parser.patch ++
diff -wruN kdelibs-3.5.10.orig/kdoctools/meinproc.cpp 
kdelibs-3.5.10/kdoctools/meinproc.cpp
--- kdelibs-3.5.10.orig/kdoctools/meinproc.cpp  2007-05-14 11:52:42.0 
+0400
+++ kdelibs-3.5.10/kdoctools/meinproc.cpp   2014-06-19 07:39:49.964027600 
+0400
@@ -222,7 +222,7 @@
 
 if (style_sheet != NULL) {
 
-xmlDocPtr doc = xmlParseFile( QFile::encodeName( args->arg( 0 ) ) 
);
+xmlDocPtr doc = xmlReadFile( QFile::encodeName( args->arg( 0 ) ), 
NULL, XML_PARSE_NOENT|XML_PARSE_DTDLOAD|XML_PARSE_NONET );
 
 xmlDocPtr res = xsltApplyStylesheet(style_sheet, doc, ¶ms[0]);
 
diff -wruN kdelibs-3.5.10.orig/kdoctools/xslt.cpp 
kdelibs-3.5.10/kdoctools/xslt.cpp
--- kdelibs-3.5.10.orig/kdoctools/xslt.cpp  2006-05-22 22:14:22.0 
+0400
+++ kdelibs-3.5.10/kdoctools/xslt.cpp   2014-06-19 07:41:21.114986500 +0400
@@ -68,7 +68,7 @@
 
 INFO(i18n("Parsing document"));
 
-xmlDocPtr doc = xmlParseFile( pat.latin1() );
+xmlDocPtr doc = xmlReadFile( pat.latin1(), NULL, 
XML_PARSE_NOENT|XML_PARSE_DTDLOAD|XML_PARSE_NONET);
 xsltTransformContextPtr ctxt;
 
 ctxt = xsltNewTransformContext(style_sheet, doc);
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kdelibs3 for openSUSE:Factory

2014-04-23 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2014-04-23 17:32:16

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


Package is "kdelibs3"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2014-01-13 
10:53:14.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2014-04-23 
17:32:17.0 +0200
@@ -1,0 +2,5 @@
+Tue Apr 15 09:32:22 UTC 2014 - sweet_...@gmx.de
+
+- use globally installed up-to-date ssl certificates (bnc#873680)
+
+---



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.bMIWLe/_old  2014-04-23 17:32:20.0 +0200
+++ /var/tmp/diff_new_pack.bMIWLe/_new  2014-04-23 17:32:20.0 +0200
@@ -22,6 +22,7 @@
 BuildRequires:  aspell-devel
 BuildRequires:  automake
 BuildRequires:  avahi-compat-mDNSResponder-devel
+BuildRequires:  ca-certificates
 BuildRequires:  cups-devel
 BuildRequires:  db-devel
 BuildRequires:  fdupes
@@ -72,6 +73,7 @@
 Obsoletes:  kdelibs3-64bit
 %endif
 #
+Requires:   ca-certificates
 Requires:   hicolor-icon-theme
 Requires:   kdelibs3-default-style
 Requires:   openssl
@@ -530,6 +532,9 @@
 ln -sf ../../lib64/kde3/plugins \
  $RPM_BUILD_ROOT/opt/kde3/lib/kde3/plugins-lib64
 %endif
+  # use globally installed up-to-date ssl certificates
+  rm -f $RPM_BUILD_ROOT/opt/kde3/share/apps/kssl/ca-bundle.crt
+  ln -s /etc/ssl/ca-bundle.pem  
$RPM_BUILD_ROOT/opt/kde3/share/apps/kssl/ca-bundle.crt
   #
   # add missing directories
   #


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



commit kdelibs3 for openSUSE:Factory

2014-01-13 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2014-01-13 10:53:13

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


Package is "kdelibs3"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2013-11-23 
08:14:03.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2014-01-13 
10:53:14.0 +0100
@@ -1,0 +2,21 @@
+Sat Jan 11 07:45:33 UTC 2014 - co...@suse.com
+
+- work around toolchain issue reported on 
+ http://lists.opensuse.org/opensuse-packaging/2014-01/msg00010.html
+
+ Once binutils and glibc maintainers agree on where the bug is,
+ we can reenable as_needed
+
+---
+Wed Jan  8 13:53:33 UTC 2014 - adr...@suse.de
+
+- use gamin-devel instead of unmaintained fam(-devel) package
+
+---
+Wed Dec 18 09:28:43 UTC 2013 - an...@opensuse.org
+
+- fix KDE Help Center using a suggested patch from 
+  KDE bug tacker (KDE bug 209415). The help center now works again!
+  kdelibs-fix-htdig.diff
+
+---

New:

  kdelibs-fix-htdig.diff



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.9ZkJ3y/_old  2014-01-13 10:53:16.0 +0100
+++ /var/tmp/diff_new_pack.9ZkJ3y/_new  2014-01-13 10:53:16.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs3
 #
-# 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
@@ -24,9 +24,9 @@
 BuildRequires:  avahi-compat-mDNSResponder-devel
 BuildRequires:  cups-devel
 BuildRequires:  db-devel
-BuildRequires:  fam-devel
 BuildRequires:  fdupes
 BuildRequires:  flac-devel
+BuildRequires:  gamin-devel
 BuildRequires:  krb5-devel
 BuildRequires:  libacl-devel
 BuildRequires:  libart_lgpl-devel
@@ -200,6 +200,7 @@
 Patch226:   initialise-mCrossDomain-fix.diff
 Patch227:   kdelibs-kactionselector-multiple-item-movement.patch
 Patch228:   merge-svn-diff.patch
+Patch229:   kdelibs-fix-htdig.diff
 
 %description
 This package contains kdelibs, one of the basic packages of the K
@@ -274,7 +275,7 @@
 Summary:KDE Base Package: Build Environment
 Group:  System/GUI/KDE
 Requires:   arts-devel
-Requires:   fam-devel
+Requires:   gamin-devel
 Requires:   libidn-devel
 Requires:   pcre-devel
 
@@ -402,6 +403,7 @@
 %patch225 -p1
 %patch226 -p1
 %patch227 -p1
+%patch229 -p1
 
 # disable a debug feature
 sed -i 's|#define KICONLOADER_CHECKS||g' kdecore/kiconloader.cpp
@@ -421,6 +423,8 @@
 
 %build
 export PATH=$PWD/admin/:$PATH
+# work around for 
http://lists.opensuse.org/opensuse-packaging/2014-01/msg00010.html
+export SUSE_ASNEEDED=0
 FINAL="--enable-final"
 CFLAGS="$CFLAGS -fno-strict-aliasing"
 CXXFLAGS="$CXXFLAGS -fno-strict-aliasing"
@@ -439,7 +443,7 @@
--with-ssl-dir=/usr/ssl \
--mandir=%_mandir \
--sysconfdir=%_sysconfdir \
-   --enable-new-ldflags"
+   --disable-new-ldflags"
   #
   # common_options
   #
@@ -694,9 +698,6 @@
 %verifyscript
 %verify_permissions -e /opt/kde3/bin/kpac_dhcp_helper
 
-%clean
-  rm -rf ${RPM_BUILD_ROOT}
-
 %files default-style
 %defattr(-,root,root)
 %doc AUTHORS COPYING COPYING.BSD COPYING.LIB NAMING README 


++ kdelibs-fix-htdig.diff ++
commit 2259d55a3971d050e40234a92d9753143cab0e09
Author: Timothy Pearson 
Date:   1387079758 -0600

Fix htdig index build failure using suggested patch from KDE bug 209415
This relates to Bug 370

diff --git a/kdoctools/customization/htdig_index.xsl 
b/kdoctools/customization/htdig_index.xsl
index 7aa9113..4d47982 100644
--- a/kdoctools/customization/htdig_index.xsl
+++ b/kdoctools/customization/htdig_index.xsl
@@ -35,7 +35,7 @@
   
 
 
-
+
   
 
   
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kdelibs3 for openSUSE:Factory

2013-11-22 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2013-11-23 08:14:01

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


Package is "kdelibs3"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2013-11-08 
08:36:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2013-11-23 
08:14:03.0 +0100
@@ -1,0 +2,6 @@
+Tue Nov 19 00:13:14 UTC 2013 - an...@opensuse.org
+
+- merge some changes from KDE3 SVN from kde.org (merge-svn-diff.patch)
+  only changes which do not break the build are included
+
+---

New:

  merge-svn-diff.patch



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.7fEYee/_old  2013-11-23 08:14:04.0 +0100
+++ /var/tmp/diff_new_pack.7fEYee/_new  2013-11-23 08:14:04.0 +0100
@@ -199,6 +199,7 @@
 Patch225:   kdelibs-trinity-xinit-fix.patch
 Patch226:   initialise-mCrossDomain-fix.diff
 Patch227:   kdelibs-kactionselector-multiple-item-movement.patch
+Patch228:   merge-svn-diff.patch
 
 %description
 This package contains kdelibs, one of the basic packages of the K
@@ -285,6 +286,7 @@
   echo %suse_version
 %setup -q -n kdelibs-%{version}
 %patch0
+%patch228 -p1
 %patch1
 %patch3
 %patch5


++ kdecode_fakes_include.diff ++
--- /var/tmp/diff_new_pack.7fEYee/_old  2013-11-23 08:14:05.0 +0100
+++ /var/tmp/diff_new_pack.7fEYee/_new  2013-11-23 08:14:05.0 +0100
@@ -8,11 +8,11 @@
  KDECORE_EXPORT unsigned long strlcpy(char* d, const char* s, unsigned long 
bufsize)
  {
  unsigned long len, ret = strlen(s);
-@@ -341,6 +342,7 @@
- #endif
- 
+@@ -379,6 +380,7 @@
+  * truncation occurred.
+  */
  #ifndef HAVE_STRLCAT
 +#include 
- KDECORE_EXPORT unsigned long strlcat(char* d, const char* s, unsigned long 
bufsize)
+ KDECORE_EXPORT unsigned long strlcat(char *dst, const char *src, unsigned 
long siz)
  {
- char *cp;
+ char *d = dst;

++ merge-svn-diff.patch ++
diff -wruN kdelibs-3.5.10/kdecore/fakes.c kdelibs-svn/kdecore/fakes.c
--- kdelibs-3.5.10/kdecore/fakes.c  2006-07-22 12:16:41.0 +0400
+++ kdelibs-svn/kdecore/fakes.c 2010-05-03 23:36:00.647761000 +0400
@@ -340,24 +340,69 @@
 }
 #endif
 
+/*
+ * Copyright (c) 1998 Todd C. Miller 
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *notice, this list of conditions and the following disclaimer in the
+ *documentation and/or other materials provided with the distribution.
+ * 3. The name of the author may not be used to endorse or promote products
+ *derived from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
+ * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+ * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
+ * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+ * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+ * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * $OpenBSD: strlcat.c,v 1.2 1999/06/17 16:28:58 millert Exp $
+ * $FreeBSD: src/lib/libc/string/strlcat.c,v 1.2.4.2 2001/07/09 23:30:06 
obrien Exp $
+ * $DragonFly: src/sys/libkern/strlcat.c,v 1.5 2007/06/07 23:45:02 dillon Exp $
+ */
+ 
+/*
+ * Appends src to string dst of size siz (unlike strncat, siz is the
+ * full size of dst, not space left).  At most siz-1 characters
+ * will be copied.  Always NUL terminates (unless siz <= strlen(dst)).
+ * Returns strlen(initial dst) + strlen(src); if retval >= siz,
+ * truncation occurred.
+ */
 #ifndef HAVE_STRLCAT
-KDECORE_EXPORT unsigned long strlcat(char* d, const char* s, unsigned long 
bufsize)
+KDECORE_EXPORT unsigned long strlcat(char *dst, const char *src, unsigned long 
siz)
 {
-char *cp;
-unsigned long ret, len1, len2 = strlen(s);
+char *d = dst;
+const char *s = src;
+unsigned long n = siz;
+unsig

commit kdelibs3 for openSUSE:Factory

2013-11-07 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2013-11-08 08:36:18

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


Package is "kdelibs3"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2013-08-07 
20:58:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2013-11-08 
08:36:19.0 +0100
@@ -1,0 +2,6 @@
+Thu Nov  7 10:51:25 UTC 2013 - an...@opensuse.org
+
+- disable debug code that was slowing down the operation
+  see here: http://comments.gmane.org/gmane.comp.kde.devel.core/60591
+
+---



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.SZv7F4/_old  2013-11-08 08:36:21.0 +0100
+++ /var/tmp/diff_new_pack.SZv7F4/_new  2013-11-08 08:36:21.0 +0100
@@ -401,6 +401,9 @@
 %patch226 -p1
 %patch227 -p1
 
+# disable a debug feature
+sed -i 's|#define KICONLOADER_CHECKS||g' kdecore/kiconloader.cpp
+
 tar xfvj %SOURCE12
 #
 # define KDE version exactly


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



commit kdelibs3 for openSUSE:Factory

2013-08-07 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2013-08-07 20:58:29

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


Package is "kdelibs3"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2013-05-27 
09:50:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2013-08-07 
20:58:31.0 +0200
@@ -1,0 +2,5 @@
+Wed Aug  7 08:54:17 UTC 2013 - meiss...@suse.com
+
+- buildrequire openssl-devel to build SSL support.
+
+---



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.FxAHXK/_old  2013-08-07 20:58:33.0 +0200
+++ /var/tmp/diff_new_pack.FxAHXK/_new  2013-08-07 20:58:33.0 +0200
@@ -39,6 +39,7 @@
 BuildRequires:  libtiff-devel
 BuildRequires:  libxslt-devel
 BuildRequires:  openldap2-devel
+BuildRequires:  openssl-devel
 BuildRequires:  pcre-devel
 BuildRequires:  qt3-devel
 BuildRequires:  sgml-skel


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



commit kdelibs3 for openSUSE:Factory

2013-05-27 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2013-05-27 09:50:48

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


Package is "kdelibs3"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2013-05-02 
15:29:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2013-05-27 
09:50:50.0 +0200
@@ -1,0 +2,5 @@
+Wed May 22 10:08:42 UTC 2013 - an...@opensuse.org
+
+- add iceauth (needed for dcopserver) to requires
+
+---



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.dDfsjf/_old  2013-05-27 09:50:53.0 +0200
+++ /var/tmp/diff_new_pack.dDfsjf/_new  2013-05-27 09:50:53.0 +0200
@@ -65,6 +65,7 @@
 Provides:   kdepim3-networkstatus
 Provides:   keramik
 Provides:   kups
+Requires:   iceauth
 # bug437293
 %ifarch ppc64
 Obsoletes:  kdelibs3-64bit


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



commit kdelibs3 for openSUSE:Factory

2013-05-02 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2013-05-02 15:29:42

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


Package is "kdelibs3"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2013-03-22 
11:21:17.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2013-05-02 
15:29:44.0 +0200
@@ -1,0 +2,5 @@
+Tue Apr 30 08:31:49 UTC 2013 - co...@suse.com
+
+- call automake with --add-missing
+
+---



Other differences:
--
++ admin.diff ++
--- /var/tmp/diff_new_pack.aJwea3/_old  2013-05-02 15:29:50.0 +0200
+++ /var/tmp/diff_new_pack.aJwea3/_new  2013-05-02 15:29:50.0 +0200
@@ -32,7 +32,7 @@
"" )
  echo "*** AUTOHEADER NOT FOUND!."
  echo "*** KDE requires autoheader $required_autoconf_version"
-@@ -68,7 +68,7 @@ case $AUTOMAKE_STRING in
+@@ -68,9 +68,10 @@ case $AUTOMAKE_STRING in
  echo "*** KDE requires automake $required_automake_version"
  exit 1
  ;;
@@ -40,7 +40,10 @@
 +  automake*)
  echo "*** $AUTOMAKE_STRING found."
  UNSERMAKE=no
++AUTOMAKE="$AUTOMAKE --add-missing"
  ;;
+   "" )
+ echo "*** AUTOMAKE NOT FOUND!."
 Index: admin/detect-autoconf.pl
 ===
 --- admin/detect-autoconf.pl.orig


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



commit kdelibs3 for openSUSE:Factory

2013-03-22 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2013-03-22 11:21:16

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


Package is "kdelibs3", Maintainer is "kde-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2013-03-07 
07:23:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2013-03-22 
11:21:17.0 +0100
@@ -1,0 +2,6 @@
+Tue Mar 19 23:20:20 UTC 2013 - sch...@suse.de
+
+- Properly determine list of lib64 platforms for ld.so.conf.d script
+- Use lt_cv_deplibs_check_method=pass_all also for aarch64
+
+---



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.q4qTu9/_old  2013-03-22 11:21:22.0 +0100
+++ /var/tmp/diff_new_pack.q4qTu9/_new  2013-03-22 11:21:22.0 +0100
@@ -638,10 +638,10 @@
 # Create /etc/ld.so.conf.d/kdelibs3.conf 
 mkdir -p $RPM_BUILD_ROOT/etc/ld.so.conf.d
 cat > $RPM_BUILD_ROOT/etc/ld.so.conf.d/kdelibs3.conf <

commit kdelibs3 for openSUSE:Factory

2013-03-06 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2013-03-07 07:23:39

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


Package is "kdelibs3", Maintainer is "kde-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2013-02-07 
14:20:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2013-03-07 
07:23:40.0 +0100
@@ -1,0 +2,7 @@
+Wed Mar  6 09:33:13 UTC 2013 - an...@opensuse.org
+
+- Add symlinks to solve the problem that arrows were not shown over 
+  shortcuts in some icon themes. Some icon themes are still affected.
+  Continue to investigate the source of the problem.
+
+---



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.jXE3Ml/_old  2013-03-07 07:23:44.0 +0100
+++ /var/tmp/diff_new_pack.jXE3Ml/_new  2013-03-07 07:23:44.0 +0100
@@ -598,6 +598,33 @@
 ln -s /opt/kde3/share/icons/crystalsvg/$i/filesystems/network.png 
$RPM_BUILD_ROOT/opt/kde3/share/icons/crystalsvg/$i/filesystems/preferences-system-network.png
 ln -s /opt/kde3/share/icons/crystalsvg/$i/filesystems/desktop.png 
$RPM_BUILD_ROOT/opt/kde3/share/icons/crystalsvg/$i/filesystems/preferences-desktop.png
   done
+  for i in {16,22,32,48,64,128}; do 
+  if [ -f 
$RPM_BUILD_ROOT/opt/kde3/share/icons/crystalsvg/"$i"x"$i"/filesystems/link_overlay.png
 ]; then
+install -d 
$RPM_BUILD_ROOT/opt/kde3/share/icons/hicolor/"$i"x"$i"/filesystems
+install -d 
$RPM_BUILD_ROOT/opt/kde3/share/icons/crystalsvg/"$i"x"$i"/filesystems
+ln -s 
/opt/kde3/share/icons/crystalsvg/"$i"x"$i"/filesystems/link_overlay.png  
$RPM_BUILD_ROOT/opt/kde3/share/icons/hicolor/"$i"x"$i"/filesystems/link.png;
+ln -s 
/opt/kde3/share/icons/crystalsvg/"$i"x"$i"/filesystems/link_overlay.png  
$RPM_BUILD_ROOT/opt/kde3/share/icons/crystalsvg/"$i"x"$i"/filesystems/link.png;
+ln -s 
/opt/kde3/share/icons/crystalsvg/"$i"x"$i"/filesystems/link_overlay.png  
$RPM_BUILD_ROOT/opt/kde3/share/icons/hicolor/"$i"x"$i"/filesystems/link_overlay.png;
+  fi  
+  done
+  for i in {16,22,32,48,64,128}; do 
+  if [ -f 
$RPM_BUILD_ROOT/opt/kde3/share/icons/crystalsvg/"$i"x"$i"/filesystems/lock_overlay.png
 ]; then
+install -d 
$RPM_BUILD_ROOT/opt/kde3/share/icons/hicolor/"$i"x"$i"/filesystems
+install -d 
$RPM_BUILD_ROOT/opt/kde3/share/icons/crystalsvg/"$i"x"$i"/filesystems
+ln -s 
/opt/kde3/share/icons/crystalsvg/"$i"x"$i"/filesystems/lock_overlay.png  
$RPM_BUILD_ROOT/opt/kde3/share/icons/hicolor/"$i"x"$i"/filesystems/lockoverlay.png;
+ln -s 
/opt/kde3/share/icons/crystalsvg/"$i"x"$i"/filesystems/lock_overlay.png  
$RPM_BUILD_ROOT/opt/kde3/share/icons/crystalsvg/"$i"x"$i"/filesystems/lockoverlay.png;
+ln -s 
/opt/kde3/share/icons/crystalsvg/"$i"x"$i"/filesystems/lock_overlay.png  
$RPM_BUILD_ROOT/opt/kde3/share/icons/hicolor/"$i"x"$i"/filesystems/lock_overlay.png;
+  fi  
+  done
+  for i in {16,22,32,48,64,128}; do 
+  if [ -f 
$RPM_BUILD_ROOT/opt/kde3/share/icons/crystalsvg/"$i"x"$i"/filesystems/zip_overlay.png
 ]; then
+install -d 
$RPM_BUILD_ROOT/opt/kde3/share/icons/hicolor/"$i"x"$i"/filesystems
+install -d 
$RPM_BUILD_ROOT/opt/kde3/share/icons/crystalsvg/"$i"x"$i"/filesystems
+ln -s 
/opt/kde3/share/icons/crystalsvg/"$i"x"$i"/filesystems/zip_overlay.png  
$RPM_BUILD_ROOT/opt/kde3/share/icons/hicolor/"$i"x"$i"/filesystems/zip.png;
+ln -s 
/opt/kde3/share/icons/crystalsvg/"$i"x"$i"/filesystems/zip_overlay.png  
$RPM_BUILD_ROOT/opt/kde3/share/icons/crystalsvg/"$i"x"$i"/filesystems/zip.png;
+ln -s 
/opt/kde3/share/icons/crystalsvg/"$i"x"$i"/filesystems/zip_overlay.png  
$RPM_BUILD_ROOT/opt/kde3/share/icons/hicolor/"$i"x"$i"/filesystems/zip_overlay.png;
+  fi  
+  done  
   chmod a-x 
$RPM_BUILD_ROOT/opt/kde3/share/icons/crystalsvg/16x16/filesystems/file_broken.png
   %if %suse_version > 1020
   %fdupes -s $RPM_BUILD_ROOT


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



commit kdelibs3 for openSUSE:Factory

2013-02-07 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2013-02-07 14:20:46

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


Package is "kdelibs3", Maintainer is "kde-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2013-02-04 
19:05:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2013-02-07 
14:20:48.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb  7 09:12:19 UTC 2013 - an...@opensuse.org
+
+- fix KDE bug#111827
+  (kdelibs-kactionselector-multiple-item-movement.patch)
+
+---

New:

  kdelibs-kactionselector-multiple-item-movement.patch



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.9WRhxp/_old  2013-02-07 14:20:52.0 +0100
+++ /var/tmp/diff_new_pack.9WRhxp/_new  2013-02-07 14:20:52.0 +0100
@@ -196,6 +196,7 @@
 Patch224:   dcop-header-fix-gcc47.patch
 Patch225:   kdelibs-trinity-xinit-fix.patch
 Patch226:   initialise-mCrossDomain-fix.diff
+Patch227:   kdelibs-kactionselector-multiple-item-movement.patch
 
 %description
 This package contains kdelibs, one of the basic packages of the K
@@ -396,6 +397,7 @@
 %patch224 -p1
 %patch225 -p1
 %patch226 -p1
+%patch227 -p1
 
 tar xfvj %SOURCE12
 #


++ kdelibs-kactionselector-multiple-item-movement.patch ++
--- a/kdeui/kactionselector.cpp 2005-09-01 00:04:41.0 +0800
+++ b/kdeui/kactionselector.cpp 2005-09-01 00:01:02.0 +0800
@@ -423,8 +423,9 @@
   d->selectedListBox->insertItem( item, insertionIndex( 
d->selectedListBox, d->selectedInsertionPolicy ) );
   d->selectedListBox->setCurrentItem( item );
   emit added( item );
-}
-item = item->next();
+  item = d->availableListBox->firstItem();
+} else
+  item = item->next();
   }
   if ( d->selectedInsertionPolicy == Sorted )
 d->selectedListBox->sort();
@@ -441,8 +442,9 @@
   d->availableListBox->insertItem( item, insertionIndex( 
d->availableListBox, d->availableInsertionPolicy ) );
   d->availableListBox->setCurrentItem( item );
   emit removed( item );
-}
-item = item->next();
+  item = d->selectedListBox->firstItem();
+} else
+  item = item->next();
   }
   if ( d->availableInsertionPolicy == Sorted )
 d->availableListBox->sort();
 --
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kdelibs3 for openSUSE:Factory

2013-02-04 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2013-02-04 19:05:02

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


Package is "kdelibs3", Maintainer is "kde-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2012-09-27 
13:40:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2013-02-04 
19:05:09.0 +0100
@@ -1,0 +2,11 @@
+Sun Feb  3 05:51:31 UTC 2013 - an...@opensuse.org
+
+- update license format
+
+---
+Thu Jan 31 18:31:25 UTC 2013 - an...@opensuse.org
+
+- fix the bug that web cookies were being forgotten following a kded restart
+  backport from KDE4 by Slávek Banko (initialise-mCrossDomain-fix.diff)
+
+---

New:

  initialise-mCrossDomain-fix.diff



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.xOUMci/_old  2013-02-04 19:05:15.0 +0100
+++ /var/tmp/diff_new_pack.xOUMci/_new  2013-02-04 19:05:15.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs3
 #
-# 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
@@ -49,7 +49,7 @@
 Url:http://www.kde.org
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:KDE Base Libraries
-License:BSD-3-Clause ; GPL-2.0+ ; LGPL-2.1+
+License:BSD-3-Clause and GPL-2.0+ and LGPL-2.1+
 Group:  System/GUI/KDE
 Version:3.5.10
 Release:0
@@ -195,6 +195,7 @@
 Patch223:   kdelibs-automake-1.11.5.patch
 Patch224:   dcop-header-fix-gcc47.patch
 Patch225:   kdelibs-trinity-xinit-fix.patch
+Patch226:   initialise-mCrossDomain-fix.diff
 
 %description
 This package contains kdelibs, one of the basic packages of the K
@@ -394,6 +395,7 @@
 %patch223 -p1
 %patch224 -p1
 %patch225 -p1
+%patch226 -p1
 
 tar xfvj %SOURCE12
 #


++ initialise-mCrossDomain-fix.diff ++
commit dabf3a9fef3b352ed3cae6d58b7ed26c290d93ea
Author: Slávek Banko 
Date:   1358789956 +0100

Initialise the mCrossDomain member variable in the cookies
Backported from KDE GIT commit 794b14b8

diff --git a/kioslave/http/kcookiejar/kcookiejar.cpp 
b/kioslave/http/kcookiejar/kcookiejar.cpp
index ec0a423..e70c97e 100644
--- a/kioslave/http/kcookiejar/kcookiejar.cpp
+++ b/kioslave/http/kcookiejar/kcookiejar.cpp
@@ -146,6 +146,7 @@ KHttpCookie::KHttpCookie(const TQString &_host,
mExpireDate(_expireDate),
mProtocolVersion(_protocolVersion),
mSecure(_secure),
+   mCrossDomain(false),
mHttpOnly(_httpOnly),
mExplicitPath(_explicitPath)
 {
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kdelibs3 for openSUSE:Factory

2012-09-27 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2012-09-27 13:40:14

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


Package is "kdelibs3", Maintainer is "kde-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2012-06-18 
14:57:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2012-09-27 
13:40:16.0 +0200
@@ -1,0 +2,6 @@
+Thu Sep 27 07:36:03 UTC 2012 - an...@opensuse.org
+
+- disable the patch for kickoff shadow because it conflicts with
+  compositing managers
+
+---



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.0VydNf/_old  2012-09-27 13:40:18.0 +0200
+++ /var/tmp/diff_new_pack.0VydNf/_new  2012-09-27 13:40:18.0 +0200
@@ -343,7 +343,7 @@
 %patch112
 %patch113
 %patch114
-%patch117
+#%patch117
 %patch122
 %patch123
 %patch124


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



commit kdelibs3 for openSUSE:Factory

2012-06-18 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2012-06-18 14:57:53

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


Package is "kdelibs3", Maintainer is "kde-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2012-05-07 
22:47:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2012-06-18 
14:57:57.0 +0200
@@ -1,0 +2,10 @@
+Wed Jun 13 16:07:08 UTC 2012 - an...@opensuse.org
+
+- init threads
+
+---
+Wed Jun 13 17:01:30 CEST 2012 - r...@suse.de
+
+- use set_permissions for kpac_dhcp_helper (bnc#764114) 
+
+---

New:

  kdelibs-trinity-xinit-fix.patch



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.9sebIR/_old  2012-06-18 14:58:02.0 +0200
+++ /var/tmp/diff_new_pack.9sebIR/_new  2012-06-18 14:58:02.0 +0200
@@ -75,6 +75,8 @@
 Requires:   openssl
 Recommends: ispell enscript
 Requires:   sudo
+# for set_permissions macro
+PreReq: permissions
 Source0:kdelibs-%{version}.tar.bz2
 Source2:do_make
 Source3:baselibs.conf
@@ -192,6 +194,7 @@
 Patch222:   scalable-tray-icons.patch
 Patch223:   kdelibs-automake-1.11.5.patch
 Patch224:   dcop-header-fix-gcc47.patch
+Patch225:   kdelibs-trinity-xinit-fix.patch
 
 %description
 This package contains kdelibs, one of the basic packages of the K
@@ -390,6 +393,7 @@
 %patch222 -p1
 %patch223 -p1
 %patch224 -p1
+%patch225 -p1
 
 tar xfvj %SOURCE12
 #
@@ -611,7 +615,7 @@
 
 %post
   %run_ldconfig
-  %run_permissions
+%set_permissions /opt/kde3/bin/kpac_dhcp_helper
 
 %postun
   rm -f usr/share/doc/KDE3-API/index.html
@@ -649,6 +653,9 @@
   fi
   exit 0
 
+%verifyscript
+%verify_permissions -e /opt/kde3/bin/kpac_dhcp_helper
+
 %clean
   rm -rf ${RPM_BUILD_ROOT}
 


++ kdelibs-trinity-xinit-fix.patch ++
--- a/kinit/kinit.cpp   
+++ b/kinit/kinit.cpp   
@@ -1615,6 +1615,7 @@ 
 // another X connection for startup notification purposes
 static void setupX()
 {
+XInitThreads();
 XSetIOErrorHandler(kdeinit_xio_errhandler);
 XSetErrorHandler(kdeinit_x_errhandler);
 }
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kdelibs3 for openSUSE:Factory

2012-05-07 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2012-05-07 22:46:57

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


Package is "kdelibs3", Maintainer is "kde-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2012-04-23 
09:14:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2012-05-07 
22:47:37.0 +0200
@@ -1,0 +2,12 @@
+Sun Apr 29 18:45:34 UTC 2012 - an...@opensuse.org
+
+- fix a dcop header for gcc-4.7 so that other packages not to fail
+  when built against it
+
+---
+Wed Apr 25 18:33:34 UTC 2012 - dims...@opensuse.org
+
+- Add kdelibs-automake-1.11.5.patch: make an exception for automake
+  1.11.5, which is good enough (but matches automake*1.5*).
+
+---

New:

  dcop-header-fix-gcc47.patch
  kdelibs-automake-1.11.5.patch



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.3eYqzR/_old  2012-05-07 22:47:40.0 +0200
+++ /var/tmp/diff_new_pack.3eYqzR/_new  2012-05-07 22:47:40.0 +0200
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   kdelibs3
 BuildRequires:  OpenEXR-devel
 BuildRequires:  arts-devel
@@ -189,6 +190,8 @@
 Patch220:   kdelibs-fedora-3.5.x-CVE-2011-3365.patch
 Patch221:   kdelibs-tarent-fix-webdav-utf8.diff
 Patch222:   scalable-tray-icons.patch
+Patch223:   kdelibs-automake-1.11.5.patch
+Patch224:   dcop-header-fix-gcc47.patch
 
 %description
 This package contains kdelibs, one of the basic packages of the K
@@ -385,6 +388,8 @@
 %patch220 -p1
 %patch221 -p1
 %patch222 -p1
+%patch223 -p1
+%patch224 -p1
 
 tar xfvj %SOURCE12
 #


++ dcop-header-fix-gcc47.patch ++
diff -wruN kdelibs-3.5.10.orig/dcop/dcoptypes.h kdelibs-3.5.10/dcop/dcoptypes.h
--- kdelibs-3.5.10.orig/dcop/dcoptypes.h2005-09-10 12:27:23.0 
+0400
+++ kdelibs-3.5.10/dcop/dcoptypes.h 2012-04-29 21:44:52.823786005 +0400
@@ -22,6 +22,9 @@
 #ifndef DCOPTYPES_H
 #define DCOPTYPES_H
 
+// generic template fallback for unknown types
+template  inline const char* dcopTypeName( const T& ) { return 
""; }
+
 #include 
 
 // standard c/c++ types
@@ -70,9 +73,6 @@
 // And some KDE types
 class KURL; inline const char* dcopTypeName( const KURL& ) { return "KURL"; }
 
-// generic template fallback for unknown types
-template  inline const char* dcopTypeName( const T& ) { return 
""; }
-
 // type initialization for standard c/c++ types
 inline void dcopTypeInit(bool& b){b=false;}
 inline void dcopTypeInit(char& c){c=0;}
++ kdelibs-automake-1.11.5.patch ++
Index: kdelibs-3.5.10/admin/cvs.sh
===
--- kdelibs-3.5.10.orig/admin/cvs.sh
+++ kdelibs-3.5.10/admin/cvs.sh
@@ -63,6 +63,10 @@ esac
 AUTOMAKE_STRING=`$AUTOMAKE --version | head -n 1`
 required_automake_version="1.6.1 or newer"
 case $AUTOMAKE_STRING in
+  automake*1.11.5* )
+echo "*** $AUTOMAKE_STRING found."
+UNSERMAKE=no
+;;
   automake*1.5d* | automake*1.5* | automake*1.5-* )
 echo "*** YOU'RE USING $AUTOMAKE_STRING."
 echo "*** KDE requires automake $required_automake_version"
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kdelibs3 for openSUSE:Factory

2012-04-23 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2012-04-23 09:14:49

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


Package is "kdelibs3", Maintainer is "kde-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2012-04-12 
09:31:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2012-04-23 
09:14:51.0 +0200
@@ -1,0 +2,6 @@
+Thu Apr 19 03:34:05 UTC 2012 - an...@opensuse.org
+
+- revert the konq patch because it slows the operation down
+- make tray icons standard 16px
+
+---

Old:

  kdelibs-konq-changes-update.patch



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.YeT5td/_old  2012-04-23 09:14:55.0 +0200
+++ /var/tmp/diff_new_pack.YeT5td/_new  2012-04-23 09:14:55.0 +0200
@@ -189,7 +189,6 @@
 Patch220:   kdelibs-fedora-3.5.x-CVE-2011-3365.patch
 Patch221:   kdelibs-tarent-fix-webdav-utf8.diff
 Patch222:   scalable-tray-icons.patch
-Patch223:   kdelibs-konq-changes-update.patch
 
 %description
 This package contains kdelibs, one of the basic packages of the K
@@ -386,7 +385,6 @@
 %patch220 -p1
 %patch221 -p1
 %patch222 -p1
-%patch223 -p1
 
 tar xfvj %SOURCE12
 #


++ scalable-tray-icons.patch ++
--- /var/tmp/diff_new_pack.YeT5td/_old  2012-04-23 09:14:55.0 +0200
+++ /var/tmp/diff_new_pack.YeT5td/_new  2012-04-23 09:14:55.0 +0200
@@ -1,13 +1,12 @@
 diff -wruN kdelibs-3.5.10.orig/kdeui/ksystemtray.cpp 
kdelibs-3.5.10/kdeui/ksystemtray.cpp
 --- kdelibs-3.5.10.orig/kdeui/ksystemtray.cpp  2007-05-14 11:52:25.0 
+0400
-+++ kdelibs-3.5.10/kdeui/ksystemtray.cpp   2012-02-26 21:38:08.846734704 
+0400
-@@ -95,6 +95,7 @@
- }
- setCaption( KGlobal::instance()->aboutData()->programName());
- setAlignment( alignment() | Qt::AlignVCenter | Qt::AlignHCenter );
-+setScaledContents(true);
 kdelibs-3.5.10/kdeui/ksystemtray.cpp   2012-04-14 10:00:21.934064954 
+0400
+@@ -311,7 +311,7 @@
+ {
+ KConfig *appCfg = kapp->config();
+ KConfigGroupSaver configSaver(appCfg, "System Tray");
+-int iconWidth = appCfg->readNumEntry("systrayIconWidth", 22);
++int iconWidth = appCfg->readNumEntry("systrayIconWidth", 16);
+ return instance->iconLoader()->loadIcon( icon, KIcon::Panel, iconWidth );
  }
  
- KSystemTray::~KSystemTray()
-
- 

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



commit kdelibs3 for openSUSE:Factory

2012-04-12 Thread h_root
Hello community,

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

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


Package is "kdelibs3", Maintainer is "kde-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2012-03-29 
11:40:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2012-04-12 
09:31:51.0 +0200
@@ -1,0 +2,5 @@
+Mon Apr  9 17:36:28 UTC 2012 - an...@opensuse.org
+
+- patch for automatic refresh in konqueror
+
+---

New:

  kdelibs-konq-changes-update.patch



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.DL2igQ/_old  2012-04-12 09:31:55.0 +0200
+++ /var/tmp/diff_new_pack.DL2igQ/_new  2012-04-12 09:31:55.0 +0200
@@ -170,32 +170,26 @@
 Patch162:   arts-acinclude.patch
 Patch163:   kdelibs-3.5.10-ossl-1.x.patch
 Patch164:   light_v_2_scrollbar_patch.patch
-
 Patch201:   kdelibs-3.5.4-CVE-2009-1690.patch
 Patch203:   kdelibs-3.5.10-latex-syntax-kile-2.0.3.patch
 Patch204:   kdelibs-3.5.10-CVE-2009-2702.patch
 Patch205:   kdelibs-3.5.10-cve-2009-2537-select-length.patch
 Patch206:   kdelibs-3.5.10-cve-2009-1725.patch
 Patch207:   kdelibs-3.5.10-cve-2009-1698.patch
-
 Patch210:   kdelibs-3.5.10-kio.patch
 Patch211:   oom_score_adj.patch
 Patch212:   kcontrol_crash_patch.diff
-
 Patch213:   kdelibs-trinity-1123812-certificates.dif
 Patch214:   kdelibs-trinity-1176550-desktop-size-default.dif
 Patch215:   kdelibs-trinity-1176570-no-default-singleclick.dif
-
 Patch216:   kdelibs-cups-1_5-fix.patch
-
 Patch217:   kdelibs-trinity-konq-working-dir.diff
 Patch218:   kdelibs-trinity-flat-xml-types-r1258237.diff
-
 Patch219:   kiconview-text-fix.patch
 Patch220:   kdelibs-fedora-3.5.x-CVE-2011-3365.patch
-
 Patch221:   kdelibs-tarent-fix-webdav-utf8.diff
 Patch222:   scalable-tray-icons.patch
+Patch223:   kdelibs-konq-changes-update.patch
 
 %description
 This package contains kdelibs, one of the basic packages of the K
@@ -392,6 +386,7 @@
 %patch220 -p1
 %patch221 -p1
 %patch222 -p1
+%patch223 -p1
 
 tar xfvj %SOURCE12
 #


++ kdelibs-konq-changes-update.patch ++
--- tdelibs/kio/kio/kdirwatch.cpp   2012-04-05 13:26:08.0 -0500
+++ tdelibs/kio/kio/kdirwatch.cpp   2012-04-08 17:51:15.0 -0500
@@ -1155,6 +1155,7 @@ 
 if(!e->dirty) return NoChange;
 e->dirty = false;
   }
+  if (e->isDir) return Changed;
 #endif
 
   // Shouldn't happen: Ignore "unknown" notification method
@@ -1184,6 +1185,8 @@ 
   if (exists) {
 
 if (e->m_status == NonExistent) {
+  // ctime is the 'creation time' on windows, but with qMax
+  // we get the latest change of any kind, on any platform.
   e->m_ctime = stat_buf.st_ctime;
   e->m_status = Normal;
   e->m_nlink = stat_buf.st_nlink;
 
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kdelibs3 for openSUSE:Factory

2012-03-29 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2012-03-29 11:40:54

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


Package is "kdelibs3", Maintainer is "kde-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2012-03-26 
14:01:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2012-03-29 
11:40:55.0 +0200
@@ -1,0 +2,5 @@
+Wed Mar 28 15:06:57 UTC 2012 - an...@opensuse.org
+
+- move man pages to /opt/kde3/share/man to avoid conflict with KDE4
+
+---



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.zw2Ewx/_old  2012-03-29 11:41:01.0 +0200
+++ /var/tmp/diff_new_pack.zw2Ewx/_new  2012-03-29 11:41:01.0 +0200
@@ -15,7 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
 Name:   kdelibs3
 BuildRequires:  OpenEXR-devel
 BuildRequires:  arts-devel
@@ -405,6 +404,8 @@
 # 
 UNSERMAKE=yes make -f admin/Makefile.common cvs
 
+%define _mandir /opt/kde3/share/man
+
 %build
 export PATH=$PWD/admin/:$PATH
 FINAL="--enable-final"
@@ -670,6 +671,10 @@
 %dir /opt/kde3/share
 %dir /opt/kde3/share/config.kcfg
 %_mandir/man*/*
+%dir %_mandir
+%dir %_mandir/man1
+%dir %_mandir/man7
+%dir %_mandir/man8
 /opt/kde3/bin/checkXML
 /opt/kde3/bin/dcop
 /opt/kde3/bin/dcopclient


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



commit kdelibs3 for openSUSE:Factory

2012-03-26 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2012-03-26 14:01:16

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


Package is "kdelibs3", Maintainer is "kde-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2012-03-02 
13:48:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2012-03-26 
14:01:18.0 +0200
@@ -1,0 +2,5 @@
+Wed Mar 21 06:05:17 UTC 2012 - an...@opensuse.org
+
+- drop kdelibs3-devel-doc
+
+---

Old:

  create-kdeapi
  kdelibs3-devel-doc.changes
  kdelibs3-devel-doc.spec



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.SIstsP/_old  2012-03-26 14:01:22.0 +0200
+++ /var/tmp/diff_new_pack.SIstsP/_new  2012-03-26 14:01:22.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs3
 #
-# 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
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   kdelibs3
 BuildRequires:  OpenEXR-devel
 BuildRequires:  arts-devel
@@ -46,23 +47,32 @@
 BuildRequires:  update-desktop-files
 BuildRequires:  utempter
 Url:http://www.kde.org
-License:BSD-3-Clause ; GPL-2.0+ ; LGPL-2.1+
-Group:  System/GUI/KDE
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:KDE Base Libraries
+License:BSD-3-Clause ; GPL-2.0+ ; LGPL-2.1+
+Group:  System/GUI/KDE
 Version:3.5.10
 Release:0
-Obsoletes:  kde3-i18n kups keramik kdelibs3-cups kdelibs3-33addons 
kdepim3-networkstatus
-Provides:   kups keramik kdelibs3-cups kdelibs3-33addons 
kdepim3-networkstatus
+Obsoletes:  kde3-i18n
+Obsoletes:  kdelibs3-33addons
+Obsoletes:  kdelibs3-cups
+Obsoletes:  kdepim3-networkstatus
+Obsoletes:  keramik
+Obsoletes:  kups
+Provides:   kdelibs3-33addons
+Provides:   kdelibs3-cups
 Provides:   kdelibs3_base = 3.3
+Provides:   kdepim3-networkstatus
+Provides:   keramik
+Provides:   kups
 # bug437293
 %ifarch ppc64
 Obsoletes:  kdelibs3-64bit
 %endif
 #
-Requires:   qt3 >= %( echo `rpm -q --queryformat '%{VERSION}' qt3`)
-Requires:   openssl kdelibs3-default-style
 Requires:   hicolor-icon-theme
+Requires:   kdelibs3-default-style
+Requires:   openssl
 Recommends: ispell enscript
 Requires:   sudo
 Source0:kdelibs-%{version}.tar.bz2
@@ -197,13 +207,14 @@
 
 %package arts
 Summary:KDE aRts support
+Group:  System/GUI/KDE
 Provides:   kdelibs3:/opt/kde3/bin/artsmessage
 # bug437293
 %ifarch ppc64
 Obsoletes:  kdelibs3-arts-64bit
 %endif
 #
-Requires:   arts >= %( echo `rpm -q --queryformat '%{VERSION}' arts`)
+Requires:   arts
 Recommends: kdemultimedia3-arts
 
 %description arts
@@ -212,6 +223,7 @@
 
 %package default-style
 Summary:The default KDE style
+Group:  System/GUI/KDE
 Provides:   kdelibs3:/opt/kde3/%_lib/libkdefx.so.4
 
 %description default-style
@@ -220,9 +232,11 @@
 
 %package doc
 Summary:Documentation for KDE Base Libraries
+Group:  System/GUI/KDE
 Provides:   kdelibs3:/opt/kde3/share/apps/ksgmltools2
 Provides:   kdelibs3_doc
-Requires:   sgml-skel libxml2
+Requires:   libxml2
+Requires:   sgml-skel
 %define regcat /usr/bin/sgml-register-catalog
 PreReq: %{regcat} /usr/bin/xmlcatalog /usr/bin/edit-xml-catalog
 PreReq: sed grep awk
@@ -233,15 +247,33 @@
 
 %package devel
 # usefiles /opt/kde3/bin/dcopidl /opt/kde3/bin/dcopidl2cpp 
/opt/kde3/bin/kdb2html /opt/kde3/bin/preparetips 
-Requires:   qt3-devel libvorbis-devel kdelibs3 = %version autoconf 
automake libxslt-devel libxml2-devel libart_lgpl-devel libjpeg-devel 
+Requires:   autoconf
+Requires:   automake
+Requires:   kdelibs3 = %version
+Requires:   libart_lgpl-devel
+Requires:   libjpeg-devel
+Requires:   libvorbis-devel
+Requires:   libxml2-devel
+Requires:   libxslt-devel
+Requires:   qt3-devel
 # next line from kde3-devel-packages macro
-Requires:   kdelibs3-doc libtiff-devel openssl-devel update-desktop-files
-Requires:   libdrm-devel dbus-1-qt3-devel
-Requires:   libattr-devel libacl-devel
-Requires:   avahi-compat-mDNSResponder-devel libbz2-devel
+Requires:   

commit kdelibs3 for openSUSE:Factory

2012-03-02 Thread h_root
Hello community,

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

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


Package is "kdelibs3", Maintainer is "kde-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2012-01-25 
10:37:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2012-03-02 
13:48:30.0 +0100
@@ -1,0 +2,6 @@
+Mon Feb 27 16:13:13 UTC 2012 - an...@opensuse.org
+
+- make system tray icons resizable via parameter systrayIconWidth
+  in section [System Tray] in file ~/.kde/share/config/systemtray_panelappletrc
+
+---

New:

  scalable-tray-icons.patch



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.TIsHgK/_old  2012-03-02 13:48:34.0 +0100
+++ /var/tmp/diff_new_pack.TIsHgK/_new  2012-03-02 13:48:34.0 +0100
@@ -186,6 +186,7 @@
 Patch220:   kdelibs-fedora-3.5.x-CVE-2011-3365.patch
 
 Patch221:   kdelibs-tarent-fix-webdav-utf8.diff
+Patch222:   scalable-tray-icons.patch
 
 %description
 This package contains kdelibs, one of the basic packages of the K
@@ -359,6 +360,7 @@
 %patch219 -p1
 %patch220 -p1
 %patch221 -p1
+%patch222 -p1
 
 tar xfvj %SOURCE12
 #


++ scalable-tray-icons.patch ++
diff -wruN kdelibs-3.5.10.orig/kdeui/ksystemtray.cpp 
kdelibs-3.5.10/kdeui/ksystemtray.cpp
--- kdelibs-3.5.10.orig/kdeui/ksystemtray.cpp   2007-05-14 11:52:25.0 
+0400
+++ kdelibs-3.5.10/kdeui/ksystemtray.cpp2012-02-26 21:38:08.846734704 
+0400
@@ -95,6 +95,7 @@
 }
 setCaption( KGlobal::instance()->aboutData()->programName());
 setAlignment( alignment() | Qt::AlignVCenter | Qt::AlignHCenter );
+setScaledContents(true);
 }
 
 KSystemTray::~KSystemTray()

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



commit kdelibs3 for openSUSE:Factory

2012-01-25 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2012-01-25 10:37:36

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


Package is "kdelibs3", Maintainer is "kde-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2012-01-11 
15:38:04.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2012-01-25 
10:37:38.0 +0100
@@ -1,0 +2,5 @@
+Tue Jan 17 12:01:57 UTC 2012 - an...@opensuse.org
+
+- patch for webdav from KDE bugzilla
+
+---

New:

  kdelibs-tarent-fix-webdav-utf8.diff



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.8qVDB3/_old  2012-01-25 10:37:40.0 +0100
+++ /var/tmp/diff_new_pack.8qVDB3/_new  2012-01-25 10:37:40.0 +0100
@@ -185,6 +185,8 @@
 Patch219:   kiconview-text-fix.patch
 Patch220:   kdelibs-fedora-3.5.x-CVE-2011-3365.patch
 
+Patch221:   kdelibs-tarent-fix-webdav-utf8.diff
+
 %description
 This package contains kdelibs, one of the basic packages of the K
 Desktop Environment. It contains the necessary libraries for the KDE
@@ -356,6 +358,7 @@
 %patch218 -p1
 %patch219 -p1
 %patch220 -p1
+%patch221 -p1
 
 tar xfvj %SOURCE12
 #


++ kdelibs-tarent-fix-webdav-utf8.diff ++
Description: fix UTF-8 encoding for WebDAV directories
Bug: http://bugs.kde.org/show_bug.cgi?id=127251
Author: Thorsten “mirabilos” Glaser 
Origin: KIO slave http.cpp from KDE 4

--- kdelibs-3.5.10/kioslave/http/http.cc~   2008-02-13 10:41:06.0 
+0100
+++ kdelibs-3.5.10/kioslave/http/http.cc2011-12-27 13:27:17.0 
+0100
@@ -45,6 +45,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 #include 
@@ -750,9 +751,14 @@ void HTTPProtocol::davStatList( const KU
   entry.clear();
 
   QString urlStr = href.text();
+#if 0
   int encoding = remoteEncoding()->encodingMib();
   if ((encoding == 106) && 
(!KStringHandler::isUtf8(KURL::decode_string(urlStr, 4).latin1(
 encoding = 4; // Use latin1 if the file is not actually utf-8
+#else
+  QUrl::decode(urlStr);
+  int encoding = 106;
+#endif
 
   KURL thisURL ( urlStr, encoding );
 
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kdelibs3 for openSUSE:Factory

2012-01-11 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2012-01-11 15:37:04

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


Package is "kdelibs3", Maintainer is "kde-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2011-11-28 
12:54:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2012-01-11 
15:38:04.0 +0100
@@ -1,0 +2,12 @@
+Mon Jan  9 17:56:22 UTC 2012 - an...@opensuse.org
+
+- security patch for CVE-2011-3365 from Fedora
+- small patch to make icon selection symmetric
+- remove obsolete patch66
+
+---
+Fri Dec  2 07:21:49 UTC 2011 - co...@suse.com
+
+- add automake as buildrequire to avoid implicit dependency
+
+---

Old:

  integrate-global-pixmaps-10.1.diff

New:

  kdelibs-fedora-3.5.x-CVE-2011-3365.patch
  kiconview-text-fix.patch



Other differences:
--
++ kdelibs3-devel-doc.spec ++
--- /var/tmp/diff_new_pack.EBCxNk/_old  2012-01-11 15:38:07.0 +0100
+++ /var/tmp/diff_new_pack.EBCxNk/_new  2012-01-11 15:38:07.0 +0100
@@ -15,23 +15,33 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
-
 Name:   kdelibs3-devel-doc
-BuildRequires:  OpenEXR-devel aspell-devel cups-devel db-devel doxygen 
graphviz kdelibs3-devel krb5-devel libjasper libsndfile openldap2-devel 
qt3-devel-doc utempter xorg-x11-fonts-100dpi xorg-x11-fonts-75dpi 
xorg-x11-fonts-scalable
-%if %suse_version > 1020
-BuildRequires:  avahi-compat-mDNSResponder-devel fdupes
-%else
-BuildRequires:  mDNSResponder-devel
-%endif
+BuildRequires:  OpenEXR-devel
+BuildRequires:  aspell-devel
+BuildRequires:  automake
+BuildRequires:  avahi-compat-mDNSResponder-devel
+BuildRequires:  cups-devel
+BuildRequires:  db-devel
+BuildRequires:  doxygen
+BuildRequires:  fdupes
+BuildRequires:  graphviz
+BuildRequires:  kdelibs3-devel
+BuildRequires:  krb5-devel
+BuildRequires:  libjasper
+BuildRequires:  libsndfile-devel
+BuildRequires:  openldap2-devel
+BuildRequires:  qt3-devel-doc
+BuildRequires:  utempter
+BuildRequires:  xorg-x11-fonts-100dpi
+BuildRequires:  xorg-x11-fonts-75dpi
+BuildRequires:  xorg-x11-fonts-scalable
 Url:http://www.kde.org
-License:GPLv2+
+License:GPL-2.0+
 Group:  Documentation/HTML
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:Additional Package Documentation
 Version:3.5.10
-Release:45
+Release:0
 %define   kdelibs_patch_level b
 BuildArch:  noarch
 Requires:   kdelibs3 qt3-devel-doc

++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.EBCxNk/_old  2012-01-11 15:38:07.0 +0100
+++ /var/tmp/diff_new_pack.EBCxNk/_new  2012-01-11 15:38:07.0 +0100
@@ -15,24 +15,43 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
-
 Name:   kdelibs3
-BuildRequires:  OpenEXR-devel arts-devel aspell-devel cups-devel fam-devel 
flac-devel krb5-devel
-BuildRequires:  libart_lgpl-devel libidn-devel libsndfile-devel libtiff-devel
-BuildRequires:  libxslt-devel openldap2-devel pcre-devel qt3-devel sgml-skel
-BuildRequires:  db-devel libacl-devel libattr-devel unsermake 
update-desktop-files utempter
-BuildRequires:  unzip
-BuildRequires:  avahi-compat-mDNSResponder-devel fdupes libbz2-devel 
libjasper-devel
+BuildRequires:  OpenEXR-devel
+BuildRequires:  arts-devel
+BuildRequires:  aspell-devel
+BuildRequires:  automake
+BuildRequires:  avahi-compat-mDNSResponder-devel
+BuildRequires:  cups-devel
+BuildRequires:  db-devel
+BuildRequires:  fam-devel
+BuildRequires:  fdupes
+BuildRequires:  flac-devel
+BuildRequires:  krb5-devel
+BuildRequires:  libacl-devel
+BuildRequires:  libart_lgpl-devel
+BuildRequires:  libattr-devel
+BuildRequires:  libbz2-devel
 BuildRequires:  libdrm-devel
+BuildRequires:  libidn-devel
+BuildRequires:  libjasper-devel
+BuildRequires:  libsndfile-devel
+BuildRequires:  libtiff-devel
+BuildRequires:  libxslt-devel
+BuildRequires:  openldap2-devel
+BuildRequires:  pcre-devel
+BuildRequires:  qt3-devel
+BuildRequires:  sgml-skel
+BuildRequires:  unsermake
+BuildRequires:  unzip
+BuildRequires:  update-desktop-files
+BuildRequires:  utempter
 Url:http://www.kde.org
-License:BSD3c(or similar) ; GPLv2+ ; LGPLv2.1+
+License:BSD-3-Clause ; GPL-2.0+ ; LGPL-2.1+
 Group:  System/GUI/KDE
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:KDE Base Libraries
 Version:3.5.10
-Rele

commit kdelibs3 for openSUSE:Factory

2011-11-28 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2011-11-28 12:54:00

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


Package is "kdelibs3", Maintainer is "kde-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2011-10-08 
22:02:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2011-11-28 
12:54:02.0 +0100
@@ -1,0 +2,8 @@
+Tue Nov 22 03:29:12 UTC 2011 - an...@opensuse.org
+
+- add two patches from trinity:
+  * when executing a binary file from konq, change the current 
+directory to the place where the file is located
+  * add flat xml mime file types  
+
+---

New:

  kdelibs-trinity-flat-xml-types-r1258237.diff
  kdelibs-trinity-konq-working-dir.diff



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.7mEa8C/_old  2011-11-28 12:54:06.0 +0100
+++ /var/tmp/diff_new_pack.7mEa8C/_new  2011-11-28 12:54:06.0 +0100
@@ -20,18 +20,12 @@
 
 Name:   kdelibs3
 BuildRequires:  OpenEXR-devel arts-devel aspell-devel cups-devel fam-devel 
flac-devel krb5-devel
-BuildRequires:  libart_lgpl-devel libidn-devel libsndfile libtiff-devel
+BuildRequires:  libart_lgpl-devel libidn-devel libsndfile-devel libtiff-devel
 BuildRequires:  libxslt-devel openldap2-devel pcre-devel qt3-devel sgml-skel
 BuildRequires:  db-devel libacl-devel libattr-devel unsermake 
update-desktop-files utempter
 BuildRequires:  unzip
-%if %suse_version > 1020
 BuildRequires:  avahi-compat-mDNSResponder-devel fdupes libbz2-devel 
libjasper-devel
-%else
-BuildRequires:  libjasper mDNSResponder-devel
-%endif
-%if %suse_version > 1000
 BuildRequires:  libdrm-devel
-%endif
 Url:http://www.kde.org
 License:BSD3c(or similar) ; GPLv2+ ; LGPLv2.1+
 Group:  System/GUI/KDE
@@ -49,15 +43,9 @@
 #
 Requires:   qt3 >= %( echo `rpm -q --queryformat '%{VERSION}' qt3`)
 Requires:   openssl kdelibs3-default-style
-%if %suse_version > 1020
 Requires:   hicolor-icon-theme
-%endif
-%if %suse_version > 1000
 Recommends: ispell enscript
-%endif
-%if %suse_version > 1010
 Requires:   sudo
-%endif
 Source0:kdelibs-%{version}.tar.bz2
 Source2:do_make
 Source3:baselibs.conf
@@ -173,6 +161,10 @@
 
 Patch216:   kdelibs-cups-1_5-fix.patch
 
+Patch217:   kdelibs-trinity-konq-working-dir.diff
+Patch218:   kdelibs-trinity-flat-xml-types-r1258237.diff
+
+
 %description
 This package contains kdelibs, one of the basic packages of the K
 Desktop Environment. It contains the necessary libraries for the KDE
@@ -191,9 +183,8 @@
 %endif
 #
 Requires:   arts >= %( echo `rpm -q --queryformat '%{VERSION}' arts`)
-%if %suse_version > 1000
 Recommends: kdemultimedia3-arts
-%endif
+
 
 %description arts
 This package contains bindings and gui elements for using aRts sound
@@ -230,17 +221,9 @@
 Requires:   qt3-devel libvorbis-devel kdelibs3 = %version autoconf 
automake libxslt-devel libxml2-devel libart_lgpl-devel libjpeg-devel 
 # next line from kde3-devel-packages macro
 Requires:   kdelibs3-doc libtiff-devel openssl-devel update-desktop-files
-%if %suse_version > 1000
 Requires:   libdrm-devel dbus-1-qt3-devel
-%else
-Requires:   dbus-1-qt
-%endif
 Requires:   libattr-devel libacl-devel
-%if %suse_version > 1020
 Requires:   avahi-compat-mDNSResponder-devel libbz2-devel
-%else
-Requires:   mDNSResponder-devel
-%endif
 Requires:   kdelibs3-arts
 Summary:KDE Base Package: Build Environment
 Group:  System/GUI/KDE
@@ -306,9 +289,7 @@
 %patch2
 %patch80 -p 1
 %patch81
-%if %suse_version > 1000
 %patch83
-%endif
 %patch85
 %patch86
 %patch88
@@ -329,9 +310,7 @@
 %patch114
 %patch117
 %patch122
-%if %suse_version > 1010
 %patch123
-%endif
 %patch124
 %patch125
 %patch126
@@ -341,10 +320,8 @@
 %patch130
 %patch131
 %patch132
-%if %suse_version > 1020
 %patch133
 %patch134
-%endif
 %patch149
 %patch150
 %patch152
@@ -352,9 +329,7 @@
 %patch154
 %patch155
 %patch156
-%if %suse_version > 1110
 %patch157
-%endif
 %patch158
 %patch159
 %patch160
@@ -375,6 +350,8 @@
 %patch214 -p1
 %patch215 -p1
 %patch216 -p1
+%patch217 -p1
+%patch218 -p1
 
 tar xfvj %SOURCE12
 #
@@ -562,6 +539,12 @@
   install -m 0644 %SOURCE14 $RPM_BUILD_ROOT/opt/kde3/share/mimelnk/application/
   install -m 0644 %SOURCE15 $RPM_BUILD_ROOT/opt/kde3/share/mimelnk/application/
   install -m 0644 %SOURCE16 $RPM_BUILD_ROOT/opt/kde3/share/mimelnk/application/
+  
+  install -m 0644 
mimetypes/application/vnd.oasis.opendocument.spreadsheet-flat-xml.

commit kdelibs3 for openSUSE:Factory

2011-10-08 Thread h_root

Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory
checked in at Sat Oct 8 22:02:44 CEST 2011.




--- openSUSE:Factory/kdelibs3/kdelibs3.changes  2011-09-23 02:06:16.0 
+0200
+++ /mounts/work_src_done/STABLE/kdelibs3/kdelibs3.changes  2011-10-08 
08:33:55.0 +0200
@@ -1,0 +2,5 @@
+Sat Oct  8 06:32:42 UTC 2011 - an...@opensuse.org
+
+- add patch for build with CUPS 1.5
+
+---

calling whatdependson for head-i586


New:

  kdelibs-cups-1_5-fix.patch



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.r66A7z/_old  2011-10-08 22:02:39.0 +0200
+++ /var/tmp/diff_new_pack.r66A7z/_new  2011-10-08 22:02:39.0 +0200
@@ -171,6 +171,8 @@
 Patch214:   kdelibs-trinity-1176550-desktop-size-default.dif
 Patch215:   kdelibs-trinity-1176570-no-default-singleclick.dif
 
+Patch216:   kdelibs-cups-1_5-fix.patch
+
 %description
 This package contains kdelibs, one of the basic packages of the K
 Desktop Environment. It contains the necessary libraries for the KDE
@@ -372,6 +374,7 @@
 %patch213 -p1
 %patch214 -p1
 %patch215 -p1
+%patch216 -p1
 
 tar xfvj %SOURCE12
 #


++ kdelibs-cups-1_5-fix.patch ++
diff -wruN kdelibs-3.5.10.orig/kdeprint/cups/cupsdconf2/cups-util.c 
kdelibs-3.5.10/kdeprint/cups/cupsdconf2/cups-util.c
--- kdelibs-3.5.10.orig/kdeprint/cups/cupsdconf2/cups-util.c2007-10-08 
13:52:10.0 +0400
+++ kdelibs-3.5.10/kdeprint/cups/cupsdconf2/cups-util.c 2011-10-08 
09:23:37.160060814 +0400
@@ -5,6 +5,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #define CUPS_SERVERROOT"/etc/cups"
 static http_t  *cups_server;
continue with "q"...



Remember to have fun...

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



commit kdelibs3 for openSUSE:Factory

2011-09-15 Thread h_root

Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory
checked in at Thu Sep 15 13:59:00 CEST 2011.




--- KDE/kdelibs3/kdelibs3.changes   2011-06-17 12:25:33.0 +0200
+++ /mounts/work_src_done/STABLE/kdelibs3/kdelibs3.changes  2011-09-14 
14:28:32.0 +0200
@@ -1,0 +2,5 @@
+Wed Sep 14 12:27:33 UTC 2011 - an...@opensuse.org
+
+- add 3 patches from Trinity project
+
+---

calling whatdependson for head-i586


New:

  kdelibs-trinity-1123812-certificates.dif
  kdelibs-trinity-1176550-desktop-size-default.dif
  kdelibs-trinity-1176570-no-default-singleclick.dif



Other differences:
--
++ kdelibs3-devel-doc.spec ++
--- /var/tmp/diff_new_pack.JdK0Ln/_old  2011-09-15 13:58:53.0 +0200
+++ /var/tmp/diff_new_pack.JdK0Ln/_new  2011-09-15 13:58:53.0 +0200
@@ -31,7 +31,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:Additional Package Documentation
 Version:3.5.10
-Release:44
+Release:45
 %define   kdelibs_patch_level b
 BuildArch:  noarch
 Requires:   kdelibs3 qt3-devel-doc

++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.JdK0Ln/_old  2011-09-15 13:58:53.0 +0200
+++ /var/tmp/diff_new_pack.JdK0Ln/_new  2011-09-15 13:58:53.0 +0200
@@ -38,7 +38,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:KDE Base Libraries
 Version:3.5.10
-Release:47
+Release:49
 Obsoletes:  kde3-i18n kups keramik kdelibs3-cups kdelibs3-33addons 
kdepim3-networkstatus
 Provides:   kups keramik kdelibs3-cups kdelibs3-33addons 
kdepim3-networkstatus
 Provides:   kdelibs3_base = 3.3
@@ -167,6 +167,10 @@
 Patch211:   oom_score_adj.patch
 Patch212:   kcontrol_crash_patch.diff
 
+Patch213:   kdelibs-trinity-1123812-certificates.dif
+Patch214:   kdelibs-trinity-1176550-desktop-size-default.dif
+Patch215:   kdelibs-trinity-1176570-no-default-singleclick.dif
+
 %description
 This package contains kdelibs, one of the basic packages of the K
 Desktop Environment. It contains the necessary libraries for the KDE
@@ -365,6 +369,9 @@
 %patch210 -p1
 %patch211 -p1
 %patch212
+%patch213 -p1
+%patch214 -p1
+%patch215 -p1
 
 tar xfvj %SOURCE12
 #


++ kdelibs-trinity-1123812-certificates.dif ++
 1374 lines (skipped)

++ kdelibs-trinity-1176550-desktop-size-default.dif ++
Index: kdelibs/pics/crystalsvg/index.theme
===
--- kdelibs/pics/crystalsvg/index.theme (revision 1176514)
+++ kdelibs/pics/crystalsvg/index.theme (revision 1176550)
@@ -105,7 +105,7 @@
 LinkOverlay=link_overlay
 LockOverlay=lock_overlay
 ZipOverlay=zip_overlay
-DesktopDefault=48
+DesktopDefault=32
 DesktopSizes=16,22,32,48,64,128
 ToolbarDefault=22
 ToolbarSizes=16,22,32,48
++ kdelibs-trinity-1176570-no-default-singleclick.dif ++
Index: kdelibs/kdecore/kglobalsettings.h
===
--- kdelibs/kdecore/kglobalsettings.h   (revision 1176551)
+++ kdelibs/kdecore/kglobalsettings.h   (revision 1176570)
@@ -23,7 +23,7 @@
 #include 
 #include "kdelibs_export.h"
 
-#define KDE_DEFAULT_SINGLECLICK true
+#define KDE_DEFAULT_SINGLECLICK false
 #define KDE_DEFAULT_INSERTTEAROFFHANDLES 0
 #define KDE_DEFAULT_AUTOSELECTDELAY -1
 #define KDE_DEFAULT_CHANGECURSOR true
@@ -31,7 +31,7 @@
 #define KDE_DEFAULT_VISUAL_ACTIVATE true
 #define KDE_DEFAULT_VISUAL_ACTIVATE_SPEED 50
 #define KDE_DEFAULT_WHEEL_ZOOM false
-#define KDE_DEFAULT_ICON_ON_PUSHBUTTON false
+#define KDE_DEFAULT_ICON_ON_PUSHBUTTON true
 #define KDE_DEFAULT_OPAQUE_RESIZE true
 #define KDE_DEFAULT_BUTTON_LAYOUT 0
 #define KDE_DEFAULT_SHADE_SORT_COLUMN true





Remember to have fun...

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



commit kdelibs3 for openSUSE:Factory

2011-06-20 Thread h_root

Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory
checked in at Mon Jun 20 09:47:17 CEST 2011.




--- KDE/kdelibs3/kdelibs3.changes   2010-04-19 20:50:03.0 +0200
+++ /mounts/work_src_done/STABLE/kdelibs3/kdelibs3.changes  2011-06-17 
12:25:33.0 +0200
@@ -1,0 +2,15 @@
+Fri Jun 17 09:55:54 UTC 2011 - a...@suse.de
+
+- Add /etc/ld.so.conf.d/kdelibs3.conf (bnc#671725).
+
+---
+Sat May  7 19:49:45 UTC 2011 - an...@opensuse.org
+
+- added patch for scrollbars in light style v2 to prevent appearance of garbage
+
+---
+Mon Feb 21 10:37:20 UTC 2011 - a...@suse.de
+
+- Use /proc//oom_score_adj if available as new interface.
+
+---

calling whatdependson for head-i586


New:

  kcontrol_crash_patch.diff
  kdelibs-3.5.10-CVE-2009-2702.patch
  kdelibs-3.5.10-cve-2009-1698.patch
  kdelibs-3.5.10-cve-2009-1725.patch
  kdelibs-3.5.10-cve-2009-2537-select-length.patch
  kdelibs-3.5.10-kio.patch
  kdelibs-3.5.10-latex-syntax-kile-2.0.3.patch
  kdelibs-3.5.4-CVE-2009-1690.patch
  light_v_2_scrollbar_patch.patch
  oom_score_adj.patch



Other differences:
--
++ kdelibs3-devel-doc.spec ++
--- /var/tmp/diff_new_pack.jNCiCj/_old  2011-06-20 09:40:42.0 +0200
+++ /var/tmp/diff_new_pack.jNCiCj/_new  2011-06-20 09:40:42.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package kdelibs3-devel-doc (Version 3.5.10)
+# spec file for package kdelibs3-devel-doc
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 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
@@ -31,7 +31,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:Additional Package Documentation
 Version:3.5.10
-Release:37
+Release:44
 %define   kdelibs_patch_level b
 BuildArch:  noarch
 Requires:   kdelibs3 qt3-devel-doc

++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.jNCiCj/_old  2011-06-20 09:40:42.0 +0200
+++ /var/tmp/diff_new_pack.jNCiCj/_new  2011-06-20 09:40:42.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package kdelibs3 (Version 3.5.10)
+# spec file for package kdelibs3
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 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
@@ -38,7 +38,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:KDE Base Libraries
 Version:3.5.10
-Release:32
+Release:47
 Obsoletes:  kde3-i18n kups keramik kdelibs3-cups kdelibs3-33addons 
kdepim3-networkstatus
 Provides:   kups keramik kdelibs3-cups kdelibs3-33addons 
kdepim3-networkstatus
 Provides:   kdelibs3_base = 3.3
@@ -154,6 +154,18 @@
 Patch161:   gcc45.diff
 Patch162:   arts-acinclude.patch
 Patch163:   kdelibs-3.5.10-ossl-1.x.patch
+Patch164:   light_v_2_scrollbar_patch.patch
+
+Patch201:   kdelibs-3.5.4-CVE-2009-1690.patch
+Patch203:   kdelibs-3.5.10-latex-syntax-kile-2.0.3.patch
+Patch204:   kdelibs-3.5.10-CVE-2009-2702.patch
+Patch205:   kdelibs-3.5.10-cve-2009-2537-select-length.patch
+Patch206:   kdelibs-3.5.10-cve-2009-1725.patch
+Patch207:   kdelibs-3.5.10-cve-2009-1698.patch
+
+Patch210:   kdelibs-3.5.10-kio.patch
+Patch211:   oom_score_adj.patch
+Patch212:   kcontrol_crash_patch.diff
 
 %description
 This package contains kdelibs, one of the basic packages of the K
@@ -211,7 +223,7 @@
 # usefiles /opt/kde3/bin/dcopidl /opt/kde3/bin/dcopidl2cpp 
/opt/kde3/bin/kdb2html /opt/kde3/bin/preparetips 
 Requires:   qt3-devel libvorbis-devel kdelibs3 = %version autoconf 
automake libxslt-devel libxml2-devel libart_lgpl-devel libjpeg-devel 
 # next line from kde3-devel-packages macro
-Requires:   kdelibs3-doc libtiff-devel openssl-devel unsermake 
update-desktop-files
+Requires:   kdelibs3-doc libtiff-devel openssl-devel update-desktop-files
 %if %suse_version > 1000
 Requires:   libdrm-devel dbus-1-qt3-devel
 %else
@@ -343,6 +355,17 @@
 %patch161
 %patch162 -p1
 %patch163 -p1
+%patch164 -p1
+%patch201 -p1
+%patch203 -p1
+%patch204 -p1
+%patch205 -p1
+%patch206
+%patch207 -p1
+%patch210 -p1
+%patch211 -p1
+%patch212
+
 tar xfvj %SOURCE12
 #
 # define KDE version exactly
@@ -544,6 +567,14 @@
   mkdir -p $RPM_BUILD_ROOT/opt/kde3/share/applications
   touch $RPM_BUILD_ROOT/opt/kde3/share/applications/mimeinfo.cache
   %endif
+# Create /etc/ld.