Hello community, here is the log from the commit of package bluez-qt for openSUSE:Factory checked in at 2017-08-24 17:52:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old) and /work/SRC/openSUSE:Factory/.bluez-qt.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "bluez-qt" Thu Aug 24 17:52:54 2017 rev:29 rq:516650 version:5.37.0 Changes: -------- --- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes 2017-07-17 10:21:13.323721619 +0200 +++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes 2017-08-24 17:52:57.295726087 +0200 @@ -1,0 +2,12 @@ +Sat Aug 12 09:23:13 UTC 2017 - [email protected] + +- Update to 5.37.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/kde-frameworks-5.37.0.php +- Changes since 5.36.0 : + * Autotests: repair finding helper binary in current setup + * autotests: fix running with CTEST_PARALLEL_LEVEL=8 + * autotests: prepare for CMAKE_RUNTIME_OUTPUT_DIRECTORY being set + +------------------------------------------------------------------- Old: ---- bluez-qt-5.36.0.tar.xz New: ---- bluez-qt-5.37.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ bluez-qt.spec ++++++ --- /var/tmp/diff_new_pack.TeOCTr/_old 2017-08-24 17:52:58.091613986 +0200 +++ /var/tmp/diff_new_pack.TeOCTr/_new 2017-08-24 17:52:58.095613423 +0200 @@ -18,9 +18,9 @@ %define sonum 6 %define _libname KF5BluezQt -%define _tar_path 5.36 +%define _tar_path 5.37 Name: bluez-qt -Version: 5.36.0 +Version: 5.37.0 Release: 0 Summary: Async Bluez wrapper library License: LGPL-2.1+ ++++++ bluez-qt-5.36.0.tar.xz -> bluez-qt-5.37.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bluez-qt-5.36.0/CMakeLists.txt new/bluez-qt-5.37.0/CMakeLists.txt --- old/bluez-qt-5.36.0/CMakeLists.txt 2017-06-30 12:14:39.000000000 +0200 +++ new/bluez-qt-5.37.0/CMakeLists.txt 2017-08-06 18:24:35.000000000 +0200 @@ -1,10 +1,10 @@ cmake_minimum_required(VERSION 3.0) -set(KF5_VERSION "5.36.0") # handled by release scripts +set(KF5_VERSION "5.37.0") # handled by release scripts project(BluezQt VERSION ${KF5_VERSION}) include(FeatureSummary) -find_package(ECM 5.36.0 NO_MODULE) +find_package(ECM 5.37.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) @@ -32,7 +32,7 @@ ) # Dependencies -set(REQUIRED_QT_VERSION 5.6.0) +set(REQUIRED_QT_VERSION 5.7.0) # Required Qt5 components to build this framework find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Core DBus Network) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bluez-qt-5.36.0/autotests/CMakeLists.txt new/bluez-qt-5.37.0/autotests/CMakeLists.txt --- old/bluez-qt-5.36.0/autotests/CMakeLists.txt 2017-06-30 12:14:39.000000000 +0200 +++ new/bluez-qt-5.37.0/autotests/CMakeLists.txt 2017-08-06 18:24:35.000000000 +0200 @@ -16,8 +16,9 @@ foreach(_testname ${ARGN}) add_executable(${_testname} ${_testname}.cpp ${bluezqt_autotests_SRCS}) target_link_libraries(${_testname} Qt5::DBus Qt5::Test KF5BluezQt) - add_test(bluezqt-${_testname} ${_testname}) + add_test(NAME bluezqt-${_testname} COMMAND ${_testname}) ecm_mark_as_test(${_testname}) + set_tests_properties(bluezqt-${_testname} PROPERTIES RUN_SERIAL TRUE) endforeach(_testname) endmacro() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bluez-qt-5.36.0/autotests/autotests.cpp new/bluez-qt-5.37.0/autotests/autotests.cpp --- old/bluez-qt-5.36.0/autotests/autotests.cpp 2017-06-30 12:14:39.000000000 +0200 +++ new/bluez-qt-5.37.0/autotests/autotests.cpp 2017-08-06 18:24:35.000000000 +0200 @@ -49,6 +49,8 @@ void exec(); + bool foundFakeBluez() const { return !m_fakebluezPath.isEmpty(); } + private Q_SLOTS: void processError(QProcess::ProcessError error); void processFinished(int code, QProcess::ExitStatus status); @@ -60,8 +62,11 @@ StartJob::StartJob() : QObject(nullptr) - , m_fakebluezPath(QFINDTESTDATA("fakebluez/fakebluez")) + , m_fakebluezPath(QCoreApplication::applicationDirPath() + QStringLiteral("/fakebluez")) { + // Fallback for old layout, can be removed after August 2017 + if (!QFile::exists(m_fakebluezPath)) + m_fakebluezPath = QFINDTESTDATA("fakebluez/fakebluez"); } void StartJob::exec() @@ -124,6 +129,7 @@ } StartJob job; + QVERIFY(job.foundFakeBluez()); job.exec(); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bluez-qt-5.36.0/autotests/managertest.cpp new/bluez-qt-5.37.0/autotests/managertest.cpp --- old/bluez-qt-5.36.0/autotests/managertest.cpp 2017-06-30 12:14:39.000000000 +0200 +++ new/bluez-qt-5.37.0/autotests/managertest.cpp 2017-08-06 18:24:35.000000000 +0200 @@ -39,6 +39,7 @@ void ManagerTest::initTestCase() { bluezqt_initFakeBluezTestRun(); + FakeBluez::start(); // to check that it works Autotests::registerMetatypes(); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bluez-qt-5.36.0/autotests/obexmanagertest.cpp new/bluez-qt-5.37.0/autotests/obexmanagertest.cpp --- old/bluez-qt-5.36.0/autotests/obexmanagertest.cpp 2017-06-30 12:14:39.000000000 +0200 +++ new/bluez-qt-5.37.0/autotests/obexmanagertest.cpp 2017-08-06 18:24:35.000000000 +0200 @@ -36,6 +36,7 @@ void ObexManagerTest::initTestCase() { bluezqt_initFakeBluezTestRun(); + FakeBluez::start(); // to check that it works } void ObexManagerTest::cleanup()
