Hello community, here is the log from the commit of package threadweaver for openSUSE:Factory checked in at 2017-01-31 12:13:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/threadweaver (Old) and /work/SRC/openSUSE:Factory/.threadweaver.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "threadweaver" Changes: -------- --- /work/SRC/openSUSE:Factory/threadweaver/threadweaver.changes 2016-12-17 11:16:07.978525032 +0100 +++ /work/SRC/openSUSE:Factory/.threadweaver.new/threadweaver.changes 2017-02-03 20:03:32.171631533 +0100 @@ -1,0 +2,7 @@ +Mon Jan 9 00:01:09 UTC 2017 - [email protected] + +- Update to 5.30.0 + * For more details please see: + https://www.kde.org/announcements/kde-frameworks-5.30.0.php + +------------------------------------------------------------------- Old: ---- threadweaver-5.29.0.tar.xz New: ---- threadweaver-5.30.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ threadweaver.spec ++++++ --- /var/tmp/diff_new_pack.aTe7sz/_old 2017-02-03 20:03:33.087502620 +0100 +++ /var/tmp/diff_new_pack.aTe7sz/_new 2017-02-03 20:03:33.091502056 +0100 @@ -1,7 +1,7 @@ # # spec file for package threadweaver # -# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,11 +17,11 @@ %define lname libKF5ThreadWeaver5 -%define _tar_path 5.29 +%define _tar_path 5.30 Name: threadweaver -Version: 5.29.0 +Version: 5.30.0 Release: 0 -BuildRequires: cmake >= 2.8.12 +BuildRequires: cmake >= 3.0 BuildRequires: extra-cmake-modules >= %{_tar_path} BuildRequires: fdupes BuildRequires: kf5-filesystem ++++++ threadweaver-5.29.0.tar.xz -> threadweaver-5.30.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/threadweaver-5.29.0/CMakeLists.txt new/threadweaver-5.30.0/CMakeLists.txt --- old/threadweaver-5.29.0/CMakeLists.txt 2016-12-03 11:44:02.000000000 +0100 +++ new/threadweaver-5.30.0/CMakeLists.txt 2017-01-08 16:53:09.000000000 +0100 @@ -1,9 +1,10 @@ -cmake_minimum_required(VERSION 2.8.12) +cmake_minimum_required(VERSION 3.0) -project(ThreadWeaver) +set(KF5_VERSION "5.30.0") # handled by release scripts +project(ThreadWeaver VERSION ${KF5_VERSION}) include(FeatureSummary) -find_package(ECM 5.29.0 NO_MODULE) +find_package(ECM 5.30.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) @@ -28,10 +29,7 @@ ADD_DEFINITIONS(-std=c++11) ENDIF() -# -- Maintained by scripty -set(KF5_VERSION "5.29.0") # handled by release scripts - -ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX THREADWEAVER +ecm_setup_version(PROJECT VARIABLE_PREFIX THREADWEAVER VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/threadweaver_version.h" PACKAGE_VERSION_FILE "${CMAKE_CURRENT_BINARY_DIR}/KF5ThreadWeaverConfigVersion.cmake" SOVERSION 5) @@ -45,9 +43,9 @@ # create a Config.cmake and a ConfigVersion.cmake file and install them set(CMAKECONFIG_INSTALL_DIR "${KDE_INSTALL_CMAKEPACKAGEDIR}/KF5ThreadWeaver") -include(ECMPackageConfigHelpers) +include(CMakePackageConfigHelpers) -ecm_configure_package_config_file("${CMAKE_CURRENT_SOURCE_DIR}/KF5ThreadWeaverConfig.cmake.in" +configure_package_config_file("${CMAKE_CURRENT_SOURCE_DIR}/KF5ThreadWeaverConfig.cmake.in" "${CMAKE_CURRENT_BINARY_DIR}/KF5ThreadWeaverConfig.cmake" INSTALL_DESTINATION ${CMAKECONFIG_INSTALL_DIR} ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/threadweaver-5.29.0/KF5ThreadWeaverConfig.cmake.in new/threadweaver-5.30.0/KF5ThreadWeaverConfig.cmake.in --- old/threadweaver-5.29.0/KF5ThreadWeaverConfig.cmake.in 2016-12-03 11:44:02.000000000 +0100 +++ new/threadweaver-5.30.0/KF5ThreadWeaverConfig.cmake.in 2017-01-08 16:53:09.000000000 +0100 @@ -1,5 +1,6 @@ @PACKAGE_INIT@ +include(CMakeFindDependencyMacro) find_dependency(Qt5Core @REQUIRED_QT_VERSION@) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/threadweaver-5.29.0/examples/HelloWorld/CMakeLists.txt new/threadweaver-5.30.0/examples/HelloWorld/CMakeLists.txt --- old/threadweaver-5.29.0/examples/HelloWorld/CMakeLists.txt 2016-12-03 11:44:02.000000000 +0100 +++ new/threadweaver-5.30.0/examples/HelloWorld/CMakeLists.txt 2017-01-08 16:53:09.000000000 +0100 @@ -2,7 +2,7 @@ # http://www.cmake.org/cmake/help/documentation.html # http://techbase.kde.org/Development/Tutorials/CMake ##@@snippet_begin(adding_tw_1) -cmake_minimum_required(VERSION 2.8.12) +cmake_minimum_required(VERSION 3.0) find_package(ECM 1.1.0 REQUIRED NO_MODULE) ##@@snippet_end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/threadweaver-5.29.0/metainfo.yaml new/threadweaver-5.30.0/metainfo.yaml --- old/threadweaver-5.29.0/metainfo.yaml 2016-12-03 11:44:02.000000000 +0100 +++ new/threadweaver-5.30.0/metainfo.yaml 2017-01-08 16:53:09.000000000 +0100 @@ -4,6 +4,7 @@ type: functional platforms: - name: Linux + - name: FreeBSD - name: Windows - name: MacOSX - name: Android diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/threadweaver-5.29.0/src/queueapi.h new/threadweaver-5.30.0/src/queueapi.h --- old/threadweaver-5.29.0/src/queueapi.h 2016-12-03 11:44:02.000000000 +0100 +++ new/threadweaver-5.30.0/src/queueapi.h 2017-01-08 16:53:09.000000000 +0100 @@ -45,7 +45,7 @@ explicit QueueAPI(ThreadWeaver::Private::QueueSignals_Private* d, QObject *parent = 0); virtual void shutDown_p() = 0; - virtual const State *state() const = 0; + const State *state() const Q_DECL_OVERRIDE = 0; virtual State *state() = 0; virtual void setMaximumNumberOfThreads_p(int cap) = 0; virtual int maximumNumberOfThreads_p() const = 0;
