Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2021-07-15 23:59:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and      /work/SRC/openSUSE:Factory/.kitemmodels.new.2625 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kitemmodels"

Thu Jul 15 23:59:47 2021 rev:93 rq:905508 version:5.84.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2021-06-16 
20:35:38.007201327 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.2625/kitemmodels.changes        
2021-07-16 00:01:34.665002806 +0200
@@ -1,0 +2,10 @@
+Sun Jul  4 07:45:35 UTC 2021 - Christophe Giboudeaux <[email protected]>
+
+- Update to 5.84.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.84.0
+- No code change since 5.83.0
+- Only install the license files once
+
+-------------------------------------------------------------------

Old:
----
  kitemmodels-5.83.0.tar.xz
  kitemmodels-5.83.0.tar.xz.sig

New:
----
  kitemmodels-5.84.0.tar.xz
  kitemmodels-5.84.0.tar.xz.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kitemmodels.spec ++++++
--- /var/tmp/diff_new_pack.ZST1TZ/_old  2021-07-16 00:01:35.136998878 +0200
+++ /var/tmp/diff_new_pack.ZST1TZ/_new  2021-07-16 00:01:35.140998844 +0200
@@ -17,7 +17,7 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.83
+%define _tar_path 5.84
 # 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 lang
 Name:           kitemmodels
-Version:        5.83.0
+Version:        5.84.0
 Release:        0
 Summary:        Set of item models extending the Qt model-view framework
 License:        LGPL-2.1-or-later
@@ -115,14 +115,12 @@
 %{_kf5_libdir}/libKF5ItemModels.so.*
 
 %files devel
-%license LICENSES/*
 %{_kf5_includedir}/
 %{_kf5_libdir}/cmake/KF5ItemModels/
 %{_kf5_libdir}/libKF5ItemModels.so
 %{_kf5_mkspecsdir}/qt_KItemModels.pri
 
 %files imports
-%license LICENSES/*
 %dir %{_kf5_qmldir}/org
 %dir %{_kf5_qmldir}/org/kde
 %dir %{_kf5_qmldir}/org/kde/kitemmodels
@@ -131,7 +129,6 @@
 
 %if %{with python}
 %files -n python-%{name}
-%license LICENSES/*
 %{python3_sitearch}/PyKF5
 %{_datadir}/sip/PyKF5/
 %endif


++++++ kitemmodels-5.83.0.tar.xz -> kitemmodels-5.84.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.83.0/CMakeLists.txt 
new/kitemmodels-5.84.0/CMakeLists.txt
--- old/kitemmodels-5.83.0/CMakeLists.txt       2021-06-05 10:56:08.000000000 
+0200
+++ new/kitemmodels-5.84.0/CMakeLists.txt       2021-06-19 17:58:56.000000000 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.83.0") # handled by release scripts
+set(KF_VERSION "5.84.0") # handled by release scripts
 project(KItemModels VERSION ${KF_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.83.0  NO_MODULE)
+find_package(ECM 5.84.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.83.0/autotests/bihash/CMakeLists.txt 
new/kitemmodels-5.84.0/autotests/bihash/CMakeLists.txt
--- old/kitemmodels-5.83.0/autotests/bihash/CMakeLists.txt      2021-06-05 
10:56:08.000000000 +0200
+++ new/kitemmodels-5.84.0/autotests/bihash/CMakeLists.txt      2021-06-19 
17:58:56.000000000 +0200
@@ -2,21 +2,13 @@
 
 include_directories("../../src/core") # for kbihash_p.h
 
-set(functionalitytest_srcs
-  functionalitytest.cpp
-)
-
-add_executable(bihash_functionalitytest ${functionalitytest_srcs})
+add_executable(bihash_functionalitytest functionalitytest.cpp)
 
 target_link_libraries(bihash_functionalitytest
   Qt5::Core
 )
 
-set(benchmarks_srcs
-  benchmarks.cpp
-)
-
-add_executable(bihash_benchmarks_exec ${benchmarks_srcs} )
+add_executable(bihash_benchmarks_exec benchmarks.cpp)
 
 target_link_libraries(bihash_benchmarks_exec
   Qt5::Widgets
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.83.0/autotests/proxymodeltestsuite/CMakeLists.txt 
new/kitemmodels-5.84.0/autotests/proxymodeltestsuite/CMakeLists.txt
--- old/kitemmodels-5.83.0/autotests/proxymodeltestsuite/CMakeLists.txt 
2021-06-05 10:56:08.000000000 +0200
+++ new/kitemmodels-5.84.0/autotests/proxymodeltestsuite/CMakeLists.txt 
2021-06-19 17:58:56.000000000 +0200
@@ -1,4 +1,7 @@
-set(proxymodeltestsuite_SRCS
+add_library(proxymodeltestsuite SHARED)
+add_library(KF5::proxymodeltestsuite ALIAS proxymodeltestsuite)
+
+target_sources(proxymodeltestsuite PRIVATE
     dynamictreemodel.cpp
     dynamictreewidget.cpp
     modelcommander.cpp
@@ -9,15 +12,8 @@
     modeldumper.cpp
     modeleventlogger.cpp
     eventloggerregister.cpp
-)
-
-set(eventlogger_RCSS
-  eventlogger.qrc
-)
 
-qt_add_resources(
-  eventlogger_RCS_SRCS
-  ${eventlogger_RCSS}
+    eventlogger.qrc
 )
 
 if(FALSE)
@@ -38,21 +34,15 @@
 
 if (Grantlee_FOUND)
 
-  include_directories(${Grantlee_INCLUDE_DIRS})
+  target_include_directories(proxymodeltestsuite ${Grantlee_INCLUDE_DIRS})
 
   configure_file(grantlee_paths.h.cmake ${PROJECT_BINARY_DIR}/grantlee_paths.h)
 
-  add_definitions("-DGrantlee_FOUND")
+  target_compile_definitions(proxymodeltestsuite "-DGrantlee_FOUND")
 
 endif()
 
-
-add_library(proxymodeltestsuite SHARED
-  ${proxymodeltestsuite_SRCS}
-  ${eventlogger_RCS_SRCS}
-)
 generate_export_header(proxymodeltestsuite)
-add_library(KF5::proxymodeltestsuite ALIAS proxymodeltestsuite)
 
 target_link_libraries(proxymodeltestsuite
    Qt5::Widgets
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.83.0/src/core/CMakeLists.txt 
new/kitemmodels-5.84.0/src/core/CMakeLists.txt
--- old/kitemmodels-5.83.0/src/core/CMakeLists.txt      2021-06-05 
10:56:08.000000000 +0200
+++ new/kitemmodels-5.84.0/src/core/CMakeLists.txt      2021-06-19 
17:58:56.000000000 +0200
@@ -1,5 +1,13 @@
+add_library(KF5ItemModels)
+add_library(KF5::ItemModels ALIAS KF5ItemModels)
+
+set_target_properties(KF5ItemModels PROPERTIES
+    VERSION     ${KITEMMODELS_VERSION}
+    SOVERSION   ${KITEMMODELS_SOVERSION}
+    EXPORT_NAME ItemModels
+)
 
-set(kitemmodels_SRCS
+target_sources(KF5ItemModels PRIVATE
   kbreadcrumbselectionmodel.cpp
   kcheckableproxymodel.cpp
   kconcatenaterowsproxymodel.cpp
@@ -14,7 +22,7 @@
   kcolumnheadersmodel.cpp
 )
 
-ecm_qt_declare_logging_category(kitemmodels_SRCS
+ecm_qt_declare_logging_category(KF5ItemModels
     HEADER kitemmodels_debug.h
     IDENTIFIER KITEMMODELS_LOG
     CATEGORY_NAME kf.itemmodels.core
@@ -23,8 +31,6 @@
     EXPORT KITEMMODELS
 )
 
-add_library(KF5ItemModels ${kitemmodels_SRCS})
-add_library(KF5::ItemModels ALIAS KF5ItemModels)
 ecm_generate_export_header(KF5ItemModels
     BASE_NAME KItemModels
     GROUP_BASE_NAME KF
@@ -38,11 +44,6 @@
 
 target_link_libraries(KF5ItemModels PUBLIC Qt5::Core)
 
-set_target_properties(KF5ItemModels PROPERTIES VERSION   ${KITEMMODELS_VERSION}
-                                               SOVERSION 
${KITEMMODELS_SOVERSION}
-                                               EXPORT_NAME ItemModels
-)
-
 ecm_generate_headers(KItemModels_HEADERS
   HEADER_NAMES
   KBreadcrumbSelectionModel
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.83.0/src/qml/CMakeLists.txt 
new/kitemmodels-5.84.0/src/qml/CMakeLists.txt
--- old/kitemmodels-5.83.0/src/qml/CMakeLists.txt       2021-06-05 
10:56:08.000000000 +0200
+++ new/kitemmodels-5.84.0/src/qml/CMakeLists.txt       2021-06-19 
17:58:56.000000000 +0200
@@ -1,11 +1,13 @@
-set(corebindings_SRCS
+add_library(itemmodelsplugin SHARED)
+
+target_sources(itemmodelsplugin PRIVATE
     plugin.cpp
     kconcatenaterowsproxymodel_qml.cpp
     kdescendantsproxymodel_qml.cpp
     ksortfilterproxymodel.cpp
 )
 
-ecm_qt_declare_logging_category(corebindings_SRCS
+ecm_qt_declare_logging_category(itemmodelsplugin
     HEADER kitemmodels_debug.h
     IDENTIFIER KITEMMODELS_LOG
     CATEGORY_NAME kf.itemmodels.quick
@@ -13,7 +15,7 @@
     EXPORT KITEMMODELS
 )
 
-ecm_qt_declare_logging_category(corebindings_SRCS
+ecm_qt_declare_logging_category(itemmodelsplugin
     HEADER kitemmodelsqml_logdeprecated.h
     IDENTIFIER KITEMMODELS_LOGDEPRECATED
     CATEGORY_NAME kf.itemmodels.quick.deprecations
@@ -22,7 +24,6 @@
     EXPORT KITEMMODELS
 )
 
-add_library(itemmodelsplugin SHARED ${corebindings_SRCS})
 target_link_libraries(itemmodelsplugin
         Qt5::Qml
         KF5::ItemModels

Reply via email to