Hello community,

here is the log from the commit of package kcompletion for openSUSE:Factory 
checked in at 2015-09-24 07:10:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kcompletion (Old)
 and      /work/SRC/openSUSE:Factory/.kcompletion.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kcompletion"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kcompletion/kcompletion.changes  2015-09-02 
07:44:12.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.kcompletion.new/kcompletion.changes     
2015-09-24 07:10:14.000000000 +0200
@@ -1,0 +2,8 @@
+Tue Sep  8 17:12:46 UTC 2015 - [email protected]
+
+- Update to 5.14.0
+  * Fix bad behavior / running OOM on Windows (kde#345860)
+  * For more details please see:
+    https://www.kde.org/announcements/kde-frameworks-5.14.0.php
+
+-------------------------------------------------------------------

Old:
----
  kcompletion-5.13.0.tar.xz

New:
----
  kcompletion-5.14.0.tar.xz

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

Other differences:
------------------
++++++ kcompletion.spec ++++++
--- /var/tmp/diff_new_pack.k7MjhE/_old  2015-09-24 07:10:14.000000000 +0200
+++ /var/tmp/diff_new_pack.k7MjhE/_new  2015-09-24 07:10:14.000000000 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5Completion5
-%define _tar_path 5.13
+%define _tar_path 5.14
 Name:           kcompletion
-Version:        5.13.0
+Version:        5.14.0
 Release:        0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++++++ kcompletion-5.13.0.tar.xz -> kcompletion-5.14.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcompletion-5.13.0/CMakeLists.txt 
new/kcompletion-5.14.0/CMakeLists.txt
--- old/kcompletion-5.13.0/CMakeLists.txt       2015-08-04 12:47:24.000000000 
+0200
+++ new/kcompletion-5.14.0/CMakeLists.txt       2015-09-05 10:52:32.000000000 
+0200
@@ -4,7 +4,7 @@
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.13.0  NO_MODULE)
+find_package(ECM 5.14.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -21,8 +21,8 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION "5.13.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.13.0") # handled by release scripts
+set(KF5_VERSION "5.14.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.14.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KCOMPLETION
   VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/kcompletion_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcompletion-5.13.0/po/fr/kcompletion5_qt.po 
new/kcompletion-5.14.0/po/fr/kcompletion5_qt.po
--- old/kcompletion-5.13.0/po/fr/kcompletion5_qt.po     2015-08-04 
12:47:24.000000000 +0200
+++ new/kcompletion-5.14.0/po/fr/kcompletion5_qt.po     2015-09-05 
10:52:32.000000000 +0200
@@ -24,10 +24,10 @@
 "PO-Revision-Date: 2014-03-16 18:32+0100\n"
 "Last-Translator: Sebastien Renard <[email protected]>\n"
 "Language-Team: French <[email protected]>\n"
+"Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: fr\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 "X-Generator: Lokalize 1.5\n"
 "X-Environment: kde\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcompletion-5.13.0/src/kzoneallocator.cpp 
new/kcompletion-5.14.0/src/kzoneallocator.cpp
--- old/kcompletion-5.13.0/src/kzoneallocator.cpp       2015-08-04 
12:47:24.000000000 +0200
+++ new/kcompletion-5.14.0/src/kzoneallocator.cpp       2015-09-05 
10:52:32.000000000 +0200
@@ -69,9 +69,9 @@
     /** One block is 'current' to satisfy requests. @internal */
     MemBlock *currentBlock;
     /** Store block size from constructor. @internal */
-    unsigned long blockSize;
+    quintptr blockSize;
     /** Store offset into current block; size-offset is free. @internal */
-    unsigned long blockOffset;
+    quintptr blockOffset;
     /** base-2 log of the block size. @internal */
     unsigned int log2;
     /** Count total number of allocated blocks. @internal */
@@ -244,7 +244,7 @@
 
     if ((unsigned long) _size + d->blockOffset > d->blockSize) {
         if (_size > d->blockSize) {
-            qDebug("KZoneAllocator: allocating more than %lu bytes", 
d->blockSize);
+            qDebug("KZoneAllocator: allocating more than %zu bytes", 
(size_t)d->blockSize);
             return 0;
         }
         addBlock(new MemBlock(d->blockSize));


Reply via email to