Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ktextwidgets for openSUSE:Factory 
checked in at 2022-01-11 21:16:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ktextwidgets (Old)
 and      /work/SRC/openSUSE:Factory/.ktextwidgets.new.1892 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ktextwidgets"

Tue Jan 11 21:16:45 2022 rev:99 rq:945085 version:5.90.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/ktextwidgets/ktextwidgets.changes        
2021-12-13 20:44:50.656488370 +0100
+++ /work/SRC/openSUSE:Factory/.ktextwidgets.new.1892/ktextwidgets.changes      
2022-01-11 21:19:33.916971305 +0100
@@ -1,0 +2,10 @@
+Mon Jan  3 12:47:56 UTC 2022 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 5.90.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.90.0
+- Changes since 5.89.0:
+  * Change the build system to enable building with Qt6
+
+-------------------------------------------------------------------

Old:
----
  ktextwidgets-5.89.0.tar.xz
  ktextwidgets-5.89.0.tar.xz.sig

New:
----
  ktextwidgets-5.90.0.tar.xz
  ktextwidgets-5.90.0.tar.xz.sig

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

Other differences:
------------------
++++++ ktextwidgets.spec ++++++
--- /var/tmp/diff_new_pack.t9TimR/_old  2022-01-11 21:19:34.624971803 +0100
+++ /var/tmp/diff_new_pack.t9TimR/_new  2022-01-11 21:19:34.628971806 +0100
@@ -17,21 +17,21 @@
 
 
 %define lname   libKF5TextWidgets5
-%define _tar_path 5.89
+%define _tar_path 5.90
 # 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 lang
+%bcond_without released
 Name:           ktextwidgets
-Version:        5.89.0
+Version:        5.90.0
 Release:        0
 Summary:        KDE Text editing widgets
 License:        LGPL-2.1-or-later
 Group:          System/GUI/KDE
 URL:            https://www.kde.org
 Source:         %{name}-%{version}.tar.xz
-%if %{with lang}
+%if %{with released}
 Source1:        %{name}-%{version}.tar.xz.sig
 Source2:        frameworks.keyring
 %endif
@@ -58,9 +58,6 @@
 Summary:        KDE Text editing widgets
 Group:          System/GUI/KDE
 Obsoletes:      libKF5TextWidgets4
-%if %{with lang}
-Recommends:     %{lname}-lang = %{version}
-%endif
 
 %description -n %{lname}
 KTextWidgets provides widgets for displaying and editing text. It supports
@@ -92,14 +89,14 @@
 %kf5_makeinstall -C build
 %fdupes %{buildroot}
 
-%if %{with lang}
+%if %{with released}
 %find_lang %{name}5
 %endif
 
 %post -n %{lname} -p /sbin/ldconfig
 %postun -n %{lname} -p /sbin/ldconfig
 
-%if %{with lang}
+%if %{with released}
 %files -n %{lname}-lang -f %{name}5.lang
 %endif
 

++++++ ktextwidgets-5.89.0.tar.xz -> ktextwidgets-5.90.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.89.0/CMakeLists.txt 
new/ktextwidgets-5.90.0/CMakeLists.txt
--- old/ktextwidgets-5.89.0/CMakeLists.txt      2021-12-04 19:42:59.000000000 
+0100
+++ new/ktextwidgets-5.90.0/CMakeLists.txt      2022-01-01 13:36:31.000000000 
+0100
@@ -1,12 +1,12 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.89.0") # handled by release scripts
-set(KF_DEP_VERSION "5.89.0") # handled by release scripts
+set(KF_VERSION "5.90.0") # handled by release scripts
+set(KF_DEP_VERSION "5.90.0") # handled by release scripts
 project(KTextWidgets VERSION ${KF_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.89.0  NO_MODULE)
+find_package(ECM 5.90.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)
 
@@ -32,9 +32,12 @@
 # Dependencies
 set(REQUIRED_QT_VERSION 5.15.2)
 
-find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Widgets)
+find_package(Qt${QT_MAJOR_VERSION} ${REQUIRED_QT_VERSION} CONFIG REQUIRED 
Widgets)
 
-find_package(Qt5 OPTIONAL_COMPONENTS TextToSpeech)
+# No QTextToSpeech in Qt6.2
+if (QT_MAJOR_VERSION STREQUAL "5")
+    find_package(Qt5 OPTIONAL_COMPONENTS TextToSpeech)
+endif()
 if (NOT Qt5TextToSpeech_FOUND)
     message(STATUS "Qt5TextToSpeech not found, speech feature will be 
disabled")
 else()
@@ -58,7 +61,7 @@
 
 add_definitions(-DTRANSLATION_DOMAIN=\"ktextwidgets5\")
 add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050f02)
-add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055100)
+add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055900)
 ki18n_install(po)
 add_subdirectory(src)
 if (BUILD_TESTING)
@@ -93,7 +96,7 @@
        )
 
 install(FILES ${CMAKE_CURRENT_BINARY_DIR}/ktextwidgets_version.h
-        DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5} COMPONENT Devel
+        DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF} COMPONENT Devel
        )
 
 feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.89.0/KF5TextWidgetsConfig.cmake.in 
new/ktextwidgets-5.90.0/KF5TextWidgetsConfig.cmake.in
--- old/ktextwidgets-5.89.0/KF5TextWidgetsConfig.cmake.in       2021-12-04 
19:42:59.000000000 +0100
+++ new/ktextwidgets-5.90.0/KF5TextWidgetsConfig.cmake.in       2022-01-01 
13:36:31.000000000 +0100
@@ -1,7 +1,7 @@
 @PACKAGE_INIT@
 
 include(CMakeFindDependencyMacro)
-find_dependency(Qt5Widgets @REQUIRED_QT_VERSION@)
+find_dependency(Qt@QT_MAJOR_VERSION@Widgets @REQUIRED_QT_VERSION@)
 find_dependency(KF5Sonnet "@KF_DEP_VERSION@")
 find_dependency(KF5I18n "@KF_DEP_VERSION@")
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.89.0/autotests/CMakeLists.txt 
new/ktextwidgets-5.90.0/autotests/CMakeLists.txt
--- old/ktextwidgets-5.89.0/autotests/CMakeLists.txt    2021-12-04 
19:42:59.000000000 +0100
+++ new/ktextwidgets-5.90.0/autotests/CMakeLists.txt    2022-01-01 
13:36:31.000000000 +0100
@@ -1,10 +1,10 @@
 include(ECMAddTests)
 
-find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Test)
+find_package(Qt${QT_MAJOR_VERSION} ${REQUIRED_QT_VERSION} CONFIG REQUIRED Test)
 
 macro(ktextwidgets_unit_tests)
    foreach(_testname ${ARGN})
-      ecm_add_test(${_testname}.cpp TEST_NAME ktextwidgets-${_testname} 
LINK_LIBRARIES Qt5::Test KF5::TextWidgets KF5::ConfigWidgets)
+      ecm_add_test(${_testname}.cpp TEST_NAME ktextwidgets-${_testname} 
LINK_LIBRARIES Qt${QT_MAJOR_VERSION}::Test KF5::TextWidgets KF5::ConfigWidgets)
    endforeach()
 endmacro()
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.89.0/autotests/krichtextedittest.cpp 
new/ktextwidgets-5.90.0/autotests/krichtextedittest.cpp
--- old/ktextwidgets-5.89.0/autotests/krichtextedittest.cpp     2021-12-04 
19:42:59.000000000 +0100
+++ new/ktextwidgets-5.90.0/autotests/krichtextedittest.cpp     2022-01-01 
13:36:31.000000000 +0100
@@ -225,12 +225,14 @@
 
     //  qDebug() << line6;
 
+#if KTEXTWIDGETS_BUILD_DEPRECATED_SINCE(5, 70)
     // there should not be a margin-left: 0 defined for the <ol> element
     QRegExp regex(QStringLiteral("<ul.*margin-left: 0px.*><li"));
     regex.setMinimal(true);
     QVERIFY2(regex.indexIn(line6, 0) == -1,
              "margin-left: 0px specified for unordered lists "
              "removes numbers in 3rd party viewers ");
+#endif
 
     const QRegularExpression re(QStringLiteral("<ul.*?margin-left: 
0px.*?><li"));
     QVERIFY2(!re.match(line6, 0).hasMatch(),
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.89.0/po/ar/ktextwidgets5.po 
new/ktextwidgets-5.90.0/po/ar/ktextwidgets5.po
--- old/ktextwidgets-5.89.0/po/ar/ktextwidgets5.po      2021-12-04 
19:42:59.000000000 +0100
+++ new/ktextwidgets-5.90.0/po/ar/ktextwidgets5.po      2022-01-01 
13:36:31.000000000 +0100
@@ -13,7 +13,7 @@
 # Khaled Hosny <khaledho...@eglug.org>, 2007.
 # Youssef Chahibi <chah...@gmail.com>, 2007.
 # zayed <zayed.alsa...@gmail.com>, 2008, 2009.
-# Zayed Al-Saidi <zayed.alsa...@gmail.com>, 2009.
+# Zayed Al-Saidi <zayed.alsa...@gmail.com>, 2009, 2021.
 # hanny <hannysabb...@hotmail.com>, 2012.
 # Abderrahim Kitouni <a.kito...@gmail.com>, 2012.
 # Safa Alfulaij <safaalful...@hotmail.com>, 2013.
@@ -22,16 +22,16 @@
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-11-24 00:25+0000\n"
-"PO-Revision-Date: 2013-08-08 13:54+0300\n"
-"Last-Translator: Safa Alfulaij <safaalful...@hotmail.com>\n"
-"Language-Team: Arabic <d...@arabeyes.org>\n"
+"PO-Revision-Date: 2021-12-14 21:31+0400\n"
+"Last-Translator: Zayed Al-Saidi <zayed.alsa...@gmail.com>\n"
+"Language-Team: ar\n"
 "Language: ar\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
 "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 21.07.70\n"
 
 #: dialogs/klinkdialog.cpp:39
 #, kde-format
@@ -365,7 +365,7 @@
 #: findreplace/kfinddialog.cpp:600
 #, kde-format
 msgid "Invalid PCRE pattern syntax."
-msgstr ""
+msgstr "???????? ???????? ?????? PCRE ?????? ????????."
 
 #: findreplace/kreplace.cpp:52 findreplace/kreplace.cpp:63
 #, kde-format
@@ -562,25 +562,25 @@
 #, kde-format
 msgctxt "@action"
 msgid "Left-to-Right"
-msgstr ""
+msgstr "???? ???????????? ?????? ????????????"
 
 #: widgets/krichtextwidget.cpp:346
 #, kde-format
 msgctxt "@label left-to-right"
 msgid "Left-to-Right"
-msgstr ""
+msgstr "???? ???????????? ?????? ????????????"
 
 #: widgets/krichtextwidget.cpp:351
 #, kde-format
 msgctxt "@action"
 msgid "Right-to-Left"
-msgstr ""
+msgstr "???? ???????????? ?????? ????????????"
 
 #: widgets/krichtextwidget.cpp:352
 #, kde-format
 msgctxt "@label right-to-left"
 msgid "Right-to-Left"
-msgstr ""
+msgstr "???? ???????????? ?????? ????????????"
 
 #: widgets/krichtextwidget.cpp:366
 #, kde-format
@@ -691,62 +691,52 @@
 msgstr "?????????? ??????????"
 
 #: widgets/krichtextwidget.cpp:480
-#, fuzzy, kde-format
-#| msgid "Loading Preview"
+#, kde-format
 msgctxt "@title:menu"
 msgid "Heading Level"
-msgstr "?????????? ????????????????"
+msgstr "?????????? ????????????????"
 
 #: widgets/krichtextwidget.cpp:481
-#, fuzzy, kde-format
-#| msgctxt "KCharselect unicode block name"
-#| msgid "Basic Latin"
+#, kde-format
 msgctxt "@item:inmenu no heading"
 msgid "Basic text"
-msgstr "???????????? ??????????"
+msgstr "???? ????????"
 
 #: widgets/krichtextwidget.cpp:482
-#, fuzzy, kde-format
-#| msgctxt "Title of the notified event"
-#| msgid "Title"
+#, kde-format
 msgctxt "@item:inmenu heading level 1 (largest)"
 msgid "Title"
 msgstr "??????????????"
 
 #: widgets/krichtextwidget.cpp:483
-#, fuzzy, kde-format
-#| msgid "Untitled"
+#, kde-format
 msgctxt "@item:inmenu heading level 2"
 msgid "Subtitle"
-msgstr "?????? ??????????"
+msgstr "?????????? ??????????"
 
 #: widgets/krichtextwidget.cpp:484
-#, fuzzy, kde-format
-#| msgid "Action"
+#, kde-format
 msgctxt "@item:inmenu heading level 3"
 msgid "Section"
-msgstr "??????????"
+msgstr "??????????"
 
 #: widgets/krichtextwidget.cpp:485
-#, fuzzy, kde-format
-#| msgid "Question"
+#, kde-format
 msgctxt "@item:inmenu heading level 4"
 msgid "Subsection"
-msgstr "????????"
+msgstr "?????????? ????????????"
 
 #: widgets/krichtextwidget.cpp:486
-#, fuzzy, kde-format
-#| msgid "Separator, Paragraph"
+#, kde-format
 msgctxt "@item:inmenu heading level 5"
 msgid "Paragraph"
-msgstr "???????? ?? ????????"
+msgstr "????????????"
 
 #: widgets/krichtextwidget.cpp:487
-#, fuzzy, kde-format
-#| msgid "Separator, Paragraph"
+#, kde-format
 msgctxt "@item:inmenu heading level 6 (smallest)"
 msgid "Subparagraph"
-msgstr "???????? ?? ????????"
+msgstr "???????????? ??????????????"
 
 #: widgets/ktextedit.cpp:47
 #, kde-format
@@ -759,10 +749,9 @@
 msgstr "?????????? ????????????..."
 
 #: widgets/ktextedit.cpp:506
-#, fuzzy, kde-format
-#| msgid "Spell Checking"
+#, kde-format
 msgid "Spell Checking Language"
-msgstr "?????????? ????????????"
+msgstr "?????? ?????????? ??????????????"
 
 #: widgets/ktextedit.cpp:527
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.89.0/po/ca@valencia/ktextwidgets5.po 
new/ktextwidgets-5.90.0/po/ca@valencia/ktextwidgets5.po
--- old/ktextwidgets-5.89.0/po/ca@valencia/ktextwidgets5.po     2021-12-04 
19:42:59.000000000 +0100
+++ new/ktextwidgets-5.90.0/po/ca@valencia/ktextwidgets5.po     2022-01-01 
13:36:31.000000000 +0100
@@ -6,17 +6,17 @@
 # Sebasti?? Pla i Sanz <s...@sastia.com>, 1998, 1999, 2000, 2001, 2002, 2003, 
2004, 2005, 2006, 2007.
 # Antoni Bella P??rez <antonibel...@yahoo.com>, 2003, 2006, 2011, 2012, 2013, 
2014, 2015.
 # Albert Astals Cid <aa...@kde.org>, 2004, 2005, 2007.
-# Josep Ma. Ferrer <txe...@gmail.com>, 2007, 2008, 2009, 2010, 2011, 2012, 
2013, 2014, 2015, 2017, 2018.
+# Josep M. Ferrer <txe...@gmail.com>, 2007, 2008, 2009, 2010, 2011, 2012, 
2013, 2014, 2015, 2017, 2018.
 # Robert Millan <r...@aybabtu.com>, 2009.
 # Orestes Mas <ores...@tsc.upc.edu>, 2010.
-# Empar <montoro_...@gva.es>, 2019.
+# Empar Montoro Mart??n <montoro_...@gva.es>, 2019.
 msgid ""
 msgstr ""
 "Project-Id-Version: ktextwidgets\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-11-24 00:25+0000\n"
 "PO-Revision-Date: 2019-06-19 08:42+0200\n"
-"Last-Translator: Empar <montoro_...@gva.es>\n"
+"Last-Translator: Empar Montoro Mart??n <montoro_...@gva.es>\n"
 "Language-Team: Catalan <kde-i18n...@kde.org>\n"
 "Language: ca@valencia\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.89.0/po/is/ktextwidgets5.po 
new/ktextwidgets-5.90.0/po/is/ktextwidgets5.po
--- old/ktextwidgets-5.89.0/po/is/ktextwidgets5.po      2021-12-04 
19:42:59.000000000 +0100
+++ new/ktextwidgets-5.90.0/po/is/ktextwidgets5.po      2022-01-01 
13:36:31.000000000 +0100
@@ -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.
+# Sveinn ?? Felli <svei...@nett.is>, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 
2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-11-24 00:25+0000\n"
-"PO-Revision-Date: 2013-05-13 22:40+0000\n"
-"Last-Translator: Sveinn ?? Felli <svei...@nett.is>\n"
-"Language-Team: Icelandic <kde-...@molar.is>\n"
+"PO-Revision-Date: 2021-12-07 18:51+0000\n"
+"Last-Translator: Sveinn ?? Felli <s...@fellsnet.is>\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.2\n"
+"X-Generator: Lokalize 19.12.3\n"
 "Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n"
 "\n"
 "\n"
@@ -359,7 +359,7 @@
 #: findreplace/kfinddialog.cpp:600
 #, kde-format
 msgid "Invalid PCRE pattern syntax."
-msgstr ""
+msgstr "??gild m??lskipan PCRE-mynsturs"
 
 #: findreplace/kreplace.cpp:52 findreplace/kreplace.cpp:63
 #, kde-format
@@ -677,62 +677,52 @@
 msgstr "H??letur"
 
 #: widgets/krichtextwidget.cpp:480
-#, fuzzy, kde-format
-#| msgid "Loading Preview"
+#, kde-format
 msgctxt "@title:menu"
 msgid "Heading Level"
-msgstr "Hle?? inn fors??n"
+msgstr "Stig fyrirsagnar"
 
 #: widgets/krichtextwidget.cpp:481
-#, fuzzy, kde-format
-#| msgctxt "KCharselect unicode block name"
-#| msgid "Basic Latin"
+#, kde-format
 msgctxt "@item:inmenu no heading"
 msgid "Basic text"
-msgstr "Grunn-latneskt"
+msgstr "Grunntexti"
 
 #: widgets/krichtextwidget.cpp:482
-#, fuzzy, kde-format
-#| msgctxt "Title of the notified event"
-#| msgid "Title"
+#, kde-format
 msgctxt "@item:inmenu heading level 1 (largest)"
 msgid "Title"
 msgstr "Titill"
 
 #: widgets/krichtextwidget.cpp:483
-#, fuzzy, kde-format
-#| msgid "Untitled"
+#, kde-format
 msgctxt "@item:inmenu heading level 2"
 msgid "Subtitle"
-msgstr "Nafnlaust"
+msgstr "Undirtitill"
 
 #: widgets/krichtextwidget.cpp:484
-#, fuzzy, kde-format
-#| msgid "Action"
+#, kde-format
 msgctxt "@item:inmenu heading level 3"
 msgid "Section"
-msgstr "A??ger??"
+msgstr "Hluti"
 
 #: widgets/krichtextwidget.cpp:485
-#, fuzzy, kde-format
-#| msgid "Question"
+#, kde-format
 msgctxt "@item:inmenu heading level 4"
 msgid "Subsection"
-msgstr "Spurning"
+msgstr "Undirgeiri"
 
 #: widgets/krichtextwidget.cpp:486
-#, fuzzy, kde-format
-#| msgid "Separator, Paragraph"
+#, kde-format
 msgctxt "@item:inmenu heading level 5"
 msgid "Paragraph"
-msgstr "Skilt??kn, m??lsgrein"
+msgstr "M??lsgrein"
 
 #: widgets/krichtextwidget.cpp:487
-#, fuzzy, kde-format
-#| msgid "Separator, Paragraph"
+#, kde-format
 msgctxt "@item:inmenu heading level 6 (smallest)"
 msgid "Subparagraph"
-msgstr "Skilt??kn, m??lsgrein"
+msgstr "Undirm??lsgrein"
 
 #: widgets/ktextedit.cpp:47
 #, kde-format
@@ -745,10 +735,9 @@
 msgstr "Yfirfara stafsetningu..."
 
 #: widgets/ktextedit.cpp:506
-#, fuzzy, kde-format
-#| msgid "Spell Checking"
+#, kde-format
 msgid "Spell Checking Language"
-msgstr "Sko??a stafsetningu"
+msgstr "Sko??a stafsetningu tungum??ls"
 
 #: widgets/ktextedit.cpp:527
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.89.0/po/zh_CN/ktextwidgets5.po 
new/ktextwidgets-5.90.0/po/zh_CN/ktextwidgets5.po
--- old/ktextwidgets-5.89.0/po/zh_CN/ktextwidgets5.po   2021-12-04 
19:42:59.000000000 +0100
+++ new/ktextwidgets-5.90.0/po/zh_CN/ktextwidgets5.po   2022-01-01 
13:36:31.000000000 +0100
@@ -15,7 +15,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-11-24 00:25+0000\n"
-"PO-Revision-Date: 2021-11-30 15:21\n"
+"PO-Revision-Date: 2021-12-22 14:06\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.89.0/src/CMakeLists.txt 
new/ktextwidgets-5.90.0/src/CMakeLists.txt
--- old/ktextwidgets-5.89.0/src/CMakeLists.txt  2021-12-04 19:42:59.000000000 
+0100
+++ new/ktextwidgets-5.90.0/src/CMakeLists.txt  2022-01-01 13:36:31.000000000 
+0100
@@ -48,11 +48,11 @@
 target_include_directories(KF5TextWidgets PUBLIC 
"$<BUILD_INTERFACE:${ktextwidgets_INCLUDES}>"
 )
 
-target_include_directories(KF5TextWidgets INTERFACE 
"$<INSTALL_INTERFACE:${KDE_INSTALL_INCLUDEDIR_KF5}/KTextWidgets>")
+target_include_directories(KF5TextWidgets INTERFACE 
"$<INSTALL_INTERFACE:${KDE_INSTALL_INCLUDEDIR_KF}/KTextWidgets>")
 
 target_link_libraries(KF5TextWidgets
 PUBLIC
-  Qt5::Widgets
+  Qt${QT_MAJOR_VERSION}::Widgets
   KF5::SonnetUi
   KF5::I18n
 PRIVATE
@@ -107,7 +107,7 @@
 install(FILES
   ${CMAKE_CURRENT_BINARY_DIR}/ktextwidgets_export.h
   ${KTextWidgets_HEADERS}
-  DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5}/KTextWidgets COMPONENT Devel
+  DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF}/KTextWidgets COMPONENT Devel
 )
 
 if (BUILD_DESIGNERPLUGIN)
@@ -145,5 +145,5 @@
 endif()
 
 include(ECMGeneratePriFile)
-ecm_generate_pri_file(BASE_NAME KTextWidgets LIB_NAME KF5TextWidgets DEPS 
"widgets SonnetUi KI18n" FILENAME_VAR PRI_FILENAME INCLUDE_INSTALL_DIR 
${KDE_INSTALL_INCLUDEDIR_KF5}/KTextWidgets)
+ecm_generate_pri_file(BASE_NAME KTextWidgets LIB_NAME KF5TextWidgets DEPS 
"widgets SonnetUi KI18n" FILENAME_VAR PRI_FILENAME INCLUDE_INSTALL_DIR 
${KDE_INSTALL_INCLUDEDIR_KF}/KTextWidgets)
 install(FILES ${PRI_FILENAME} DESTINATION ${ECM_MKSPECS_INSTALL_DIR})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.89.0/tests/CMakeLists.txt 
new/ktextwidgets-5.90.0/tests/CMakeLists.txt
--- old/ktextwidgets-5.89.0/tests/CMakeLists.txt        2021-12-04 
19:42:59.000000000 +0100
+++ new/ktextwidgets-5.90.0/tests/CMakeLists.txt        2022-01-01 
13:36:31.000000000 +0100
@@ -1,12 +1,12 @@
 include(ECMMarkAsTest)
 include(ECMMarkNonGuiExecutable)
 
-find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Test)
+find_package(Qt${QT_MAJOR_VERSION} ${REQUIRED_QT_VERSION} CONFIG REQUIRED Test)
 
 macro(ktextwidgets_executable_tests)
    foreach(_testname ${ARGN})
       add_executable(${_testname} ${_testname}.cpp)
-      target_link_libraries(${_testname} Qt5::Test KF5::TextWidgets)
+      target_link_libraries(${_testname} Qt${QT_MAJOR_VERSION}::Test 
KF5::TextWidgets)
       ecm_mark_nongui_executable(${_testname})
       ecm_mark_as_test(${_testname})
    endforeach()

++++++ ktextwidgets-5.89.0.tar.xz.sig -> ktextwidgets-5.90.0.tar.xz.sig ++++++
--- /work/SRC/openSUSE:Factory/ktextwidgets/ktextwidgets-5.89.0.tar.xz.sig      
2021-12-13 20:44:50.392488338 +0100
+++ 
/work/SRC/openSUSE:Factory/.ktextwidgets.new.1892/ktextwidgets-5.90.0.tar.xz.sig
    2022-01-11 21:19:33.864971268 +0100
@@ -1,11 +1,11 @@
 -----BEGIN PGP SIGNATURE-----
 
-iQEzBAABCgAdFiEEU+a0e0XOo+DVt0V3WNDuZIpIs7sFAmGrwCgACgkQWNDuZIpI
-s7tMfQf/ccjrA+sghpnQryuPRRieeXqd5Mfd1slMh3GGwvi2BPC+1mEZkxFlJ1ww
-ZoheaHyRD/xFdOgoGeCuxlmhyYXLizf48AQ+DOKtR0rcy0GW6U23Sqzl8PYh9Dyy
-1CsoPYiJriH4nXdAILKdw1T5jUlGgYWCuR6GQf3A9H2qellJR1efZ5YpVfT/EBjb
-DRzJaWTQ1bsImsbDctjWj8NayuM/huPOez+7uvNL10YMYu+WQv5zjO3XmalYi/7P
-2mFgEvHOsi10/FiLWdZrmZOwqA5U2Yl4jJxyurJvjnt73aLlGBPKKfOitE+6xhQ4
-z78CPOJXAGg5qkn8rcLDPukoIP/Mag==
-=j0KE
+iQEzBAABCgAdFiEEU+a0e0XOo+DVt0V3WNDuZIpIs7sFAmHQV6kACgkQWNDuZIpI
+s7vmPwf/WFsGn+NEXTe253PT1SPdn+QBeHudgeOwQJSvr3Z1ZlG6kuTTLsIIHHsS
+K9bwyEn4LMBzMvCxReGxTylxw9zL4EvSdr/6FqjNj9ojH12KDoOLiDb/zLhJjaWF
+z1L0YXhoMV2GjuOv6teA4+cua+YGCmSlJFDX/eC2J/N8SkG4WRyRbHqKAy8e/Sre
+LQE3ETPTfam5qDeHc10e3JDi1DY3ISi36hoyHFXTpVJwHBkC2xCNf2p35jnKf9/O
+x0q1xPTMB0RAl9xf1+2lsQow8Jgi4FpE8LvWOc/k/KjNMf6+RzVC30TvJ+ssJHv2
+KsYd3Jf/AvdY+I0TeJFMWGpION5Sjg==
+=4fIy
 -----END PGP SIGNATURE-----

Reply via email to