Hello community,

here is the log from the commit of package ktextwidgets for openSUSE:Factory 
checked in at 2018-04-19 15:18:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ktextwidgets (Old)
 and      /work/SRC/openSUSE:Factory/.ktextwidgets.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ktextwidgets"

Thu Apr 19 15:18:36 2018 rev:52 rq:596901 version:5.45.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/ktextwidgets/ktextwidgets.changes        
2018-03-20 21:47:44.312950681 +0100
+++ /work/SRC/openSUSE:Factory/.ktextwidgets.new/ktextwidgets.changes   
2018-04-19 15:18:40.585315766 +0200
@@ -1,0 +2,10 @@
+Sat Apr 14 13:19:06 CEST 2018 - [email protected]
+
+- Update to 5.45.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.45.0.php
+- Changes since 5.44.0:
+  * Remove not necessary QtCore and co
+
+-------------------------------------------------------------------

Old:
----
  ktextwidgets-5.44.0.tar.xz

New:
----
  ktextwidgets-5.45.0.tar.xz

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

Other differences:
------------------
++++++ ktextwidgets.spec ++++++
--- /var/tmp/diff_new_pack.is78eG/_old  2018-04-19 15:18:41.533277858 +0200
+++ /var/tmp/diff_new_pack.is78eG/_new  2018-04-19 15:18:41.537277698 +0200
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 %define lname   libKF5TextWidgets5
-%define _tar_path 5.44
+%define _tar_path 5.45
 # 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: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:           ktextwidgets
-Version:        5.44.0
+Version:        5.45.0
 Release:        0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 3.0

++++++ ktextwidgets-5.44.0.tar.xz -> ktextwidgets-5.45.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.44.0/CMakeLists.txt 
new/ktextwidgets-5.45.0/CMakeLists.txt
--- old/ktextwidgets-5.44.0/CMakeLists.txt      2018-03-03 11:06:52.000000000 
+0100
+++ new/ktextwidgets-5.45.0/CMakeLists.txt      2018-04-07 21:39:10.000000000 
+0200
@@ -1,12 +1,12 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.44.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.44.0") # handled by release scripts
+set(KF5_VERSION "5.45.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.45.0") # handled by release scripts
 project(KTextWidgets VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.44.0  NO_MODULE)
+find_package(ECM 5.45.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -29,7 +29,7 @@
                   SOVERSION 5)
 
 # Dependencies
-set(REQUIRED_QT_VERSION 5.7.0)
+set(REQUIRED_QT_VERSION 5.8.0)
 
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Widgets)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.44.0/autotests/kfindtest.h 
new/ktextwidgets-5.45.0/autotests/kfindtest.h
--- old/ktextwidgets-5.44.0/autotests/kfindtest.h       2018-03-03 
11:06:52.000000000 +0100
+++ new/ktextwidgets-5.45.0/autotests/kfindtest.h       2018-04-07 
21:39:10.000000000 +0200
@@ -22,8 +22,8 @@
 #ifndef KFINDTEST_H
 #define KFINDTEST_H
 
-#include <QtCore/QObject>
-#include <QtCore/QStringList>
+#include <QObject>
+#include <QStringList>
 
 class KFind;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.44.0/autotests/kreplacetest.cpp 
new/ktextwidgets-5.45.0/autotests/kreplacetest.cpp
--- old/ktextwidgets-5.44.0/autotests/kreplacetest.cpp  2018-03-03 
11:06:52.000000000 +0100
+++ new/ktextwidgets-5.45.0/autotests/kreplacetest.cpp  2018-04-07 
21:39:10.000000000 +0200
@@ -23,7 +23,7 @@
 #include <stdlib.h>
 
 #include <QApplication>
-#include <QtCore/QEventLoop>
+#include <QEventLoop>
 #include <QDebug>
 #include <QPushButton>
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.44.0/autotests/kreplacetest.h 
new/ktextwidgets-5.45.0/autotests/kreplacetest.h
--- old/ktextwidgets-5.44.0/autotests/kreplacetest.h    2018-03-03 
11:06:52.000000000 +0100
+++ new/ktextwidgets-5.45.0/autotests/kreplacetest.h    2018-04-07 
21:39:10.000000000 +0200
@@ -20,8 +20,8 @@
 #ifndef KREPLACETEST_H
 #define KREPLACETEST_H
 
-#include <QtCore/QObject>
-#include <QtCore/QStringList>
+#include <QObject>
+#include <QStringList>
 
 class KReplace;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.44.0/autotests/krichtextedittest.h 
new/ktextwidgets-5.45.0/autotests/krichtextedittest.h
--- old/ktextwidgets-5.44.0/autotests/krichtextedittest.h       2018-03-03 
11:06:52.000000000 +0100
+++ new/ktextwidgets-5.45.0/autotests/krichtextedittest.h       2018-04-07 
21:39:10.000000000 +0200
@@ -20,7 +20,7 @@
 #ifndef KRICHTEXTEDITTEST_H
 #define KRICHTEXTEDITTEST_H
 
-#include <QtCore/QObject>
+#include <QObject>
 
 class KRichTextEditTest : public QObject
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.44.0/po/ca@valencia/ktextwidgets5.po 
new/ktextwidgets-5.45.0/po/ca@valencia/ktextwidgets5.po
--- old/ktextwidgets-5.44.0/po/ca@valencia/ktextwidgets5.po     2018-03-03 
11:06:52.000000000 +0100
+++ new/ktextwidgets-5.45.0/po/ca@valencia/ktextwidgets5.po     2018-04-07 
21:39:10.000000000 +0200
@@ -43,7 +43,7 @@
 #: findreplace/kfind.cpp:59
 #, kde-format
 msgid "Find Next"
-msgstr "Busca següent"
+msgstr "Cerca següent"
 
 #: findreplace/kfind.cpp:64
 #, kde-format
@@ -90,18 +90,18 @@
 #: findreplace/kfinddialog.cpp:49
 #, kde-format
 msgid "Find Text"
-msgstr "Busca el text"
+msgstr "Cerca el text"
 
 #: findreplace/kfinddialog.cpp:84
 #, kde-format
 msgctxt "@title:group"
 msgid "Find"
-msgstr "Busca"
+msgstr "Cerca"
 
 #: findreplace/kfinddialog.cpp:87
 #, kde-format
 msgid "&Text to find:"
-msgstr "&Text a buscar:"
+msgstr "&Text a cercar:"
 
 #: findreplace/kfinddialog.cpp:91
 #, kde-format
@@ -156,7 +156,7 @@
 #: findreplace/kfinddialog.cpp:124
 #, kde-format
 msgid "Find &backwards"
-msgstr "Busca &enrere"
+msgstr "Cerca &enrere"
 
 #: findreplace/kfinddialog.cpp:125
 #, kde-format
@@ -197,7 +197,7 @@
 #: findreplace/kfinddialog.cpp:206
 #, kde-format
 msgid "Start searching"
-msgstr "Comença la busca"
+msgstr "Comença la cerca"
 
 #: findreplace/kfinddialog.cpp:207
 #, kde-format
@@ -205,7 +205,7 @@
 "<qt>If you press the <b>Find</b> button, the text you entered above is "
 "searched for within the document.</qt>"
 msgstr ""
-"<qt>Si premeu el botó <b>Busca</b>, el text que heu introduït abans se "
+"<qt>Si premeu el botó <b>Cerca</b>, el text que heu introduït abans se "
 "cercarà dins del document.</qt>"
 
 #: findreplace/kfinddialog.cpp:213
@@ -213,13 +213,13 @@
 msgid ""
 "Enter a pattern to search for, or select a previous pattern from the list."
 msgstr ""
-"Introduïu un patró a buscar, o seleccioneu un patró anterior des de la "
+"Introduïu un patró a cercar, o seleccioneu un patró anterior des de la "
 "llista."
 
 #: findreplace/kfinddialog.cpp:216
 #, kde-format
 msgid "If enabled, search for a regular expression."
-msgstr "Si està habilitat, busca una expressió regular."
+msgstr "Si està habilitat, cerca una expressió regular."
 
 #: findreplace/kfinddialog.cpp:218
 #, kde-format
@@ -262,12 +262,12 @@
 #: findreplace/kfinddialog.cpp:233
 #, kde-format
 msgid "Start searching at the current cursor location rather than at the top."
-msgstr "Comença la busca a la posició actual del cursor en comptes de l'inici."
+msgstr "Comença la cerca a la posició actual del cursor en comptes de l'inici."
 
 #: findreplace/kfinddialog.cpp:235
 #, kde-format
 msgid "Only search within the current selection."
-msgstr "Busca només dins de la selecció actual."
+msgstr "Cerca només dins de la selecció actual."
 
 #: findreplace/kfinddialog.cpp:237
 #, kde-format
@@ -275,13 +275,13 @@
 "Perform a case sensitive search: entering the pattern 'Joe' will not match "
 "'joe' or 'JOE', only 'Joe'."
 msgstr ""
-"Efectua una busca sensible a majúscules: l'entrada del patró «Pep» no "
+"Efectua una cerca sensible a majúscules: l'entrada del patró «Pep» no "
 "coincidirà amb «pep» o «PEP», només «Pep»."
 
 #: findreplace/kfinddialog.cpp:240
 #, kde-format
 msgid "Search backwards."
-msgstr "Busca cap arrere."
+msgstr "Cerca cap arrere."
 
 #: findreplace/kfinddialog.cpp:242
 #, kde-format
@@ -366,7 +366,7 @@
 #: findreplace/kfinddialog.cpp:580
 #, kde-format
 msgid "You must enter some text to search for."
-msgstr "Heu d'introduir un text a buscar."
+msgstr "Heu d'introduir un text a cercar."
 
 #: findreplace/kfinddialog.cpp:589
 #, kde-format
@@ -409,12 +409,12 @@
 #: findreplace/kreplace.cpp:397
 #, kde-format
 msgid "Do you want to restart search from the end?"
-msgstr "Voleu tornar a començar la busca des del final?"
+msgstr "Voleu tornar a començar la cerca des del final?"
 
 #: findreplace/kreplace.cpp:398
 #, kde-format
 msgid "Do you want to restart search at the beginning?"
-msgstr "Voleu tornar a començar la busca des del començament?"
+msgstr "Voleu tornar a començar la cerca des del començament?"
 
 #: findreplace/kreplace.cpp:401
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.44.0/po/id/ktextwidgets5.po 
new/ktextwidgets-5.45.0/po/id/ktextwidgets5.po
--- old/ktextwidgets-5.44.0/po/id/ktextwidgets5.po      2018-03-03 
11:06:52.000000000 +0100
+++ new/ktextwidgets-5.45.0/po/id/ktextwidgets5.po      2018-04-07 
21:39:10.000000000 +0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-11-28 03:01+0100\n"
-"PO-Revision-Date: 2018-02-10 08:09+0700\n"
+"PO-Revision-Date: 2018-04-03 21:42+0700\n"
 "Last-Translator: Wantoyo <[email protected]>\n"
 "Language-Team: Indonesian <[email protected]>\n"
 "Language: id\n"
@@ -17,6 +17,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Lokalize 2.0\n"
 
 #: dialogs/klinkdialog.cpp:52
 #, kde-format
@@ -103,7 +104,7 @@
 #: findreplace/kfinddialog.cpp:92
 #, kde-format
 msgid "&Edit..."
-msgstr "&Sunting..."
+msgstr "&Edit..."
 
 #: findreplace/kfinddialog.cpp:101
 #, kde-format
@@ -216,7 +217,7 @@
 #, kde-format
 msgid "Click here to edit your regular expression using a graphical editor."
 msgstr ""
-"Klik di sini untuk menyunting ekspresi reguler anda menggunakan penyunting "
+"Klik di sini untuk mengedit ekspresi reguler anda menggunakan penyunting "
 "grafik."
 
 #: findreplace/kfinddialog.cpp:220
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.44.0/po/zh_CN/ktextwidgets5.po 
new/ktextwidgets-5.45.0/po/zh_CN/ktextwidgets5.po
--- old/ktextwidgets-5.44.0/po/zh_CN/ktextwidgets5.po   2018-03-03 
11:06:52.000000000 +0100
+++ new/ktextwidgets-5.45.0/po/zh_CN/ktextwidgets5.po   2018-04-07 
21:39:10.000000000 +0200
@@ -15,7 +15,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-11-28 03:01+0100\n"
-"PO-Revision-Date: 2018-02-28 02:23-0500\n"
+"PO-Revision-Date: 2018-04-05 09:22-0400\n"
 "Last-Translator: guoyunhebrave <[email protected]>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.44.0/src/findreplace/kfind.cpp 
new/ktextwidgets-5.45.0/src/findreplace/kfind.cpp
--- old/ktextwidgets-5.44.0/src/findreplace/kfind.cpp   2018-03-03 
11:06:52.000000000 +0100
+++ new/ktextwidgets-5.45.0/src/findreplace/kfind.cpp   2018-04-07 
21:39:10.000000000 +0200
@@ -32,8 +32,8 @@
 #include <QDialogButtonBox>
 #include <QLabel>
 #include <QPushButton>
-#include <QtCore/QRegExp>
-#include <QtCore/QHash>
+#include <QRegExp>
+#include <QHash>
 #include <QVBoxLayout>
 
 // #define DEBUG_FIND
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.44.0/src/findreplace/kfind.h 
new/ktextwidgets-5.45.0/src/findreplace/kfind.h
--- old/ktextwidgets-5.44.0/src/findreplace/kfind.h     2018-03-03 
11:06:52.000000000 +0100
+++ new/ktextwidgets-5.45.0/src/findreplace/kfind.h     2018-04-07 
21:39:10.000000000 +0200
@@ -23,7 +23,7 @@
 
 #include "ktextwidgets_export.h"
 
-#include <QtCore/QRect>
+#include <QRect>
 #include <QObject>
 
 class QDialog;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.44.0/src/findreplace/kfind_p.h 
new/ktextwidgets-5.45.0/src/findreplace/kfind_p.h
--- old/ktextwidgets-5.44.0/src/findreplace/kfind_p.h   2018-03-03 
11:06:52.000000000 +0100
+++ new/ktextwidgets-5.45.0/src/findreplace/kfind_p.h   2018-04-07 
21:39:10.000000000 +0200
@@ -25,10 +25,10 @@
 #include "kfind.h"
 
 #include <QDialog>
-#include <QtCore/QHash>
-#include <QtCore/QList>
-#include <QtCore/QPointer>
-#include <QtCore/QString>
+#include <QHash>
+#include <QList>
+#include <QPointer>
+#include <QString>
 
 struct Q_DECL_HIDDEN KFind::Private {
     Private(KFind *q)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.44.0/src/findreplace/kfinddialog.cpp 
new/ktextwidgets-5.45.0/src/findreplace/kfinddialog.cpp
--- old/ktextwidgets-5.44.0/src/findreplace/kfinddialog.cpp     2018-03-03 
11:06:52.000000000 +0100
+++ new/ktextwidgets-5.45.0/src/findreplace/kfinddialog.cpp     2018-04-07 
21:39:10.000000000 +0200
@@ -31,7 +31,7 @@
 #include <QLineEdit>
 #include <QMenu>
 #include <QPushButton>
-#include <QtCore/QRegExp>
+#include <QRegExp>
 #include <QGridLayout>
 
 #include <klocalizedstring.h>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.44.0/src/findreplace/kfinddialog_p.h 
new/ktextwidgets-5.45.0/src/findreplace/kfinddialog_p.h
--- old/ktextwidgets-5.44.0/src/findreplace/kfinddialog_p.h     2018-03-03 
11:06:52.000000000 +0100
+++ new/ktextwidgets-5.45.0/src/findreplace/kfinddialog_p.h     2018-04-07 
21:39:10.000000000 +0200
@@ -24,7 +24,7 @@
 #include "kfinddialog.h"
 #include "kfind.h"
 
-#include <QtCore/QStringList>
+#include <QStringList>
 
 class KHistoryComboBox;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.44.0/src/findreplace/kreplace.cpp 
new/ktextwidgets-5.45.0/src/findreplace/kreplace.cpp
--- old/ktextwidgets-5.44.0/src/findreplace/kreplace.cpp        2018-03-03 
11:06:52.000000000 +0100
+++ new/ktextwidgets-5.45.0/src/findreplace/kreplace.cpp        2018-04-07 
21:39:10.000000000 +0200
@@ -27,7 +27,7 @@
 #include <QLabel>
 #include <QPushButton>
 #include <QVBoxLayout>
-#include <QtCore/QRegExp>
+#include <QRegExp>
 
 #include <klocalizedstring.h>
 #include <kmessagebox.h>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ktextwidgets-5.44.0/src/findreplace/kreplacedialog.cpp 
new/ktextwidgets-5.45.0/src/findreplace/kreplacedialog.cpp
--- old/ktextwidgets-5.44.0/src/findreplace/kreplacedialog.cpp  2018-03-03 
11:06:52.000000000 +0100
+++ new/ktextwidgets-5.45.0/src/findreplace/kreplacedialog.cpp  2018-04-07 
21:39:10.000000000 +0200
@@ -22,7 +22,7 @@
 #include "kfinddialog_p.h"
 
 #include <QCheckBox>
-#include <QtCore/QRegExp>
+#include <QRegExp>
 #include <QLineEdit>
 #include <QGridLayout>
 #include <QGroupBox>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ktextwidgets-5.44.0/src/kregexpeditor/kregexpeditorinterface.h 
new/ktextwidgets-5.45.0/src/kregexpeditor/kregexpeditorinterface.h
--- old/ktextwidgets-5.44.0/src/kregexpeditor/kregexpeditorinterface.h  
2018-03-03 11:06:52.000000000 +0100
+++ new/ktextwidgets-5.45.0/src/kregexpeditor/kregexpeditorinterface.h  
2018-04-07 21:39:10.000000000 +0200
@@ -23,8 +23,8 @@
 #ifndef __kregexpeditorinterface_h__
 #define __kregexpeditorinterface_h__
 
-#include <QtCore/QString>
-#include <QtCore/QObject>
+#include <QString>
+#include <QObject>
 
 /**
  * @class KRegExpEditorInterface kregexpeditorinterface.h 
<KRegExpEditorInterface>


Reply via email to