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-07-11 19:08:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kparts (Old)
 and      /work/SRC/openSUSE:Factory/.kparts.new.1523 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kparts"

Mon Jul 11 19:08:56 2022 rev:103 rq:988158 version:5.96.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kparts/kparts.changes    2022-06-17 
21:21:29.810740313 +0200
+++ /work/SRC/openSUSE:Factory/.kparts.new.1523/kparts.changes  2022-07-11 
19:10:22.967694539 +0200
@@ -1,0 +2,10 @@
+Sun Jul  3 11:56:07 UTC 2022 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 5.96.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.96.0
+- Changes since 5.95.0:
+  * Remove duplicate headers between cpp/h
+
+-------------------------------------------------------------------

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

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

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

Other differences:
------------------
++++++ kparts.spec ++++++
--- /var/tmp/diff_new_pack.zAIDD0/_old  2022-07-11 19:10:23.479695282 +0200
+++ /var/tmp/diff_new_pack.zAIDD0/_new  2022-07-11 19:10:23.483695288 +0200
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5Parts5
-%define _tar_path 5.95
+%define _tar_path 5.96
 # 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.95.0
+Version:        5.96.0
 Release:        0
 Summary:        Plugin framework for user interface components
 License:        LGPL-2.1-or-later


++++++ kparts-5.95.0.tar.xz -> kparts-5.96.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.95.0/CMakeLists.txt 
new/kparts-5.96.0/CMakeLists.txt
--- old/kparts-5.95.0/CMakeLists.txt    2022-06-09 23:24:22.000000000 +0200
+++ new/kparts-5.96.0/CMakeLists.txt    2022-07-02 17:57:08.000000000 +0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.95.0") # handled by release scripts
-set(KF_DEP_VERSION "5.95.0") # handled by release scripts
+set(KF_VERSION "5.96.0") # handled by release scripts
+set(KF_DEP_VERSION "5.96.0") # handled by release scripts
 project(KParts VERSION ${KF_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.95.0  NO_MODULE)
+find_package(ECM 5.96.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)
 
@@ -22,6 +22,7 @@
 include(ECMGenerateExportHeader)
 include(ECMQtDeclareLoggingCategory)
 include(ECMSetupVersion)
+include(ECMDeprecationSettings)
 
 set(EXCLUDE_DEPRECATED_BEFORE_AND_AT 0 CACHE STRING "Control how much of 
deprecated API is build [default=0].")
 
@@ -47,6 +48,13 @@
 find_package(KF5WidgetsAddons ${KF_DEP_VERSION} REQUIRED)
 find_package(KF5XmlGui ${KF_DEP_VERSION} REQUIRED)
 
+ecm_set_disabled_deprecation_versions(
+  QT 5.15.2
+  KF 5.95
+  KIOWIDGETS 5.70 # We need KRun for BrowserRun
+  KCOREADDONS 5.64 # We need KAboutData::fromPluginMetaData
+  KSERVICE 5.81 # We need KMimeTypeTrader and KPluginInfo(KService)
+)
 
 if(BUILD_TESTING)
   add_subdirectory( tests )
@@ -54,11 +62,6 @@
 endif()
 add_definitions(-DTRANSLATION_DOMAIN=\"kparts5\")
 ki18n_install(po)
-add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050f02)
-add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055900)
-add_definitions(-DKIOWIDGETS_DISABLE_DEPRECATED_BEFORE_AND_AT=0x054600) # We 
need KRun for BrowserRun
-add_definitions(-DKCOREADDONS_DISABLE_DEPRECATED_BEFORE_AND_AT=0x054000) # We 
need KAboutData::fromPluginMetaData
-add_definitions(-DKSERVICE_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055100) # We 
need KMimeTypeTrader and KPluginInfo(KService)
 
 add_subdirectory( src )
 add_subdirectory(templates)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.95.0/po/bg/kparts5.po 
new/kparts-5.96.0/po/bg/kparts5.po
--- old/kparts-5.95.0/po/bg/kparts5.po  2022-06-09 23:24:22.000000000 +0200
+++ new/kparts-5.96.0/po/bg/kparts5.po  2022-07-02 17:57:08.000000000 +0200
@@ -3,19 +3,20 @@
 #
 # Zlatko Popov <zlatkopo...@fsa-bg.org>, 2006, 2007, 2008, 2009.
 # Yasen Pramatarov <ya...@lindeas.com>, 2009, 2010, 2011, 2012, 2013.
+# Mincho Kondarev <mkonda...@yahoo.de>, 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: 2013-07-23 01:52+0300\n"
-"Last-Translator: Yasen Pramatarov <ya...@lindeas.com>\n"
-"Language-Team: Bulgarian <d...@ludost.net>\n"
+"PO-Revision-Date: 2022-06-19 15:29+0200\n"
+"Last-Translator: Mincho Kondarev <mkonda...@yahoo.de>\n"
+"Language-Team: Bulgarian <kde-i18n-...@kde.org>\n"
 "Language: bg\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 22.04.2\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
 #, kde-format
@@ -101,7 +102,7 @@
 #, kde-format
 msgctxt "@info:whatsthis"
 msgid "This is the file name suggested by the server"
-msgstr ""
+msgstr "???????? ?? ?????????? ???? ??????????, ???????????????????? ???? 
??????????????"
 
 #: browserrun.cpp:333
 #, kde-format
@@ -131,7 +132,7 @@
 "\n"
 "The integration with Konqueror will be disabled."
 msgstr ""
-"???????????????? ???? ???? ???? ????????????????????????????\n"
+"???????? ???? ????????????????????????????\n"
 "\n"
 "???????????????????????? ?? Konqueror ???? ???????? ??????????????????."
 
@@ -149,24 +150,19 @@
 msgstr "????????????????????"
 
 #: partloader.cpp:181
-#, fuzzy, kde-format
-#| msgid ""
-#| "The service '%1' does not provide an interface '%2' with keyword '%3'"
+#, kde-format
 msgid "The plugin '%1' does not provide an interface '%2' with keyword '%3'"
-msgstr "???????????????? \"%1\" ???? ???????????????? ?????????????????? 
\"%2\" ?? ?????????????? ???????? \"%3\"."
+msgstr "?????????????????????? \"%1\" ???? ???????????????? ?????????????????? 
\"%2\" ?? ?????????????? ???????? \"%3\"."
 
 #: partloader.cpp:198 partloader.h:106
-#, fuzzy, kde-format
-#| msgid "No handler found for %1."
+#, kde-format
 msgid "No part was found for mimeType %1"
-msgstr "???? ???????? ???? ???????? ???????????????? ?????????????????? ???? 
%1."
+msgstr "???? ?? ???????????????? ???????? ???? MIME ?????? %1"
 
 #: partloader.h:97
-#, fuzzy, kde-format
-#| msgid ""
-#| "The service '%1' does not provide an interface '%2' with keyword '%3'"
+#, kde-format
 msgid "The plugin '%1' does not provide an interface '%2'"
-msgstr "???????????????? \"%1\" ???? ???????????????? ?????????????????? 
\"%2\" ?? ?????????????? ???????? \"%3\"."
+msgstr "?????????????????????? \"%1\" ???? ???????????????? ?????????????????? 
\"%2\""
 
 #: readwritepart.cpp:80
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.95.0/po/ca@valencia/kparts5.po 
new/kparts-5.96.0/po/ca@valencia/kparts5.po
--- old/kparts-5.95.0/po/ca@valencia/kparts5.po 2022-06-09 23:24:22.000000000 
+0200
+++ new/kparts-5.96.0/po/ca@valencia/kparts5.po 2022-07-02 17:57:08.000000000 
+0200
@@ -112,7 +112,7 @@
 #, kde-format
 msgctxt "@info:whatsthis"
 msgid "This is the file name suggested by the server"
-msgstr "Este ??s el nom de fitxer sugerit pel servidor"
+msgstr "Este ??s el nom de fitxer suggerit pel servidor"
 
 #: browserrun.cpp:333
 #, kde-format
@@ -141,7 +141,7 @@
 "\n"
 "The integration with Konqueror will be disabled."
 msgstr ""
-"Proveu de reinstalar-lo \n"
+"Proveu de reinstal??lar-lo \n"
 "\n"
 "Es desactivar?? la integraci?? amb Konqueror."
 
@@ -156,13 +156,13 @@
 
 #: htmlsettingsinterface.cpp:23
 msgid "Reject"
-msgstr "Rebuja"
+msgstr "Rebutja"
 
 #: partloader.cpp:181
 #, kde-format
 msgid "The plugin '%1' does not provide an interface '%2' with keyword '%3'"
 msgstr ""
-"El conector ??%1?? no proporciona la interf??cie ??%2?? amb la paraula clau 
??%3??"
+"El connector ??%1?? no proporciona la interf??cie ??%2?? amb la paraula clau 
??%3??"
 
 #: partloader.cpp:198 partloader.h:106
 #, kde-format
@@ -172,7 +172,7 @@
 #: partloader.h:97
 #, kde-format
 msgid "The plugin '%1' does not provide an interface '%2'"
-msgstr "El conector ??%1?? no proporciona cap interf??cie ??%2??"
+msgstr "El connector ??%1?? no proporciona cap interf??cie ??%2??"
 
 #: readwritepart.cpp:80
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.95.0/po/is/kparts5.po 
new/kparts-5.96.0/po/is/kparts5.po
--- old/kparts-5.95.0/po/is/kparts5.po  2022-06-09 23:24:22.000000000 +0200
+++ new/kparts-5.96.0/po/is/kparts5.po  2022-07-02 17:57:08.000000000 +0200
@@ -6,20 +6,20 @@
 # Richard Allen <r...@ra.is>, 1998-2004.
 # Pjetur G. Hjaltason <pje...@pjetur.net>, 2003.
 # Arnar Le??sson <leos...@frisurf.no>, 2003, 2005.
-# Sveinn ?? Felli <svei...@nett.is>, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 
2016.
+# Sveinn ?? Felli <svei...@nett.is>, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 
2016, 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: 2016-04-08 22:57+0000\n"
+"PO-Revision-Date: 2022-06-20 18:54+0000\n"
 "Last-Translator: Sveinn ?? Felli <s...@fellsnet.is>\n"
-"Language-Team: Icelandic <translation-team...@lists.sourceforge.net>\n"
+"Language-Team: Icelandic\n"
 "Language: is\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 19.12.3\n"
 "Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n"
 "\n"
 "\n"
@@ -162,24 +162,19 @@
 msgstr "Hafna"
 
 #: partloader.cpp:181
-#, fuzzy, kde-format
-#| msgid ""
-#| "The service '%1' does not provide an interface '%2' with keyword '%3'"
+#, kde-format
 msgid "The plugin '%1' does not provide an interface '%2' with keyword '%3'"
-msgstr "??j??nustan '%1' by??ur ekki upp?? vi??m??ti?? '%2' me?? stikkor??inu 
'%3'"
+msgstr "??forriti?? '%1' by??ur ekki upp?? vi??m??ti?? '%2' me?? stikkor??inu 
'%3'"
 
 #: partloader.cpp:198 partloader.h:106
-#, fuzzy, kde-format
-#| msgid "No handler found for %1."
+#, kde-format
 msgid "No part was found for mimeType %1"
-msgstr "Engin me??h??ndlari fannst fyrir %1."
+msgstr "Engin partur fannst fyrir %1."
 
 #: partloader.h:97
-#, fuzzy, kde-format
-#| msgid ""
-#| "The service '%1' does not provide an interface '%2' with keyword '%3'"
+#, kde-format
 msgid "The plugin '%1' does not provide an interface '%2'"
-msgstr "??j??nustan '%1' by??ur ekki upp?? vi??m??ti?? '%2' me?? stikkor??inu 
'%3'"
+msgstr "??forriti?? '%1' by??ur ekki upp?? vi??m??ti?? '%2'"
 
 #: readwritepart.cpp:80
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.95.0/po/nn/kparts5.po 
new/kparts-5.96.0/po/nn/kparts5.po
--- old/kparts-5.95.0/po/nn/kparts5.po  2022-06-09 23:24:22.000000000 +0200
+++ new/kparts-5.96.0/po/nn/kparts5.po  2022-07-02 17:57:08.000000000 +0200
@@ -2,21 +2,21 @@
 #
 # Gaute Hvoslef Kvalnes <ga...@verdsveven.com>, 2003, 2004, 2005, 2006.
 # H??vard Korsvoll <korsv...@skulelinux.no>, 2003, 2005.
-# Karl Ove Hufthammer <k...@huftis.org>, 2004, 2007, 2008, 2009, 2010, 2011, 
2012, 2013, 2014, 2020.
+# Karl Ove Hufthammer <k...@huftis.org>, 2004, 2007, 2008, 2009, 2010, 2011, 
2012, 2013, 2014, 2020, 2022.
 # Eirik U. Birkeland <eir...@gmail.com>, 2008, 2009, 2010.
 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-04-02 20:55+0200\n"
+"PO-Revision-Date: 2022-06-19 14:05+0200\n"
 "Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n"
 "Language-Team: Norwegian Nynorsk <l10n...@lister.huftis.org>\n"
 "Language: nn\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 19.12.3\n"
+"X-Generator: Lokalize 22.04.2\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
@@ -165,7 +165,7 @@
 #: partloader.h:97
 #, kde-format
 msgid "The plugin '%1' does not provide an interface '%2'"
-msgstr ""
+msgstr "Programtillegget ??%1?? har ikkje noko grensesnitt ??%2??"
 
 #: readwritepart.cpp:80
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.95.0/po/zh_CN/kparts5.po 
new/kparts-5.96.0/po/zh_CN/kparts5.po
--- old/kparts-5.95.0/po/zh_CN/kparts5.po       2022-06-09 23:24:22.000000000 
+0200
+++ new/kparts-5.96.0/po/zh_CN/kparts5.po       2022-07-02 17:57:08.000000000 
+0200
@@ -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: 2022-06-05 04:17\n"
+"PO-Revision-Date: 2022-07-02 10:59\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.95.0/src/selectorinterface.cpp 
new/kparts-5.96.0/src/selectorinterface.cpp
--- old/kparts-5.95.0/src/selectorinterface.cpp 2022-06-09 23:24:22.000000000 
+0200
+++ new/kparts-5.96.0/src/selectorinterface.cpp 2022-07-02 17:57:08.000000000 
+0200
@@ -8,7 +8,6 @@
 #include "selectorinterface.h"
 
 #include <QHash>
-#include <QStringList>
 
 using namespace KParts;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kparts-5.95.0/templates/kpartsapp/kpartsapp.kdevtemplate 
new/kparts-5.96.0/templates/kpartsapp/kpartsapp.kdevtemplate
--- old/kparts-5.95.0/templates/kpartsapp/kpartsapp.kdevtemplate        
2022-06-09 23:24:22.000000000 +0200
+++ new/kparts-5.96.0/templates/kpartsapp/kpartsapp.kdevtemplate        
2022-07-02 17:57:08.000000000 +0200
@@ -3,6 +3,7 @@
 Name=KParts Application
 Name[ar]=?????????? ????????????????
 Name[az]=KParts T??tbiql??ri
+Name[bg]=???????????????? KParts
 Name[ca]=Aplicaci?? de les KParts
 Name[ca@valencia]=Aplicaci?? de KParts
 Name[cs]=Aplikace KParts
@@ -50,8 +51,9 @@
 Comment=Generate an application built on the KParts framework, using CMake.
 Comment[ar]=???????? ?????????????? ?????????? ?????? ???????? ?????? 
???????????????? ???????????????? CMake.
 Comment[az]=CMake istifad?? ed??r??k, KParts ????r??iv??sind?? qurulmu?? bir 
proqram yarad??n.
+Comment[bg]=???????????????????? ???? ????????????????????, ?????????????????? 
?? Cmake ???? ?????????????????? KParts.
 Comment[ca]=Genera una construcci?? d'aplicaci?? en el marc de treball KParts, 
usant el CMake.
-Comment[ca@valencia]=Genera una construcci?? d'aplicaci?? en el marc de 
treball KParts, utilisant CMake.
+Comment[ca@valencia]=Genera una construcci?? d'aplicaci?? en el marc de 
treball KParts, utilitzant CMake.
 Comment[cs]=Generovat aplikaci postavenou na frameworku KParts pomoc?? CMake.
 Comment[da]=Generer et program bygget p?? KParts-systemet med brug af CMake.
 Comment[de]=Generiert ein Programm auf der Basis von KParts-Framework und 
verwendet CMake.

Reply via email to