Hello community,

here is the log from the commit of package threadweaver for openSUSE:Factory 
checked in at 2018-10-22 11:17:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/threadweaver (Old)
 and      /work/SRC/openSUSE:Factory/.threadweaver.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "threadweaver"

Mon Oct 22 11:17:40 2018 rev:58 rq:642365 version:5.51.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/threadweaver/threadweaver.changes        
2018-10-01 08:11:12.518199129 +0200
+++ /work/SRC/openSUSE:Factory/.threadweaver.new/threadweaver.changes   
2018-10-22 11:19:52.387368187 +0200
@@ -1,0 +2,16 @@
+Tue Oct 16 08:02:55 UTC 2018 - Luca Beltrame <[email protected]>
+
+- Run spec-cleaner
+
+-------------------------------------------------------------------
+Mon Oct 15 11:50:44 UTC 2018 - [email protected]
+
+- Update to 5.51.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.51.0.php
+- Changes since 5.50.0:
+  * Use strict compile flags
+  * Fix minor typos
+
+-------------------------------------------------------------------

Old:
----
  threadweaver-5.50.0.tar.xz

New:
----
  threadweaver-5.51.0.tar.xz

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

Other differences:
------------------
++++++ threadweaver.spec ++++++
--- /var/tmp/diff_new_pack.xekd22/_old  2018-10-22 11:19:52.807367751 +0200
+++ /var/tmp/diff_new_pack.xekd22/_new  2018-10-22 11:19:52.811367748 +0200
@@ -12,23 +12,23 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 %define lname   libKF5ThreadWeaver5
-%define _tar_path 5.50
+%define _tar_path 5.51
 # 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: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:           threadweaver
-Version:        5.50.0
+Version:        5.51.0
 Release:        0
 Summary:        KDE Helper for multithreaded programming
 License:        LGPL-2.1-or-later
 Group:          System/GUI/KDE
-URL:            http://www.kde.org
+URL:            https://www.kde.org
 Source:         
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 Source1:        baselibs.conf
 BuildRequires:  cmake >= 3.0

++++++ threadweaver-5.50.0.tar.xz -> threadweaver-5.51.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/threadweaver-5.50.0/CMakeLists.txt 
new/threadweaver-5.51.0/CMakeLists.txt
--- old/threadweaver-5.50.0/CMakeLists.txt      2018-09-01 00:25:59.000000000 
+0200
+++ new/threadweaver-5.51.0/CMakeLists.txt      2018-10-07 12:11:44.000000000 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.50.0") # handled by release scripts
+set(KF5_VERSION "5.51.0") # handled by release scripts
 project(ThreadWeaver VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.50.0  NO_MODULE)
+find_package(ECM 5.51.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)
 
@@ -34,6 +34,11 @@
                         PACKAGE_VERSION_FILE 
"${CMAKE_CURRENT_BINARY_DIR}/KF5ThreadWeaverConfigVersion.cmake"
                         SOVERSION 5)
 # --
+add_definitions(-DQT_NO_CAST_FROM_ASCII)
+add_definitions(-DQT_NO_CAST_TO_ASCII)
+add_definitions(-DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT)
+add_definitions(-DQT_NO_URL_CAST_FROM_STRING)
+add_definitions(-DQT_USE_QSTRINGBUILDER)
 
 add_subdirectory(src)
 if (BUILD_TESTING)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/threadweaver-5.50.0/autotests/WaitForIdleAndFinished.h 
new/threadweaver-5.51.0/autotests/WaitForIdleAndFinished.h
--- old/threadweaver-5.50.0/autotests/WaitForIdleAndFinished.h  2018-09-01 
00:25:59.000000000 +0200
+++ new/threadweaver-5.51.0/autotests/WaitForIdleAndFinished.h  2018-10-07 
12:11:44.000000000 +0200
@@ -44,7 +44,7 @@
     ThreadWeaver::Queue *weaver_;
 };
 
-/** @brief Create a WaitForIdleAndFinished, and supress the IDE unused 
warning. */
+/** @brief Create a WaitForIdleAndFinished, and suppress the IDE unused 
warning. */
 #define WAITFORIDLEANDFINISHED(queue) const WaitForIdleAndFinished 
waitForIdleAndFinished##__LINE__(queue);\
     Q_UNUSED(waitForIdleAndFinished##__LINE__);
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/threadweaver-5.50.0/src/job.h 
new/threadweaver-5.51.0/src/job.h
--- old/threadweaver-5.50.0/src/job.h   2018-09-01 00:25:59.000000000 +0200
+++ new/threadweaver-5.51.0/src/job.h   2018-10-07 12:11:44.000000000 +0200
@@ -80,7 +80,7 @@
      */
     void execute(const JobPointer& job, Thread *) override;
 
-    /** Perform the job synchroneously in the current thread. */
+    /** Perform the job synchronously in the current thread. */
     void blockingExecute() override;
 
     /** Set the Executor object that is supposed to run the job.
@@ -199,7 +199,7 @@
      * It is called from execute(). This method is the one to overload it with 
the job's task.
      *
      * The Job will be executed in the specified thread. thread may be zero, 
indicating that the job is being executed some
-     * other way (for example, synchroneously by some other job). self 
specifies the job as the queue sees it. Whenever publishing
+     * other way (for example, synchronously by some other job). self 
specifies the job as the queue sees it. Whenever publishing
      * information about the job to the outside world, for example by emitting 
signals, use self, not this. self is the reference
      * counted object handled by the queue. Using it as signal parameters will 
amongst other things prevent thejob from being
      * memory managed and deleted.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/threadweaver-5.50.0/src/queueing.h 
new/threadweaver-5.51.0/src/queueing.h
--- old/threadweaver-5.50.0/src/queueing.h      2018-09-01 00:25:59.000000000 
+0200
+++ new/threadweaver-5.51.0/src/queueing.h      2018-10-07 12:11:44.000000000 
+0200
@@ -79,7 +79,7 @@
     return ret;
 }
 
-// specialise for JobPointer:
+// specialize for JobPointer:
 template<>
 inline JobPointer enqueue<JobPointer>(Queue *weaver, JobPointer job)
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/threadweaver-5.50.0/src/queuesignals.h 
new/threadweaver-5.51.0/src/queuesignals.h
--- old/threadweaver-5.50.0/src/queuesignals.h  2018-09-01 00:25:59.000000000 
+0200
+++ new/threadweaver-5.51.0/src/queuesignals.h  2018-10-07 12:11:44.000000000 
+0200
@@ -48,7 +48,7 @@
 Q_SIGNALS:
     /** @brief Emitted when the Queue has completed all jobs currently queued.
      *
-     * The Queue emits finished() when the the job queue is empty, and the 
last job currently processed by a worker threads was
+     * The Queue emits finished() when the job queue is empty, and the last 
job currently processed by a worker threads was
      * completed. Beware that if multiple jobs are enqueued repeatedly one by 
one, this signal might be emitted multiple times, because the
      * queued jobs where processed before new ones could be queued. To avoid 
this, queue all relevant jobs in a single operation,
      * using for example a QueueStream or a Collection.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/threadweaver-5.50.0/src/shuttingdownstate.cpp 
new/threadweaver-5.51.0/src/shuttingdownstate.cpp
--- old/threadweaver-5.50.0/src/shuttingdownstate.cpp   2018-09-01 
00:25:59.000000000 +0200
+++ new/threadweaver-5.51.0/src/shuttingdownstate.cpp   2018-10-07 
12:11:44.000000000 +0200
@@ -59,7 +59,7 @@
 
 void ShuttingDownState::waitForAvailableJob(Thread *)
 {
-    // immidiately return here
+    // immediately return here
 }
 
 StateId ShuttingDownState::stateId() const


Reply via email to