Hello community,

here is the log from the commit of package kemoticons for openSUSE:Factory 
checked in at 2019-02-14 14:25:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kemoticons (Old)
 and      /work/SRC/openSUSE:Factory/.kemoticons.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kemoticons"

Thu Feb 14 14:25:22 2019 rev:61 rq:674236 version:5.55.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kemoticons/kemoticons.changes    2019-01-21 
10:19:50.742105719 +0100
+++ /work/SRC/openSUSE:Factory/.kemoticons.new.28833/kemoticons.changes 
2019-02-14 14:25:24.143873398 +0100
@@ -1,0 +2,10 @@
+Sun Feb 10 22:03:07 UTC 2019 - [email protected]
+
+- Update to 5.55.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.55.0.php
+- Changes since 5.54.0:
+  * Remove unused variable + port to new connect api
+
+-------------------------------------------------------------------

Old:
----
  kemoticons-5.54.0.tar.xz

New:
----
  kemoticons-5.55.0.tar.xz

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

Other differences:
------------------
++++++ kemoticons.spec ++++++
--- /var/tmp/diff_new_pack.3BSdzK/_old  2019-02-14 14:25:24.783873097 +0100
+++ /var/tmp/diff_new_pack.3BSdzK/_new  2019-02-14 14:25:24.783873097 +0100
@@ -17,13 +17,13 @@
 
 
 %define lname   libKF5Emoticons5
-%define _tar_path 5.54
+%define _tar_path 5.55
 # 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}')}
 Name:           kemoticons
-Version:        5.54.0
+Version:        5.55.0
 Release:        0
 Summary:        Emoticon to graphical emoticon text converter
 License:        LGPL-2.1-or-later

++++++ kemoticons-5.54.0.tar.xz -> kemoticons-5.55.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kemoticons-5.54.0/CMakeLists.txt 
new/kemoticons-5.55.0/CMakeLists.txt
--- old/kemoticons-5.54.0/CMakeLists.txt        2019-01-04 22:42:17.000000000 
+0100
+++ new/kemoticons-5.55.0/CMakeLists.txt        2019-02-02 18:21:16.000000000 
+0100
@@ -1,18 +1,18 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.54.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.54.0") # handled by release scripts
+set(KF5_VERSION "5.55.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.55.0") # handled by release scripts
 project(KEmoticons VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.54.0  NO_MODULE)
+find_package(ECM 5.55.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)
 
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake)
 
-set(REQUIRED_QT_VERSION 5.9.0)
+set(REQUIRED_QT_VERSION 5.10.0)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Gui DBus)
 
 include(KDEInstallDirs)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kemoticons-5.54.0/autotests/kemoticontest.cpp 
new/kemoticons-5.55.0/autotests/kemoticontest.cpp
--- old/kemoticons-5.54.0/autotests/kemoticontest.cpp   2019-01-04 
22:42:17.000000000 +0100
+++ new/kemoticons-5.55.0/autotests/kemoticontest.cpp   2019-02-02 
18:21:16.000000000 +0100
@@ -53,7 +53,6 @@
         QString dataPath = 
QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation);
         QString destThemePath = dataPath + QLatin1String("/emoticons/");
         QVERIFY(QDir().mkpath(destThemePath));
-        const QString destPath = destThemePath + 
QString::fromLatin1(default_theme);
         QDir themeDir(destThemePath);
         QVERIFY(copyTheme(QFINDTESTDATA("default-testtheme"), themeDir, 
QString::fromLatin1(default_theme)));
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kemoticons-5.54.0/tests/main.cpp 
new/kemoticons-5.55.0/tests/main.cpp
--- old/kemoticons-5.54.0/tests/main.cpp        2019-01-04 22:42:17.000000000 
+0100
+++ new/kemoticons-5.55.0/tests/main.cpp        2019-02-02 18:21:16.000000000 
+0100
@@ -72,7 +72,7 @@
     layout->addWidget(label);
     setLayout(layout);
 
-    connect(lineEdit, SIGNAL(textChanged(QString)), this, 
SLOT(updateEmoticons()));
+    connect(lineEdit, &QLineEdit::textChanged, this, 
&KEmoTest::updateEmoticons);
     connect(comboBox, SIGNAL(activated(QString)), this, 
SLOT(changeTheme(QString)));
 }
 


Reply via email to