Hello community, here is the log from the commit of package kemoticons for openSUSE:Factory checked in at 2015-03-16 09:31:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kemoticons (Old) and /work/SRC/openSUSE:Factory/.kemoticons.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kemoticons" Changes: -------- --- /work/SRC/openSUSE:Factory/kemoticons/kemoticons.changes 2015-02-16 17:31:02.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.kemoticons.new/kemoticons.changes 2015-03-16 09:31:51.000000000 +0100 @@ -1,0 +2,7 @@ +Sat Mar 7 16:58:48 UTC 2015 - [email protected] + +- Update to 5.8.0 + * For more details please see: + https://www.kde.org/announcements/kde-frameworks-5.8.0.php + +------------------------------------------------------------------- Old: ---- kemoticons-5.7.0.tar.xz New: ---- kemoticons-5.8.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kemoticons.spec ++++++ --- /var/tmp/diff_new_pack.460T0y/_old 2015-03-16 09:31:52.000000000 +0100 +++ /var/tmp/diff_new_pack.460T0y/_new 2015-03-16 09:31:52.000000000 +0100 @@ -17,13 +17,13 @@ %define lname libKF5Emoticons5 -%define _tar_path 5.7 +%define _tar_path 5.8 Name: kemoticons Version: %{_tar_path}.0 Release: 0 %define kf5_version %{version} BuildRequires: cmake >= 2.8.12 -BuildRequires: extra-cmake-modules >= 1.7.0 +BuildRequires: extra-cmake-modules >= 1.8.0 BuildRequires: fdupes BuildRequires: karchive-devel >= %{kf5_version} BuildRequires: kconfig-devel >= %{kf5_version} ++++++ kemoticons-5.7.0.tar.xz -> kemoticons-5.8.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kemoticons-5.7.0/CMakeLists.txt new/kemoticons-5.8.0/CMakeLists.txt --- old/kemoticons-5.7.0/CMakeLists.txt 2015-01-23 21:30:00.000000000 +0100 +++ new/kemoticons-5.8.0/CMakeLists.txt 2015-02-25 15:19:22.000000000 +0100 @@ -2,7 +2,7 @@ project(KEmoticons) -find_package(ECM 1.7.0 REQUIRED NO_MODULE) +find_package(ECM 1.8.0 REQUIRED NO_MODULE) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/cmake) @@ -19,8 +19,8 @@ include(ECMGenerateHeaders) include(ECMPackageConfigHelpers) -set(KF5_VERSION "5.7.0") # handled by release scripts -set(KF5_DEP_VERSION "5.7.0") # handled by release scripts +set(KF5_VERSION "5.8.0") # handled by release scripts +set(KF5_DEP_VERSION "5.8.0") # handled by release scripts ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KEMOTICONS VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/kemoticons_version.h" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kemoticons-5.7.0/src/providers/adium/adium_emoticons.h new/kemoticons-5.8.0/src/providers/adium/adium_emoticons.h --- old/kemoticons-5.7.0/src/providers/adium/adium_emoticons.h 2015-01-23 21:30:00.000000000 +0100 +++ new/kemoticons-5.8.0/src/providers/adium/adium_emoticons.h 2015-02-25 15:19:22.000000000 +0100 @@ -29,13 +29,13 @@ public: AdiumEmoticons(QObject *parent, const QVariantList &args); - bool loadTheme(const QString &path); + bool loadTheme(const QString &path) Q_DECL_OVERRIDE; - bool removeEmoticon(const QString &emo); - bool addEmoticon(const QString &emo, const QString &text, AddEmoticonOption option = DoNotCopy); - void saveTheme(); + bool removeEmoticon(const QString &emo) Q_DECL_OVERRIDE; + bool addEmoticon(const QString &emo, const QString &text, AddEmoticonOption option = DoNotCopy) Q_DECL_OVERRIDE; + void saveTheme() Q_DECL_OVERRIDE; - void newTheme(); + void newTheme() Q_DECL_OVERRIDE; private: QDomDocument m_themeXml; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kemoticons-5.7.0/src/providers/kde/kde_emoticons.h new/kemoticons-5.8.0/src/providers/kde/kde_emoticons.h --- old/kemoticons-5.7.0/src/providers/kde/kde_emoticons.h 2015-01-23 21:30:00.000000000 +0100 +++ new/kemoticons-5.8.0/src/providers/kde/kde_emoticons.h 2015-02-25 15:19:22.000000000 +0100 @@ -29,12 +29,12 @@ public: KdeEmoticons(QObject *parent, const QVariantList &args); - bool loadTheme(const QString &path); + bool loadTheme(const QString &path) Q_DECL_OVERRIDE; - bool removeEmoticon(const QString &emo); - bool addEmoticon(const QString &emo, const QString &text, AddEmoticonOption option = DoNotCopy); - void saveTheme(); - void newTheme(); + bool removeEmoticon(const QString &emo) Q_DECL_OVERRIDE; + bool addEmoticon(const QString &emo, const QString &text, AddEmoticonOption option = DoNotCopy) Q_DECL_OVERRIDE; + void saveTheme() Q_DECL_OVERRIDE; + void newTheme() Q_DECL_OVERRIDE; private: QDomDocument m_themeXml; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kemoticons-5.7.0/src/providers/pidgin/pidgin_emoticons.h new/kemoticons-5.8.0/src/providers/pidgin/pidgin_emoticons.h --- old/kemoticons-5.7.0/src/providers/pidgin/pidgin_emoticons.h 2015-01-23 21:30:00.000000000 +0100 +++ new/kemoticons-5.8.0/src/providers/pidgin/pidgin_emoticons.h 2015-02-25 15:19:22.000000000 +0100 @@ -27,13 +27,13 @@ public: PidginEmoticons(QObject *parent, const QVariantList &args); - bool loadTheme(const QString &path); + bool loadTheme(const QString &path) Q_DECL_OVERRIDE; - bool removeEmoticon(const QString &emo); - bool addEmoticon(const QString &emo, const QString &text, AddEmoticonOption option = DoNotCopy); - void saveTheme(); + bool removeEmoticon(const QString &emo) Q_DECL_OVERRIDE; + bool addEmoticon(const QString &emo, const QString &text, AddEmoticonOption option = DoNotCopy) Q_DECL_OVERRIDE; + void saveTheme() Q_DECL_OVERRIDE; - void newTheme(); + void newTheme() Q_DECL_OVERRIDE; private: QStringList m_text; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kemoticons-5.7.0/src/providers/xmpp/xmpp_emoticons.h new/kemoticons-5.8.0/src/providers/xmpp/xmpp_emoticons.h --- old/kemoticons-5.7.0/src/providers/xmpp/xmpp_emoticons.h 2015-01-23 21:30:00.000000000 +0100 +++ new/kemoticons-5.8.0/src/providers/xmpp/xmpp_emoticons.h 2015-02-25 15:19:22.000000000 +0100 @@ -29,13 +29,13 @@ public: XmppEmoticons(QObject *parent, const QVariantList &args); - bool loadTheme(const QString &path); + bool loadTheme(const QString &path) Q_DECL_OVERRIDE; - bool removeEmoticon(const QString &emo); - bool addEmoticon(const QString &emo, const QString &text, AddEmoticonOption option = DoNotCopy); - void saveTheme(); + bool removeEmoticon(const QString &emo) Q_DECL_OVERRIDE; + bool addEmoticon(const QString &emo, const QString &text, AddEmoticonOption option = DoNotCopy) Q_DECL_OVERRIDE; + void saveTheme() Q_DECL_OVERRIDE; - void newTheme(); + void newTheme() Q_DECL_OVERRIDE; private: QDomDocument m_themeXml; -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
