Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kemoticons for openSUSE:Factory 
checked in at 2021-08-16 10:07:46
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kemoticons (Old)
 and      /work/SRC/openSUSE:Factory/.kemoticons.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kemoticons"

Mon Aug 16 10:07:46 2021 rev:92 rq:912131 version:5.85.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kemoticons/kemoticons.changes    2021-07-16 
00:01:18.353133586 +0200
+++ /work/SRC/openSUSE:Factory/.kemoticons.new.1899/kemoticons.changes  
2021-08-16 10:11:53.079077480 +0200
@@ -1,0 +2,10 @@
+Fri Aug  6 12:12:22 UTC 2021 - Christophe Giboudeaux <[email protected]>
+
+- Update to 5.85.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.85.0
+- Changes since 5.84.0:
+  * Clean up unneeded JSON parameter in kcoreaddons_add_plugin
+
+-------------------------------------------------------------------

Old:
----
  kemoticons-5.84.0.tar.xz
  kemoticons-5.84.0.tar.xz.sig

New:
----
  kemoticons-5.85.0.tar.xz
  kemoticons-5.85.0.tar.xz.sig

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

Other differences:
------------------
++++++ kemoticons.spec ++++++
--- /var/tmp/diff_new_pack.BmlnmW/_old  2021-08-16 10:11:54.707075570 +0200
+++ /var/tmp/diff_new_pack.BmlnmW/_new  2021-08-16 10:11:54.711075565 +0200
@@ -17,7 +17,7 @@
 
 
 %define lname   libKF5Emoticons5
-%define _tar_path 5.84
+%define _tar_path 5.85
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -25,7 +25,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:           kemoticons
-Version:        5.84.0
+Version:        5.85.0
 Release:        0
 Summary:        Emoticon to graphical emoticon text converter
 License:        LGPL-2.1-or-later


++++++ kemoticons-5.84.0.tar.xz -> kemoticons-5.85.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kemoticons-5.84.0/CMakeLists.txt 
new/kemoticons-5.85.0/CMakeLists.txt
--- old/kemoticons-5.84.0/CMakeLists.txt        2021-06-19 17:56:42.000000000 
+0200
+++ new/kemoticons-5.85.0/CMakeLists.txt        2021-07-28 11:33:56.000000000 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.84.0") # handled by release scripts
-set(KF_DEP_VERSION "5.84.0") # handled by release scripts
+set(KF_VERSION "5.85.0") # handled by release scripts
+set(KF_DEP_VERSION "5.85.0") # handled by release scripts
 project(KEmoticons VERSION ${KF_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.84.0  NO_MODULE)
+find_package(ECM 5.85.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)
 
@@ -45,7 +45,7 @@
         DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5} COMPONENT Devel )
 
 
-# the strings throughout this library are used to search ressources
+# the strings throughout this library are used to search resources
 # so they don't need translations
 add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050f00)
 add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055100)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kemoticons-5.84.0/autotests/kemoticontest.cpp 
new/kemoticons-5.85.0/autotests/kemoticontest.cpp
--- old/kemoticons-5.84.0/autotests/kemoticontest.cpp   2021-06-19 
17:56:42.000000000 +0200
+++ new/kemoticons-5.85.0/autotests/kemoticontest.cpp   2021-07-28 
11:33:56.000000000 +0200
@@ -102,7 +102,7 @@
         QFile inputFile(inputFileName);
         QFile expectedFile(outputFileName);
         if (! expectedFile.exists()) {
-            QSKIP("Warning! expected output for testcase not found. Skiping 
testcase");
+            QSKIP("Warning! expected output for testcase not found. Skipping 
testcase");
         } else if (inputFile.open(QIODevice::ReadOnly) && 
expectedFile.open(QIODevice::ReadOnly)) {
             const QString inputData = 
QString::fromLatin1(inputFile.readAll().constData());
             const QString expectedData = 
QString::fromLatin1(expectedFile.readAll().constData());
@@ -121,7 +121,7 @@
                 QCOMPARE(result, expectedData);
             }
         } else {
-            QSKIP("Warning! can't open testcase files. Skiping testcase");
+            QSKIP("Warning! can't open testcase files. Skipping testcase");
         }
     }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kemoticons-5.84.0/src/core/kemoticonstheme.cpp 
new/kemoticons-5.85.0/src/core/kemoticonstheme.cpp
--- old/kemoticons-5.84.0/src/core/kemoticonstheme.cpp  2021-06-19 
17:56:42.000000000 +0200
+++ new/kemoticons-5.85.0/src/core/kemoticonstheme.cpp  2021-07-28 
11:33:56.000000000 +0200
@@ -236,7 +236,7 @@
                     if (p == QLatin1Char('a')) {
                         inHTMLLink = false;
                     }
-                } else if (c == QLatin1Char('a') && p == QLatin1Char('<')) { 
// check if we just entered an achor tag
+                } else if (c == QLatin1Char('a') && p == QLatin1Char('<')) { 
// check if we just entered an anchor tag
                     inHTMLLink = true; // don't put smileys in urls
                 }
                 p = c;
@@ -299,7 +299,7 @@
 
             if (!found) {
                 if (inHTMLEntity) {
-                    // If we are in an HTML entitiy such as &gt;
+                    // If we are in an HTML entity such as &gt;
                     const int htmlEnd = message.indexOf(QLatin1Char(';'), pos);
                     // Search for where it ends
                     if (htmlEnd == -1) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kemoticons-5.84.0/src/providers/adium/CMakeLists.txt 
new/kemoticons-5.85.0/src/providers/adium/CMakeLists.txt
--- old/kemoticons-5.84.0/src/providers/adium/CMakeLists.txt    2021-06-19 
17:56:42.000000000 +0200
+++ new/kemoticons-5.85.0/src/providers/adium/CMakeLists.txt    2021-07-28 
11:33:56.000000000 +0200
@@ -1,6 +1,5 @@
 kcoreaddons_add_plugin(emoticonstheme_adium
     INSTALL_NAMESPACE kf5/emoticonsthemes
-    JSON emoticonstheme_adium.json
 )
 
 target_sources(emoticonstheme_adium PRIVATE adium_emoticons.cpp)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kemoticons-5.84.0/src/providers/kde/CMakeLists.txt 
new/kemoticons-5.85.0/src/providers/kde/CMakeLists.txt
--- old/kemoticons-5.84.0/src/providers/kde/CMakeLists.txt      2021-06-19 
17:56:42.000000000 +0200
+++ new/kemoticons-5.85.0/src/providers/kde/CMakeLists.txt      2021-07-28 
11:33:56.000000000 +0200
@@ -1,6 +1,5 @@
 kcoreaddons_add_plugin(emoticonstheme_kde
     INSTALL_NAMESPACE kf5/emoticonsthemes
-    JSON emoticonstheme_kde.json
 )
 
 target_sources(emoticonstheme_kde PRIVATE kde_emoticons.cpp)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kemoticons-5.84.0/src/providers/pidgin/CMakeLists.txt 
new/kemoticons-5.85.0/src/providers/pidgin/CMakeLists.txt
--- old/kemoticons-5.84.0/src/providers/pidgin/CMakeLists.txt   2021-06-19 
17:56:42.000000000 +0200
+++ new/kemoticons-5.85.0/src/providers/pidgin/CMakeLists.txt   2021-07-28 
11:33:56.000000000 +0200
@@ -1,6 +1,5 @@
 kcoreaddons_add_plugin(emoticonstheme_pidgin
     INSTALL_NAMESPACE kf5/emoticonsthemes
-    JSON emoticonstheme_pidgin.json
 )
 
 target_sources(emoticonstheme_pidgin PRIVATE pidgin_emoticons.cpp)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kemoticons-5.84.0/src/providers/xmpp/CMakeLists.txt 
new/kemoticons-5.85.0/src/providers/xmpp/CMakeLists.txt
--- old/kemoticons-5.84.0/src/providers/xmpp/CMakeLists.txt     2021-06-19 
17:56:42.000000000 +0200
+++ new/kemoticons-5.85.0/src/providers/xmpp/CMakeLists.txt     2021-07-28 
11:33:56.000000000 +0200
@@ -1,6 +1,5 @@
 kcoreaddons_add_plugin(emoticonstheme_xmpp
     INSTALL_NAMESPACE kf5/emoticonsthemes
-    JSON emoticonstheme_xmpp.json
 )
 
 target_sources(emoticonstheme_xmpp PRIVATE xmpp_emoticons.cpp)

Reply via email to