Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kparts for openSUSE:Factory checked 
in at 2022-02-24 18:19:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kparts (Old)
 and      /work/SRC/openSUSE:Factory/.kparts.new.1958 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kparts"

Thu Feb 24 18:19:47 2022 rev:98 rq:954271 version:5.91.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kparts/kparts.changes    2022-01-11 
21:19:21.056962260 +0100
+++ /work/SRC/openSUSE:Factory/.kparts.new.1958/kparts.changes  2022-02-24 
18:22:03.530680655 +0100
@@ -1,0 +2,11 @@
+Sun Feb  6 10:17:09 UTC 2022 - Christophe Giboudeaux <[email protected]>
+
+- Update to 5.91.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.91.0
+- Changes since 5.90.0:
+  * Fix install plugins in kf<version>
+  * Add qt6 to CI
+
+-------------------------------------------------------------------

Old:
----
  kparts-5.90.0.tar.xz
  kparts-5.90.0.tar.xz.sig

New:
----
  kparts-5.91.0.tar.xz
  kparts-5.91.0.tar.xz.sig

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

Other differences:
------------------
++++++ kparts.spec ++++++
--- /var/tmp/diff_new_pack.yJePwN/_old  2022-02-24 18:22:04.170680484 +0100
+++ /var/tmp/diff_new_pack.yJePwN/_new  2022-02-24 18:22:04.178680482 +0100
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5Parts5
-%define _tar_path 5.90
+%define _tar_path 5.91
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without released
 Name:           kparts
-Version:        5.90.0
+Version:        5.91.0
 Release:        0
 Summary:        Plugin framework for user interface components
 License:        LGPL-2.1-or-later
@@ -123,10 +123,8 @@
 %{_kf5_servicetypesdir}/kparts-readwritepart.desktop
 
 %files devel
-%dir %{_kf5_includedir}/*/
 %dir %{_kf5_sharedir}/kdevappwizard
-%{_kf5_includedir}/*.h
-%{_kf5_includedir}/*/
+%{_kf5_includedir}/KParts/
 %{_kf5_libdir}/cmake/KF5Parts/
 %{_kf5_libdir}/libKF5Parts.so
 %{_kf5_mkspecsdir}/qt_KParts.pri


++++++ kparts-5.90.0.tar.xz -> kparts-5.91.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.90.0/.gitlab-ci.yml 
new/kparts-5.91.0/.gitlab-ci.yml
--- old/kparts-5.90.0/.gitlab-ci.yml    2022-01-01 13:34:42.000000000 +0100
+++ new/kparts-5.91.0/.gitlab-ci.yml    2022-02-05 22:27:42.000000000 +0100
@@ -5,3 +5,4 @@
   - 
https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/linux.yml
   - 
https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/android.yml
   - 
https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/freebsd.yml
+  - 
https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/linux-qt6.yml
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.90.0/CMakeLists.txt 
new/kparts-5.91.0/CMakeLists.txt
--- old/kparts-5.90.0/CMakeLists.txt    2022-01-01 13:34:42.000000000 +0100
+++ new/kparts-5.91.0/CMakeLists.txt    2022-02-05 22:27:42.000000000 +0100
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.90.0") # handled by release scripts
-set(KF_DEP_VERSION "5.90.0") # handled by release scripts
+set(KF_VERSION "5.91.0") # handled by release scripts
+set(KF_DEP_VERSION "5.91.0") # handled by release scripts
 project(KParts VERSION ${KF_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.90.0  NO_MODULE)
+find_package(ECM 5.91.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)
 
@@ -95,7 +95,7 @@
 
 install(FILES
   ${CMAKE_CURRENT_BINARY_DIR}/kparts_version.h
-  DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF} COMPONENT Devel
+  DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF}/KParts COMPONENT Devel
 )
 
 feature_summary(WHAT ALL   FATAL_ON_MISSING_REQUIRED_PACKAGES)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.90.0/autotests/CMakeLists.txt 
new/kparts-5.91.0/autotests/CMakeLists.txt
--- old/kparts-5.90.0/autotests/CMakeLists.txt  2022-01-01 13:34:42.000000000 
+0100
+++ new/kparts-5.91.0/autotests/CMakeLists.txt  2022-02-05 22:27:42.000000000 
+0100
@@ -9,7 +9,7 @@
 add_library(notepadpart MODULE)
 target_sources(notepadpart PRIVATE notepad.cpp notepad.qrc)
 # so we have to do the INSTALL_NAMESPACE thing by hand:
-set_target_properties(notepadpart PROPERTIES LIBRARY_OUTPUT_DIRECTORY 
"${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/kf5/parts")
+set_target_properties(notepadpart PROPERTIES LIBRARY_OUTPUT_DIRECTORY 
"${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/kf${QT_MAJOR_VERSION}/parts")
 kcoreaddons_desktop_to_json(notepadpart notepad.desktop)
 target_link_libraries(notepadpart KF5::Parts)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.90.0/po/en_GB/kparts5.po 
new/kparts-5.91.0/po/en_GB/kparts5.po
--- old/kparts-5.90.0/po/en_GB/kparts5.po       2022-01-01 13:34:42.000000000 
+0100
+++ new/kparts-5.91.0/po/en_GB/kparts5.po       2022-02-05 22:27:42.000000000 
+0100
@@ -2,13 +2,13 @@
 # Malcolm Hunter <[email protected]>, 2002,2003,2004, 2005, 2006, 2007, 
2008, 2009.
 # Jonathan Riddell <[email protected]>, 2003.
 # Andrew Coles <[email protected]>, 2004, 2005, 2009, 2010.
-# Steve Allewell <[email protected]>, 2014, 2020.
+# Steve Allewell <[email protected]>, 2014, 2020, 2022.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-12-17 00:40+0000\n"
-"PO-Revision-Date: 2020-03-30 20:00+0100\n"
+"PO-Revision-Date: 2022-01-01 14:56+0000\n"
 "Last-Translator: Steve Allewell <[email protected]>\n"
 "Language-Team: British English <[email protected]>\n"
 "Language: en_GB\n"
@@ -16,7 +16,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 19.07.70\n"
+"X-Generator: Lokalize 21.12.0\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -158,10 +158,9 @@
 msgstr "No part was found for mimeType %1"
 
 #: partloader.h:97
-#, fuzzy, kde-format
-#| msgid "The plugin '%1' does not provide an interface '%2' with keyword '%3'"
+#, kde-format
 msgid "The plugin '%1' does not provide an interface '%2'"
-msgstr "The plugin '%1' does not provide an interface '%2' with keyword '%3'"
+msgstr "The plugin '%1' does not provide an interface '%2'"
 
 #: readwritepart.cpp:80
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.90.0/po/zh_CN/kparts5.po 
new/kparts-5.91.0/po/zh_CN/kparts5.po
--- old/kparts-5.90.0/po/zh_CN/kparts5.po       2022-01-01 13:34:42.000000000 
+0100
+++ new/kparts-5.91.0/po/zh_CN/kparts5.po       2022-02-05 22:27:42.000000000 
+0100
@@ -15,7 +15,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-12-17 00:40+0000\n"
-"PO-Revision-Date: 2021-12-22 14:06\n"
+"PO-Revision-Date: 2022-01-08 15:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.90.0/src/partloader.cpp 
new/kparts-5.91.0/src/partloader.cpp
--- old/kparts-5.90.0/src/partloader.cpp        2022-01-01 13:34:42.000000000 
+0100
+++ new/kparts-5.91.0/src/partloader.cpp        2022-02-05 22:27:42.000000000 
+0100
@@ -79,7 +79,7 @@
     auto supportsMime = [&](const KPluginMetaData &md) {
         return md.supportsMimeType(mimeType);
     };
-    QVector<KPluginMetaData> plugins = 
KPluginMetaData::findPlugins(QStringLiteral("kf5/parts"), supportsMime);
+    QVector<KPluginMetaData> plugins = 
KPluginMetaData::findPlugins(QStringLiteral("kf" QT_STRINGIFY(QT_VERSION_MAJOR) 
"/parts"), supportsMime);
 
 #if KSERVICE_BUILD_DEPRECATED_SINCE(5, 0)
     // KF5 compat code

Reply via email to