Hello community,

here is the log from the commit of package threadweaver for openSUSE:Factory 
checked in at 2017-09-19 16:28:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/threadweaver (Old)
 and      /work/SRC/openSUSE:Factory/.threadweaver.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "threadweaver"

Tue Sep 19 16:28:53 2017 rev:45 rq:526689 version:5.38.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/threadweaver/threadweaver.changes        
2017-08-24 18:00:36.443055422 +0200
+++ /work/SRC/openSUSE:Factory/.threadweaver.new/threadweaver.changes   
2017-09-19 16:28:56.836119634 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:19 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * Do not leak symbols of pimpl classes, protect with Q_DECL_HIDDEN
+
+-------------------------------------------------------------------

Old:
----
  threadweaver-5.37.0.tar.xz

New:
----
  threadweaver-5.38.0.tar.xz

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

Other differences:
------------------
++++++ threadweaver.spec ++++++
--- /var/tmp/diff_new_pack.f9Mcxy/_old  2017-09-19 16:28:57.600011404 +0200
+++ /var/tmp/diff_new_pack.f9Mcxy/_new  2017-09-19 16:28:57.604010837 +0200
@@ -17,12 +17,16 @@
 
 
 %define lname   libKF5ThreadWeaver5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:           threadweaver
-Version:        5.37.0
+Version:        5.38.0
 Release:        0
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  cmake(Qt5Core) >= 5.6.0

++++++ threadweaver-5.37.0.tar.xz -> threadweaver-5.38.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/threadweaver-5.37.0/CMakeLists.txt 
new/threadweaver-5.38.0/CMakeLists.txt
--- old/threadweaver-5.37.0/CMakeLists.txt      2017-08-06 19:02:24.000000000 
+0200
+++ new/threadweaver-5.38.0/CMakeLists.txt      2017-09-02 11:47:16.000000000 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
 project(ThreadWeaver VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/threadweaver-5.37.0/src/dependencypolicy.cpp 
new/threadweaver-5.38.0/src/dependencypolicy.cpp
--- old/threadweaver-5.37.0/src/dependencypolicy.cpp    2017-08-06 
19:02:24.000000000 +0200
+++ new/threadweaver-5.38.0/src/dependencypolicy.cpp    2017-09-02 
11:47:16.000000000 +0200
@@ -42,7 +42,7 @@
 
 typedef QMultiMap<JobPointer, JobPointer> JobMultiMap;
 
-class DependencyPolicy::Private
+class Q_DECL_HIDDEN DependencyPolicy::Private
 {
 public:
     /** A container to keep track of Job dependencies.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/threadweaver-5.37.0/src/queue.cpp 
new/threadweaver-5.38.0/src/queue.cpp
--- old/threadweaver-5.37.0/src/queue.cpp       2017-08-06 19:02:24.000000000 
+0200
+++ new/threadweaver-5.38.0/src/queue.cpp       2017-09-02 11:47:16.000000000 
+0200
@@ -39,7 +39,7 @@
 static Queue::GlobalQueueFactory *globalQueueFactory;
 }
 
-class Queue::Private
+class Q_DECL_HIDDEN Queue::Private
 {
 public:
     Private(Queue *q, QueueSignals *queue)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/threadweaver-5.37.0/src/queuestream.cpp 
new/threadweaver-5.38.0/src/queuestream.cpp
--- old/threadweaver-5.37.0/src/queuestream.cpp 2017-08-06 19:02:24.000000000 
+0200
+++ new/threadweaver-5.38.0/src/queuestream.cpp 2017-09-02 11:47:16.000000000 
+0200
@@ -34,7 +34,7 @@
 namespace ThreadWeaver
 {
 
-class QueueStream::Private
+class Q_DECL_HIDDEN QueueStream::Private
 {
 public:
     Private(Queue *w) : weaver(w) {}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/threadweaver-5.37.0/src/resourcerestrictionpolicy.cpp 
new/threadweaver-5.38.0/src/resourcerestrictionpolicy.cpp
--- old/threadweaver-5.37.0/src/resourcerestrictionpolicy.cpp   2017-08-06 
19:02:24.000000000 +0200
+++ new/threadweaver-5.38.0/src/resourcerestrictionpolicy.cpp   2017-09-02 
11:47:16.000000000 +0200
@@ -36,7 +36,7 @@
 
 using namespace ThreadWeaver;
 
-class ResourceRestrictionPolicy::Private
+class Q_DECL_HIDDEN ResourceRestrictionPolicy::Private
 {
 public:
     Private(int theCap)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/threadweaver-5.37.0/src/state.cpp 
new/threadweaver-5.38.0/src/state.cpp
--- old/threadweaver-5.37.0/src/state.cpp       2017-08-06 19:02:24.000000000 
+0200
+++ new/threadweaver-5.38.0/src/state.cpp       2017-09-02 11:47:16.000000000 
+0200
@@ -42,7 +42,7 @@
     "Destructed"
 };
 
-class State::Private
+class Q_DECL_HIDDEN State::Private
 {
 public:
     Private(QueueInterface *theWeaver)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/threadweaver-5.37.0/src/thread.cpp 
new/threadweaver-5.38.0/src/thread.cpp
--- old/threadweaver-5.37.0/src/thread.cpp      2017-08-06 19:02:24.000000000 
+0200
+++ new/threadweaver-5.38.0/src/thread.cpp      2017-09-02 11:47:16.000000000 
+0200
@@ -41,7 +41,7 @@
 
 using namespace ThreadWeaver;
 
-class Thread::Private
+class Q_DECL_HIDDEN Thread::Private
 {
 public:
     explicit Private(Weaver *theParent)


Reply via email to