Hello community, here is the log from the commit of package threadweaver for openSUSE:Factory checked in at 2019-10-14 13:41:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/threadweaver (Old) and /work/SRC/openSUSE:Factory/.threadweaver.new.2352 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "threadweaver" Mon Oct 14 13:41:04 2019 rev:71 rq:738076 version:5.63.0 Changes: -------- --- /work/SRC/openSUSE:Factory/threadweaver/threadweaver.changes 2019-09-23 12:28:18.637699775 +0200 +++ /work/SRC/openSUSE:Factory/.threadweaver.new.2352/threadweaver.changes 2019-10-14 13:41:05.793460881 +0200 @@ -1,0 +2,9 @@ +Sun Oct 6 13:27:11 UTC 2019 - Christophe Giboudeaux <[email protected]> + +- Update to 5.63.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/kde-frameworks-5.63.0.php +- No code change since 5.62.0 + +------------------------------------------------------------------- Old: ---- threadweaver-5.62.0.tar.xz threadweaver-5.62.0.tar.xz.sig New: ---- threadweaver-5.63.0.tar.xz threadweaver-5.63.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ threadweaver.spec ++++++ --- /var/tmp/diff_new_pack.NGsNAp/_old 2019-10-14 13:41:06.465459130 +0200 +++ /var/tmp/diff_new_pack.NGsNAp/_new 2019-10-14 13:41:06.469459119 +0200 @@ -17,7 +17,7 @@ %define lname libKF5ThreadWeaver5 -%define _tar_path 5.62 +%define _tar_path 5.63 # Full KF5 version (e.g. 5.33.0) %{!?_kf5_version: %global _kf5_version %{version}} # Last major and minor KF5 version (e.g. 5.33) @@ -25,7 +25,7 @@ # Only needed for the package signature condition %bcond_without lang Name: threadweaver -Version: 5.62.0 +Version: 5.63.0 Release: 0 Summary: KDE Helper for multithreaded programming License: LGPL-2.1-or-later @@ -41,11 +41,11 @@ BuildRequires: extra-cmake-modules >= %{_kf5_bugfix_version} BuildRequires: fdupes BuildRequires: kf5-filesystem -BuildRequires: cmake(Qt5Core) >= 5.6.0 -BuildRequires: cmake(Qt5Network) >= 5.6.0 -BuildRequires: cmake(Qt5Test) >= 5.6.0 -BuildRequires: cmake(Qt5Widgets) >= 5.6.0 -BuildRequires: cmake(Qt5Xml) >= 5.6.0 +BuildRequires: cmake(Qt5Core) >= 5.11.0 +BuildRequires: cmake(Qt5Network) >= 5.11.0 +BuildRequires: cmake(Qt5Test) >= 5.11.0 +BuildRequires: cmake(Qt5Widgets) >= 5.11.0 +BuildRequires: cmake(Qt5Xml) >= 5.11.0 %description ThreadWeaver is a helper for multithreaded programming. It uses a job-based @@ -73,7 +73,7 @@ Group: Development/Libraries/KDE Requires: %{lname} = %{version} Requires: extra-cmake-modules -Requires: cmake(Qt5Core) >= 5.6.0 +Requires: cmake(Qt5Core) >= 5.11.0 %description devel ThreadWeaver is a helper for multithreaded programming. It uses a job-based ++++++ threadweaver-5.62.0.tar.xz -> threadweaver-5.63.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/threadweaver-5.62.0/CMakeLists.txt new/threadweaver-5.63.0/CMakeLists.txt --- old/threadweaver-5.62.0/CMakeLists.txt 2019-09-07 14:39:49.000000000 +0200 +++ new/threadweaver-5.63.0/CMakeLists.txt 2019-10-06 11:39:08.000000000 +0200 @@ -1,10 +1,10 @@ cmake_minimum_required(VERSION 3.5) -set(KF5_VERSION "5.62.0") # handled by release scripts +set(KF5_VERSION "5.63.0") # handled by release scripts project(ThreadWeaver VERSION ${KF5_VERSION}) include(FeatureSummary) -find_package(ECM 5.62.0 NO_MODULE) +find_package(ECM 5.63.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.62.0/src/CMakeLists.txt new/threadweaver-5.63.0/src/CMakeLists.txt --- old/threadweaver-5.62.0/src/CMakeLists.txt 2019-09-07 14:39:49.000000000 +0200 +++ new/threadweaver-5.63.0/src/CMakeLists.txt 2019-10-06 11:39:08.000000000 +0200 @@ -38,7 +38,8 @@ generate_export_header(KF5ThreadWeaver BASE_NAME ThreadWeaver) add_library(KF5::ThreadWeaver ALIAS KF5ThreadWeaver) target_link_libraries(KF5ThreadWeaver PUBLIC Qt5::Core) -target_include_directories(KF5ThreadWeaver PUBLIC "$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/..;${CMAKE_CURRENT_BINARY_DIR}>") +set(threadweaver_BUILD_INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/.. ${CMAKE_CURRENT_BINARY_DIR}) +target_include_directories(KF5ThreadWeaver PUBLIC "$<BUILD_INTERFACE:${threadweaver_BUILD_INCLUDE_DIRS}>") target_include_directories(KF5ThreadWeaver INTERFACE "$<INSTALL_INTERFACE:${KDE_INSTALL_INCLUDEDIR_KF5}/ThreadWeaver>") #FIXME: make this PUBLIC, so that it applies to anything that links against kde_target_enable_exceptions(KF5ThreadWeaver PRIVATE) @@ -111,6 +112,8 @@ MD_MAINPAGE "${CMAKE_SOURCE_DIR}/README.md" LINK_QCHS Qt5Core_QCH + INCLUDE_DIRS + ${threadweaver_BUILD_INCLUDE_DIRS} BLANK_MACROS THREADWEAVER_EXPORT THREADWEAVER_DEPRECATED
