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-12-12 17:38:26 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old) and /work/SRC/openSUSE:Factory/.kitemmodels.new.1835 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kitemmodels" Mon Dec 12 17:38:26 2022 rev:110 rq:1042134 version:5.101.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes 2022-11-15 13:19:39.800305019 +0100 +++ /work/SRC/openSUSE:Factory/.kitemmodels.new.1835/kitemmodels.changes 2022-12-12 17:40:11.861330783 +0100 @@ -1,0 +2,13 @@ +Tue Dec 6 20:10:47 UTC 2022 - Christophe Marin <christo...@krop.fr> + +- Update to 5.101.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.101.0 +- Changes since 5.100.0: + * Also remove the custom target in BUILD_TESTING + * Make use of ecm_add_qml_module() + * Allow Windows/Qt6 and FreeBSD/Qt6 to fail too + * Allow Qt6 tests to fail + +------------------------------------------------------------------- Old: ---- kitemmodels-5.100.0.tar.xz kitemmodels-5.100.0.tar.xz.sig New: ---- kitemmodels-5.101.0.tar.xz kitemmodels-5.101.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kitemmodels.spec ++++++ --- /var/tmp/diff_new_pack.LX5ccX/_old 2022-12-12 17:40:12.257332782 +0100 +++ /var/tmp/diff_new_pack.LX5ccX/_new 2022-12-12 17:40:12.261332802 +0100 @@ -17,7 +17,7 @@ %define lname libKF5ItemModels5 -%define _tar_path 5.100 +%define _tar_path 5.101 # 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,11 +26,10 @@ # Only needed for the package signature condition %bcond_without released Name: kitemmodels -Version: 5.100.0 +Version: 5.101.0 Release: 0 Summary: Set of item models extending the Qt model-view framework License: LGPL-2.1-or-later -Group: System/GUI/KDE URL: https://www.kde.org Source: %{name}-%{version}.tar.xz %if %{with released} @@ -55,7 +54,6 @@ %package -n %{lname} Summary: Set of item models extending the Qt model-view framework -Group: System/GUI/KDE %requires_ge libQt5Core5 %description -n %{lname} @@ -63,7 +61,6 @@ %package imports Summary: Set of item models extending the Qt model-view framework -Group: System/GUI/KDE Requires: %{lname} = %{version} %description imports @@ -72,7 +69,6 @@ %package devel Summary: Set of item models extending the Qt model-view framework -Group: Development/Libraries/KDE Requires: %{lname} = %{version} Requires: extra-cmake-modules Requires: cmake(Qt5Core) >= 5.15.0 @@ -84,7 +80,6 @@ %if %{with python} %package -n python-%{name} Summary: Set of item models extending the Qt model-view framework -Group: Development/Libraries/KDE Requires: %{lname} = %{version} %requires_python3_sip_api ++++++ kitemmodels-5.100.0.tar.xz -> kitemmodels-5.101.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kitemmodels-5.100.0/.kde-ci.yml new/kitemmodels-5.101.0/.kde-ci.yml --- old/kitemmodels-5.100.0/.kde-ci.yml 2022-11-05 13:28:54.000000000 +0100 +++ new/kitemmodels-5.101.0/.kde-ci.yml 2022-12-03 10:48:25.000000000 +0100 @@ -5,4 +5,4 @@ Options: test-before-installing: True - require-passing-tests-on: [ 'Linux', 'FreeBSD', 'Windows' ] + require-passing-tests-on: [ 'Linux/Qt5', 'FreeBSD/Qt5', 'Windows/Qt5' ] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kitemmodels-5.100.0/CMakeLists.txt new/kitemmodels-5.101.0/CMakeLists.txt --- old/kitemmodels-5.100.0/CMakeLists.txt 2022-11-05 13:28:54.000000000 +0100 +++ new/kitemmodels-5.101.0/CMakeLists.txt 2022-12-03 10:48:25.000000000 +0100 @@ -1,10 +1,10 @@ cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "5.100.0") # handled by release scripts +set(KF_VERSION "5.101.0") # handled by release scripts project(KItemModels VERSION ${KF_VERSION}) include(FeatureSummary) -find_package(ECM 5.100.0 NO_MODULE) +find_package(ECM 5.101.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) @@ -23,6 +23,7 @@ include(ECMDeprecationSettings) include(ECMAddQch) include(CMakePackageConfigHelpers) +include(ECMQmlModule) set(REQUIRED_QT_VERSION 5.15.2) find_package(Qt${QT_MAJOR_VERSION}Core ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kitemmodels-5.100.0/src/qml/CMakeLists.txt new/kitemmodels-5.101.0/src/qml/CMakeLists.txt --- old/kitemmodels-5.100.0/src/qml/CMakeLists.txt 2022-11-05 13:28:54.000000000 +0100 +++ new/kitemmodels-5.101.0/src/qml/CMakeLists.txt 2022-12-03 10:48:25.000000000 +0100 @@ -1,4 +1,4 @@ -add_library(itemmodelsplugin) +ecm_add_qml_module(itemmodelsplugin URI "org.kde.kitemmodels" CLASSNAME Plugin) target_sources(itemmodelsplugin PRIVATE kdescendantsproxymodel_qml.cpp @@ -16,12 +16,6 @@ ) endif() -if(NOT BUILD_SHARED_LIBS) - target_compile_definitions(itemmodelsplugin PRIVATE -DQT_PLUGIN -DQT_STATICPLUGIN=1) - set_target_properties(itemmodelsplugin PROPERTIES AUTOMOC_MOC_OPTIONS -Muri=org.kde.kitemmodels) - target_sources(itemmodelsplugin PRIVATE kitemmodelsqml.qrc) -endif() - ecm_qt_declare_logging_category(itemmodelsplugin HEADER kitemmodels_debug.h IDENTIFIER KITEMMODELS_LOG @@ -44,17 +38,4 @@ KF5::ItemModels ) -install(TARGETS itemmodelsplugin DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/kitemmodels) -install(FILES qmldir DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/kitemmodels) - -# Faux install into the build dir for unit tests - -if(BUILD_TESTING) - add_custom_target(copy ALL DEPENDS itemmodelsplugin) - add_custom_command(TARGET copy POST_BUILD - COMMAND ${CMAKE_COMMAND} -E - copy ${CMAKE_CURRENT_SOURCE_DIR}/qmldir ${CMAKE_BINARY_DIR}/bin/org/kde/kitemmodels/qmldir) - add_custom_command(TARGET copy POST_BUILD - COMMAND ${CMAKE_COMMAND} -E - copy $<TARGET_FILE:itemmodelsplugin> ${CMAKE_BINARY_DIR}/bin/org/kde/kitemmodels) -endif() +ecm_finalize_qml_module(itemmodelsplugin DESTINATION ${KDE_INSTALL_QMLDIR}) \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kitemmodels-5.100.0/src/qml/kitemmodelsqml.qrc new/kitemmodels-5.101.0/src/qml/kitemmodelsqml.qrc --- old/kitemmodels-5.100.0/src/qml/kitemmodelsqml.qrc 2022-11-05 13:28:54.000000000 +0100 +++ new/kitemmodels-5.101.0/src/qml/kitemmodelsqml.qrc 1970-01-01 01:00:00.000000000 +0100 @@ -1,5 +0,0 @@ -<RCC> - <qresource prefix="/org/kde/kitemmodels/"> - <file>qmldir</file> - </qresource> -</RCC> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kitemmodels-5.100.0/src/qml/qmldir new/kitemmodels-5.101.0/src/qml/qmldir --- old/kitemmodels-5.100.0/src/qml/qmldir 2022-11-05 13:28:54.000000000 +0100 +++ new/kitemmodels-5.101.0/src/qml/qmldir 1970-01-01 01:00:00.000000000 +0100 @@ -1,3 +0,0 @@ -module org.kde.kitemmodels -plugin itemmodelsplugin -classname Plugin