Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kitemmodels for openSUSE:Factory checked in at 2022-10-11 18:00:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old) and /work/SRC/openSUSE:Factory/.kitemmodels.new.2275 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kitemmodels" Tue Oct 11 18:00:05 2022 rev:108 rq:1009006 version:5.99.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes 2022-09-13 15:10:25.680818097 +0200 +++ /work/SRC/openSUSE:Factory/.kitemmodels.new.2275/kitemmodels.changes 2022-10-11 18:02:03.605746327 +0200 @@ -1,0 +2,11 @@ +Sat Oct 1 15:55:53 UTC 2022 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 5.99.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.99.0 +- Changes since 5.98.0: + * Add Qt6 windows CI support + * Remove obsolete classes from the Qt 6 build + +------------------------------------------------------------------- Old: ---- kitemmodels-5.98.0.tar.xz kitemmodels-5.98.0.tar.xz.sig New: ---- kitemmodels-5.99.0.tar.xz kitemmodels-5.99.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kitemmodels.spec ++++++ --- /var/tmp/diff_new_pack.Ne2IL5/_old 2022-10-11 18:02:04.109747142 +0200 +++ /var/tmp/diff_new_pack.Ne2IL5/_new 2022-10-11 18:02:04.113747148 +0200 @@ -17,7 +17,7 @@ %define lname libKF5ItemModels5 -%define _tar_path 5.98 +%define _tar_path 5.99 # Full KF5 version (e.g. 5.33.0) %{!?_kf5_version: %global _kf5_version %{version}} # Last major and minor KF5 version (e.g. 5.33) @@ -26,7 +26,7 @@ # Only needed for the package signature condition %bcond_without released Name: kitemmodels -Version: 5.98.0 +Version: 5.99.0 Release: 0 Summary: Set of item models extending the Qt model-view framework License: LGPL-2.1-or-later ++++++ kitemmodels-5.98.0.tar.xz -> kitemmodels-5.99.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kitemmodels-5.98.0/.gitlab-ci.yml new/kitemmodels-5.99.0/.gitlab-ci.yml --- old/kitemmodels-5.98.0/.gitlab-ci.yml 2022-09-05 11:27:51.000000000 +0200 +++ new/kitemmodels-5.99.0/.gitlab-ci.yml 2022-10-01 15:18:15.000000000 +0200 @@ -9,3 +9,4 @@ - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/android-qt6.yml - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/windows.yml - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/freebsd-qt6.yml + - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/windows-qt6.yml diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kitemmodels-5.98.0/CMakeLists.txt new/kitemmodels-5.99.0/CMakeLists.txt --- old/kitemmodels-5.98.0/CMakeLists.txt 2022-09-05 11:27:51.000000000 +0200 +++ new/kitemmodels-5.99.0/CMakeLists.txt 2022-10-01 15:18:15.000000000 +0200 @@ -1,10 +1,10 @@ cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "5.98.0") # handled by release scripts +set(KF_VERSION "5.99.0") # handled by release scripts project(KItemModels VERSION ${KF_VERSION}) include(FeatureSummary) -find_package(ECM 5.98.0 NO_MODULE) +find_package(ECM 5.99.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/kitemmodels-5.98.0/src/core/CMakeLists.txt new/kitemmodels-5.99.0/src/core/CMakeLists.txt --- old/kitemmodels-5.98.0/src/core/CMakeLists.txt 2022-09-05 11:27:51.000000000 +0200 +++ new/kitemmodels-5.99.0/src/core/CMakeLists.txt 2022-10-01 15:18:15.000000000 +0200 @@ -15,8 +15,6 @@ kcheckableproxymodel.h kcolumnheadersmodel.cpp kcolumnheadersmodel.h - kconcatenaterowsproxymodel.cpp - kconcatenaterowsproxymodel.h kdescendantsproxymodel.cpp kdescendantsproxymodel.h kextracolumnsproxymodel.cpp @@ -29,12 +27,18 @@ knumbermodel.h krearrangecolumnsproxymodel.cpp krearrangecolumnsproxymodel.h - krecursivefilterproxymodel.cpp - krecursivefilterproxymodel.h kselectionproxymodel.cpp kselectionproxymodel.h kvoidpointerfactory_p.h ) +if (QT_MAJOR_VERSION EQUAL "5") + target_sources(KF5ItemModels PRIVATE + kconcatenaterowsproxymodel.cpp + kconcatenaterowsproxymodel.h + krecursivefilterproxymodel.cpp + krecursivefilterproxymodel.h + ) +endif() ecm_qt_declare_logging_category(KF5ItemModels HEADER kitemmodels_debug.h @@ -61,12 +65,10 @@ ecm_generate_headers(KItemModels_HEADERS HEADER_NAMES KBreadcrumbSelectionModel - KConcatenateRowsProxyModel KCheckableProxyModel KExtraColumnsProxyModel KLinkItemSelectionModel KRearrangeColumnsProxyModel - KRecursiveFilterProxyModel KDescendantsProxyModel KModelIndexProxyMapper KSelectionProxyModel @@ -74,12 +76,20 @@ KColumnHeadersModel REQUIRED_HEADERS KItemModels_HEADERS ) +if (QT_MAJOR_VERSION EQUAL "5") + ecm_generate_headers(KItemModels_Legacy_HEADERS + HEADER_NAMES + KConcatenateRowsProxyModel + KRecursiveFilterProxyModel + REQUIRED_HEADERS KItemModels_Legacy_HEADERS + ) +endif() -install(TARGETS KF5ItemModels EXPORT KF5ItemModelsTargets ${KF5_INSTALL_TARGETS_DEFAULT_ARGS}) +install(TARGETS KF5ItemModels EXPORT KF5ItemModelsTargets ${KF_INSTALL_TARGETS_DEFAULT_ARGS}) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_export.h - ${KItemModels_HEADERS} + ${KItemModels_HEADERS} ${KItemModels_Legacy_HEADERS} DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF}/KItemModels COMPONENT Devel ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kitemmodels-5.98.0/src/qml/CMakeLists.txt new/kitemmodels-5.99.0/src/qml/CMakeLists.txt --- old/kitemmodels-5.98.0/src/qml/CMakeLists.txt 2022-09-05 11:27:51.000000000 +0200 +++ new/kitemmodels-5.99.0/src/qml/CMakeLists.txt 2022-10-01 15:18:15.000000000 +0200 @@ -1,8 +1,6 @@ add_library(itemmodelsplugin) target_sources(itemmodelsplugin PRIVATE - kconcatenaterowsproxymodel_qml.cpp - kconcatenaterowsproxymodel_qml.h kdescendantsproxymodel_qml.cpp kdescendantsproxymodel_qml.h ksortfilterproxymodel.cpp @@ -11,6 +9,12 @@ plugin.h qmldeprecated.h ) +if (QT_MAJOR_VERSION EQUAL "5") + target_sources(itemmodelsplugin PRIVATE + kconcatenaterowsproxymodel_qml.cpp + kconcatenaterowsproxymodel_qml.h + ) +endif() if(NOT BUILD_SHARED_LIBS) target_compile_definitions(itemmodelsplugin PRIVATE -DQT_PLUGIN -DQT_STATICPLUGIN=1)