Hello community, here is the log from the commit of package kemoticons for openSUSE:Factory checked in at 2018-10-22 11:11:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kemoticons (Old) and /work/SRC/openSUSE:Factory/.kemoticons.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kemoticons" Mon Oct 22 11:11:27 2018 rev:57 rq:642315 version:5.51.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kemoticons/kemoticons.changes 2018-10-01 08:05:59.294366497 +0200 +++ /work/SRC/openSUSE:Factory/.kemoticons.new/kemoticons.changes 2018-10-22 11:11:36.579861927 +0200 @@ -1,0 +2,15 @@ +Tue Oct 16 08:02:08 UTC 2018 - Luca Beltrame <[email protected]> + +- Run spec-cleaner + +------------------------------------------------------------------- +Mon Oct 15 11:50:34 UTC 2018 - [email protected] + +- Update to 5.51.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/kde-frameworks-5.51.0.php +- Changes since 5.50.0: + * Fix compile with strict compiler flags + +------------------------------------------------------------------- Old: ---- kemoticons-5.50.0.tar.xz New: ---- kemoticons-5.51.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kemoticons.spec ++++++ --- /var/tmp/diff_new_pack.OMDNm7/_old 2018-10-22 11:11:37.759860976 +0200 +++ /var/tmp/diff_new_pack.OMDNm7/_new 2018-10-22 11:11:37.763860974 +0200 @@ -12,23 +12,23 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # %define lname libKF5Emoticons5 -%define _tar_path 5.50 +%define _tar_path 5.51 # 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.50.0 +Version: 5.51.0 Release: 0 Summary: Convert text emoticons to graphical emoticons License: LGPL-2.1-or-later Group: System/GUI/KDE -URL: http://www.kde.org +URL: https://www.kde.org Source: http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz Source1: baselibs.conf BuildRequires: cmake >= 3.0 ++++++ kemoticons-5.50.0.tar.xz -> kemoticons-5.51.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kemoticons-5.50.0/CMakeLists.txt new/kemoticons-5.51.0/CMakeLists.txt --- old/kemoticons-5.50.0/CMakeLists.txt 2018-09-01 00:21:20.000000000 +0200 +++ new/kemoticons-5.51.0/CMakeLists.txt 2018-10-07 12:05:46.000000000 +0200 @@ -1,11 +1,11 @@ cmake_minimum_required(VERSION 3.0) -set(KF5_VERSION "5.50.0") # handled by release scripts -set(KF5_DEP_VERSION "5.50.0") # handled by release scripts +set(KF5_VERSION "5.51.0") # handled by release scripts +set(KF5_DEP_VERSION "5.51.0") # handled by release scripts project(KEmoticons VERSION ${KF5_VERSION}) include(FeatureSummary) -find_package(ECM 5.50.0 NO_MODULE) +find_package(ECM 5.51.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) @@ -46,6 +46,11 @@ # the strings throughout this library are used to search ressources # so they don't need translations +add_definitions(-DQT_NO_CAST_FROM_ASCII) +add_definitions(-DQT_NO_CAST_TO_ASCII) +add_definitions(-DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT) +add_definitions(-DQT_NO_URL_CAST_FROM_STRING) +add_definitions(-DQT_USE_QSTRINGBUILDER) add_subdirectory(src) add_subdirectory(themes) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kemoticons-5.50.0/src/core/kemoticons.cpp new/kemoticons-5.51.0/src/core/kemoticons.cpp --- old/kemoticons-5.50.0/src/core/kemoticons.cpp 2018-09-01 00:21:20.000000000 +0200 +++ new/kemoticons-5.51.0/src/core/kemoticons.cpp 2018-10-07 12:05:46.000000000 +0200 @@ -76,7 +76,7 @@ { const QString constraint(QStringLiteral("(exist Library)")); m_oldStylePlugins = KServiceTypeTrader::self()->query(QStringLiteral("KEmoticons"), constraint); - qSort(m_oldStylePlugins.begin(), m_oldStylePlugins.end(), priorityLessThan); + std::sort(m_oldStylePlugins.begin(), m_oldStylePlugins.end(), priorityLessThan); m_plugins = KPluginLoader::findPlugins(QStringLiteral("kf5/emoticonsthemes")); std::sort(m_plugins.begin(), m_plugins.end(), [](const KPluginMetaData &s1, const KPluginMetaData &s2) { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kemoticons-5.50.0/src/core/kemoticonstheme.cpp new/kemoticons-5.51.0/src/core/kemoticonstheme.cpp --- old/kemoticons-5.50.0/src/core/kemoticonstheme.cpp 2018-09-01 00:21:20.000000000 +0200 +++ new/kemoticons-5.51.0/src/core/kemoticonstheme.cpp 2018-10-07 12:05:46.000000000 +0200 @@ -265,9 +265,9 @@ if (d->provider->emoticonsIndex().contains(c)) { emoticonList = d->provider->emoticonsIndex().value(c); if (mode & SkipHTML) { - qSort(emoticonList.begin(), emoticonList.end(), EmoticonCompareEscaped); + std::sort(emoticonList.begin(), emoticonList.end(), EmoticonCompareEscaped); } else { - qSort(emoticonList.begin(), emoticonList.end(), EmoticonCompare); + std::sort(emoticonList.begin(), emoticonList.end(), EmoticonCompare); } bool found = false; QList<KEmoticonsProvider::Emoticon>::const_iterator end = emoticonList.constEnd();
