Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package kf6-threadweaver for
openSUSE:Factory checked in at 2024-08-10 19:07:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kf6-threadweaver (Old)
and /work/SRC/openSUSE:Factory/.kf6-threadweaver.new.7232 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kf6-threadweaver"
Sat Aug 10 19:07:00 2024 rev:6 rq:1192918 version:6.5.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/kf6-threadweaver/kf6-threadweaver.changes
2024-07-14 08:53:57.084017624 +0200
+++
/work/SRC/openSUSE:Factory/.kf6-threadweaver.new.7232/kf6-threadweaver.changes
2024-08-10 19:11:23.318722450 +0200
@@ -1,0 +2,14 @@
+Mon Aug 5 10:48:04 UTC 2024 - Christophe Marin <[email protected]>
+
+- Update to 6.5.0
+ * New feature release
+ * For more details please see:
+ * https://kde.org/announcements/frameworks/6/6.5.0
+- Changes since 6.4.0:
+ * Update dependency version to 6.5.0
+ * ensure windows tests work
+ * only enter loop if signal didn't arrive before that
+ * try to fix windows hang in tests
+ * Update version to 6.5.0
+
+-------------------------------------------------------------------
Old:
----
threadweaver-6.4.0.tar.xz
threadweaver-6.4.0.tar.xz.sig
New:
----
threadweaver-6.5.0.tar.xz
threadweaver-6.5.0.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kf6-threadweaver.spec ++++++
--- /var/tmp/diff_new_pack.Nymf1k/_old 2024-08-10 19:11:24.066753514 +0200
+++ /var/tmp/diff_new_pack.Nymf1k/_new 2024-08-10 19:11:24.066753514 +0200
@@ -19,13 +19,13 @@
%define qt6_version 6.6.0
%define rname threadweaver
-# Full KF6 version (e.g. 6.4.0)
+# Full KF6 version (e.g. 6.5.0)
%{!?_kf6_version: %global _kf6_version %{version}}
# Last major and minor KF6 version (e.g. 6.0)
%{!?_kf6_bugfix_version: %define _kf6_bugfix_version %(echo %{_kf6_version} |
awk -F. '{print $1"."$2}')}
%bcond_without released
Name: kf6-threadweaver
-Version: 6.4.0
+Version: 6.5.0
Release: 0
Summary: KDE Helper for multithreaded programming
License: LGPL-2.1-or-later
++++++ threadweaver-6.4.0.tar.xz -> threadweaver-6.5.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/threadweaver-6.4.0/.kde-ci.yml
new/threadweaver-6.5.0/.kde-ci.yml
--- old/threadweaver-6.4.0/.kde-ci.yml 2024-07-05 22:10:32.000000000 +0200
+++ new/threadweaver-6.5.0/.kde-ci.yml 2024-08-02 13:17:17.000000000 +0200
@@ -5,4 +5,4 @@
Options:
test-before-installing: True
- require-passing-tests-on: [ 'Linux', 'FreeBSD' ]
+ require-passing-tests-on: [ 'Linux', 'FreeBSD', 'Windows' ]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/threadweaver-6.4.0/CMakeLists.txt
new/threadweaver-6.5.0/CMakeLists.txt
--- old/threadweaver-6.4.0/CMakeLists.txt 2024-07-05 22:10:32.000000000
+0200
+++ new/threadweaver-6.5.0/CMakeLists.txt 2024-08-02 13:17:17.000000000
+0200
@@ -1,10 +1,10 @@
cmake_minimum_required(VERSION 3.16)
-set(KF_VERSION "6.4.0") # handled by release scripts
+set(KF_VERSION "6.5.0") # handled by release scripts
project(ThreadWeaver VERSION ${KF_VERSION})
include(FeatureSummary)
-find_package(ECM 6.4.0 NO_MODULE)
+find_package(ECM 6.5.0 NO_MODULE)
set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake
Modules." URL "https://commits.kde.org/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-6.4.0/autotests/JobTests.cpp
new/threadweaver-6.5.0/autotests/JobTests.cpp
--- old/threadweaver-6.4.0/autotests/JobTests.cpp 2024-07-05
22:10:32.000000000 +0200
+++ new/threadweaver-6.5.0/autotests/JobTests.cpp 2024-08-02
13:17:17.000000000 +0200
@@ -16,6 +16,7 @@
#include <QSignalSpy>
#include <QTest>
#include <QThread>
+#include <QTimer>
#include <ThreadWeaver/Collection>
#include <ThreadWeaver/DebuggingAids>
@@ -374,7 +375,10 @@
QVERIFY(result.startsWith(jobC->character()));
// QSKIP("This test is too fragile"); // PENDING(Mirko): fix
// QTRY_COMPARE(collectionStartedSignalSpy.count(), 1);
- loop.exec();
+ if (collectionStartedSignalSpy.count() < 1) {
+ QTimer::singleShot(5000, &loop, &QEventLoop::quit); // timeout
+ loop.exec();
+ }
qApp->processEvents();
QCOMPARE(collectionStartedSignalSpy.count(), 1);
QVERIFY(Queue::instance()->isIdle());