commit sonnet for openSUSE:Factory

2020-10-12 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2020-10-12 13:57:28

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new.3486 (New)


Package is "sonnet"

Mon Oct 12 13:57:28 2020 rev:86 rq:840865 version:5.75.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2020-09-18 
14:44:37.296177863 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new.3486/sonnet.changes  2020-10-12 
13:59:03.254209581 +0200
@@ -1,0 +2,16 @@
+Mon Oct  5 08:33:47 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.75.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.75.0
+- Changes since 5.74.0:
+  * Fix cppcheck warning
+  * Compile without deprecated method against qt5.15.
+  * downgrade trigrams output
+  * Prevent unnecessary temporary container creations
+  * const'ify pointer + initialize variable
+  * Use QMultiMap in createOrderedModel
+  * Fix test_highlighter to not fail if dict not found
+
+---

Old:

  sonnet-5.74.0.tar.xz
  sonnet-5.74.0.tar.xz.sig

New:

  sonnet-5.75.0.tar.xz
  sonnet-5.75.0.tar.xz.sig



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.MSxgWX/_old  2020-10-12 13:59:03.778209799 +0200
+++ /var/tmp/diff_new_pack.MSxgWX/_new  2020-10-12 13:59:03.778209799 +0200
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.74
+%define _tar_path 5.75
 # 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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.74.0
+Version:5.75.0
 Release:0
 Summary:KDE spell checking library
 License:LGPL-2.1-or-later


++ sonnet-5.74.0.tar.xz -> sonnet-5.75.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.74.0/CMakeLists.txt 
new/sonnet-5.75.0/CMakeLists.txt
--- old/sonnet-5.74.0/CMakeLists.txt2020-09-06 12:43:02.0 +0200
+++ new/sonnet-5.75.0/CMakeLists.txt2020-10-04 20:58:41.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.74.0") # handled by release scripts
+set(KF5_VERSION "5.75.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.74.0  NO_MODULE)
+find_package(ECM 5.75.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.74.0/autotests/test_highlighter.cpp 
new/sonnet-5.75.0/autotests/test_highlighter.cpp
--- old/sonnet-5.74.0/autotests/test_highlighter.cpp2020-09-06 
12:43:02.0 +0200
+++ new/sonnet-5.75.0/autotests/test_highlighter.cpp2020-10-04 
20:58:41.0 +0200
@@ -12,6 +12,7 @@
 #include 
 #include 
 #include 
+#include 
 
 using namespace Sonnet;
 
@@ -54,7 +55,8 @@
 textEdit.setPlainText(QString::fromLatin1(s_englishSentence));
 Sonnet::Highlighter highlighter();
 highlighter.setCurrentLanguage(QStringLiteral("en"));
-QVERIFY(highlighter.spellCheckerFound());
+if(!highlighter.spellCheckerFound())
+QSKIP("'en' not available");
 highlighter.rehighlight();
 QTextCursor cursor(textEdit.document());
 
@@ -81,7 +83,9 @@
 textEdit.setPlainText(QString::fromLatin1(s_frenchSentence));
 Sonnet::Highlighter highlighter();
 highlighter.setCurrentLanguage(QStringLiteral("fr_FR"));
-QVERIFY(highlighter.spellCheckerFound());
+if (!highlighter.spellCheckerFound()) {
+QSKIP("'fr_FR' not available");
+}
 highlighter.rehighlight();
 QTextCursor cursor(textEdit.document());
 
@@ -131,6 +135,13 @@
 highlighter.rehighlight();
 QTextCursor cursor(textEdit.document());
 
+//create Speller to check if we have the language dictionaries available 
otherwise
+//this will just keep failing
+Sonnet::Speller speller;
+const auto availableLangs = speller.availableLanguages();
+bool isFrAvailable = availableLangs.indexOf(QStringLiteral("fr_FR")) != -1;
+bool isEnAvailable = 
availableLangs.indexOf(QRegularExpression(QStringLiteral("en"))) != -1;
+
 // WHEN
 cursor.setPosition(6);
 const QStringList suggestionsForHelo = 

commit sonnet for openSUSE:Factory

2020-09-18 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2020-09-18 14:43:43

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new.4249 (New)


Package is "sonnet"

Fri Sep 18 14:43:43 2020 rev:85 rq:834450 version:5.74.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2020-08-12 
12:29:38.356187530 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new.4249/sonnet.changes  2020-09-18 
14:44:37.296177863 +0200
@@ -1,0 +2,11 @@
+Sun Sep  6 12:50:37 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.74.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.74.0
+- Changes since 5.73.0:
+  * Clean forward declaration
+  * Remove obsolete COPYING files
+
+---

Old:

  sonnet-5.73.0.tar.xz
  sonnet-5.73.0.tar.xz.sig

New:

  sonnet-5.74.0.tar.xz
  sonnet-5.74.0.tar.xz.sig



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.QTfYpr/_old  2020-09-18 14:44:38.292178871 +0200
+++ /var/tmp/diff_new_pack.QTfYpr/_new  2020-09-18 14:44:38.296178875 +0200
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.73
+%define _tar_path 5.74
 # 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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.73.0
+Version:5.74.0
 Release:0
 Summary:KDE spell checking library
 License:LGPL-2.1-or-later


++ sonnet-5.73.0.tar.xz -> sonnet-5.74.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.73.0/CMakeLists.txt 
new/sonnet-5.74.0/CMakeLists.txt
--- old/sonnet-5.73.0/CMakeLists.txt2020-08-01 22:01:07.0 +0200
+++ new/sonnet-5.74.0/CMakeLists.txt2020-09-06 12:43:02.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.73.0") # handled by release scripts
+set(KF5_VERSION "5.74.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.73.0  NO_MODULE)
+find_package(ECM 5.74.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.73.0/COPYING.LIB 
new/sonnet-5.74.0/COPYING.LIB
--- old/sonnet-5.73.0/COPYING.LIB   2020-08-01 22:01:07.0 +0200
+++ new/sonnet-5.74.0/COPYING.LIB   1970-01-01 01:00:00.0 +0100
@@ -1,510 +0,0 @@
-
-  GNU LESSER GENERAL PUBLIC LICENSE
-   Version 2.1, February 1999
-
- Copyright (C) 1991, 1999 Free Software Foundation, Inc.
-   51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-[This is the first released version of the Lesser GPL.  It also counts
- as the successor of the GNU Library Public License, version 2, hence
- the version number 2.1.]
-
-Preamble
-
-  The licenses for most software are designed to take away your
-freedom to share and change it.  By contrast, the GNU General Public
-Licenses are intended to guarantee your freedom to share and change
-free software--to make sure the software is free for all its users.
-
-  This license, the Lesser General Public License, applies to some
-specially designated software packages--typically libraries--of the
-Free Software Foundation and other authors who decide to use it.  You
-can use it too, but we suggest you first think carefully about whether
-this license or the ordinary General Public License is the better
-strategy to use in any particular case, based on the explanations
-below.
-
-  When we speak of free software, we are referring to freedom of use,
-not price.  Our General Public Licenses are designed to make sure that
-you have the freedom to distribute copies of free software (and charge
-for this service if you wish); that you receive source code or can get
-it if you want it; that you can change the software and use pieces of
-it in new free programs; and that you are informed that you can do
-these things.
-
-  To protect your rights, we need to make restrictions that forbid

commit sonnet for openSUSE:Factory

2020-08-12 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2020-08-12 12:27:30

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new.3399 (New)


Package is "sonnet"

Wed Aug 12 12:27:30 2020 rev:84 rq:825124 version:5.73.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2020-07-14 
07:57:36.821464047 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new.3399/sonnet.changes  2020-08-12 
12:29:38.356187530 +0200
@@ -1,0 +2,11 @@
+Sun Aug  2 07:14:01 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.73.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.73.0
+- Changes since 5.72.0:
+  * Use KF-standardized Qt logging categories
+  * Use camelcase include. (scripted)
+
+---

Old:

  sonnet-5.72.0.tar.xz
  sonnet-5.72.0.tar.xz.sig

New:

  sonnet-5.73.0.tar.xz
  sonnet-5.73.0.tar.xz.sig



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.JKKfYN/_old  2020-08-12 12:29:38.932187839 +0200
+++ /var/tmp/diff_new_pack.JKKfYN/_new  2020-08-12 12:29:38.932187839 +0200
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.72
+%define _tar_path 5.73
 # 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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.72.0
+Version:5.73.0
 Release:0
 Summary:KDE spell checking library
 License:LGPL-2.1-or-later
@@ -141,6 +141,7 @@
 %dir %{_kf5_plugindir}/kf5
 %dir %{_kf5_plugindir}/kf5/sonnet
 %{_kf5_debugdir}/sonnet.categories
+%{_kf5_debugdir}/*.renamecategories
 %{_kf5_plugindir}/kf5/sonnet/sonnet_hunspell.so
 
 %files -n libKF5SonnetCore%{sonum}


++ sonnet-5.72.0.tar.xz -> sonnet-5.73.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.72.0/CMakeLists.txt 
new/sonnet-5.73.0/CMakeLists.txt
--- old/sonnet-5.72.0/CMakeLists.txt2020-07-04 15:27:15.0 +0200
+++ new/sonnet-5.73.0/CMakeLists.txt2020-08-01 22:01:07.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.72.0") # handled by release scripts
+set(KF5_VERSION "5.73.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.72.0  NO_MODULE)
+find_package(ECM 5.73.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.72.0/autotests/test_autodetect.cpp 
new/sonnet-5.73.0/autotests/test_autodetect.cpp
--- old/sonnet-5.72.0/autotests/test_autodetect.cpp 2020-07-04 
15:27:15.0 +0200
+++ new/sonnet-5.73.0/autotests/test_autodetect.cpp 2020-08-01 
22:01:07.0 +0200
@@ -20,7 +20,7 @@
 #include "speller.h"
 
 #include 
-#include 
+#include 
 #include 
 
 class SonnetAutoDetectTest : public QObject
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.72.0/autotests/test_core.cpp 
new/sonnet-5.73.0/autotests/test_core.cpp
--- old/sonnet-5.72.0/autotests/test_core.cpp   2020-07-04 15:27:15.0 
+0200
+++ new/sonnet-5.73.0/autotests/test_core.cpp   2020-08-01 22:01:07.0 
+0200
@@ -8,7 +8,7 @@
 #include "test_core.h"
 #include "speller.h"
 #include 
-#include 
+#include 
 #include 
 
 QTEST_GUILESS_MAIN(SonnetCoreTest)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.72.0/autotests/test_filter.cpp 
new/sonnet-5.73.0/autotests/test_filter.cpp
--- old/sonnet-5.72.0/autotests/test_filter.cpp 2020-07-04 15:27:15.0 
+0200
+++ new/sonnet-5.73.0/autotests/test_filter.cpp 2020-08-01 22:01:07.0 
+0200
@@ -9,7 +9,7 @@
 #include "test_filter.h"
 #include "tokenizer_p.h"
 #include 
-#include 
+#include 
 
 QTEST_GUILESS_MAIN(SonnetFilterTest)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.72.0/autotests/test_highlighter.cpp 
new/sonnet-5.73.0/autotests/test_highlighter.cpp
--- old/sonnet-5.72.0/autotests/test_highlighter.cpp2020-07-04 
15:27:15.0 +0200
+++ new/sonnet-5.73.0/autotests/test_highlighter.cpp2020-08-01 

commit sonnet for openSUSE:Factory

2020-07-13 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2020-07-14 07:55:11

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new.3060 (New)


Package is "sonnet"

Tue Jul 14 07:55:11 2020 rev:83 rq:820410 version:5.72.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2020-06-16 
13:45:06.661611306 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new.3060/sonnet.changes  2020-07-14 
07:57:36.821464047 +0200
@@ -1,0 +2,12 @@
+Sun Jul  5 07:55:57 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.72.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.72.0
+- Changes since 5.71.0:
+  * Fix "Using QCharRef with an index pointing outside the valid range of a 
QString"
+  * Restore default auto-detect behavior
+  * Fix default language (kde#398245)
+
+---

Old:

  sonnet-5.71.0.tar.xz
  sonnet-5.71.0.tar.xz.sig

New:

  sonnet-5.72.0.tar.xz
  sonnet-5.72.0.tar.xz.sig



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.L9eyEG/_old  2020-07-14 07:57:37.601466573 +0200
+++ /var/tmp/diff_new_pack.L9eyEG/_new  2020-07-14 07:57:37.601466573 +0200
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.71
+%define _tar_path 5.72
 # 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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.71.0
+Version:5.72.0
 Release:0
 Summary:KDE spell checking library
 License:LGPL-2.1-or-later
@@ -37,7 +37,6 @@
 %endif
 Source99:   baselibs.conf
 #BuildRequires:  aspell-devel
-BuildRequires:  cmake >= 3.0
 # Enchant plugin is currently disabled upstream
 #BuildRequires:  enchant-devel
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
@@ -137,22 +136,23 @@
 %endif
 
 %files
-%license COPYING*
+%license LICENSES/*
 %doc README*
-%{_kf5_debugdir}/sonnet.categories
 %dir %{_kf5_plugindir}/kf5
 %dir %{_kf5_plugindir}/kf5/sonnet
+%{_kf5_debugdir}/sonnet.categories
 %{_kf5_plugindir}/kf5/sonnet/sonnet_hunspell.so
 
 %files -n libKF5SonnetCore%{sonum}
-%license COPYING*
+%license LICENSES/*
 %{_kf5_libdir}/libKF5SonnetCore.so.*
 
 %files -n libKF5SonnetUi%{sonum}
-%license COPYING*
+%license LICENSES/*
 %{_kf5_libdir}/libKF5SonnetUi.so.*
 
 %files devel
+%license LICENSES/*
 %dir %{_kf5_plugindir}/designer
 %{_kf5_bindir}/gentrigrams
 %{_kf5_bindir}/parsetrigrams
@@ -164,7 +164,7 @@
 %{_kf5_plugindir}/designer/sonnetui5widgets.so
 
 %files voikko
-%license COPYING*
+%license LICENSES/*
 %{_kf5_plugindir}/kf5/sonnet/sonnet_voikko.so
 
 %changelog


++ sonnet-5.71.0.tar.xz -> sonnet-5.72.0.tar.xz ++
 17508 lines of diff (skipped)




commit sonnet for openSUSE:Factory

2020-06-16 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2020-06-16 13:44:42

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new.3606 (New)


Package is "sonnet"

Tue Jun 16 13:44:42 2020 rev:82 rq:814404 version:5.71.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2020-06-03 
20:29:36.196641147 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new.3606/sonnet.changes  2020-06-16 
13:45:06.661611306 +0200
@@ -1,0 +2,10 @@
+Sun Jun  7 08:07:14 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.71.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.71.0
+- Changes since 5.70.0:
+  * Allow overriding to disable auto language detection (kde#394347)
+
+---

Old:

  sonnet-5.70.0.tar.xz
  sonnet-5.70.0.tar.xz.sig

New:

  sonnet-5.71.0.tar.xz
  sonnet-5.71.0.tar.xz.sig



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.52qmmj/_old  2020-06-16 13:45:07.401614004 +0200
+++ /var/tmp/diff_new_pack.52qmmj/_new  2020-06-16 13:45:07.405614018 +0200
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.70
+%define _tar_path 5.71
 # 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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.70.0
+Version:5.71.0
 Release:0
 Summary:KDE spell checking library
 License:LGPL-2.1-or-later


++ sonnet-5.70.0.tar.xz -> sonnet-5.71.0.tar.xz ++
 3414 lines of diff (skipped)




commit sonnet for openSUSE:Factory

2020-06-03 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2020-06-03 20:29:29

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new.3606 (New)


Package is "sonnet"

Wed Jun  3 20:29:29 2020 rev:81 rq:810114 version:5.70.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2020-05-11 
13:34:24.272243537 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new.3606/sonnet.changes  2020-06-03 
20:29:36.196641147 +0200
@@ -1,0 +2,6 @@
+Thu May 28 21:04:29 UTC 2020 - Andreas Stieger 
+
+- Support spell checking for Finnish using Voikko in the
+  sonnet-voikko package (boo#1172245)
+
+---



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.comHOY/_old  2020-06-03 20:29:37.124643968 +0200
+++ /var/tmp/diff_new_pack.comHOY/_new  2020-06-03 20:29:37.128643980 +0200
@@ -50,6 +50,7 @@
 BuildRequires:  cmake(Qt5UiPlugin) >= 5.12.0
 BuildRequires:  cmake(Qt5Widgets) >= 5.12.0
 BuildRequires:  pkgconfig(hunspell)
+BuildRequires:  pkgconfig(libvoikko)
 %if %{with lang}
 BuildRequires:  cmake(Qt5LinguistTools) >= 5.12.0
 %endif
@@ -99,6 +100,16 @@
 applications. It supports several different plugins, including
 HSpell, Enchant, ASpell and HUNSPELL. Development files.
 
+%package voikko
+Summary:KDE spell checking library: Support for Voikko
+Group:  System/GUI/KDE
+Requires:   %{name} = %{version}
+Provides:   locale(sonnet:fi)
+
+%description voikko
+Plug-in adding Voikko based spell checking for the Finnish language
+to the Sonnet spell checking framework.
+
 %lang_package -n libKF5SonnetCore%{sonum}
 
 %prep
@@ -130,7 +141,8 @@
 %doc README*
 %{_kf5_debugdir}/sonnet.categories
 %dir %{_kf5_plugindir}/kf5
-%{_kf5_plugindir}/kf5/sonnet/
+%dir %{_kf5_plugindir}/kf5/sonnet
+%{_kf5_plugindir}/kf5/sonnet/sonnet_hunspell.so
 
 %files -n libKF5SonnetCore%{sonum}
 %license COPYING*
@@ -151,4 +163,8 @@
 %{_kf5_mkspecsdir}/qt_Sonnet*.pri
 %{_kf5_plugindir}/designer/sonnetui5widgets.so
 
+%files voikko
+%license COPYING*
+%{_kf5_plugindir}/kf5/sonnet/sonnet_voikko.so
+
 %changelog






commit sonnet for openSUSE:Factory

2020-05-11 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2020-05-11 13:31:41

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new.2738 (New)


Package is "sonnet"

Mon May 11 13:31:41 2020 rev:80 rq:802133 version:5.70.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2020-04-15 
20:05:54.922081468 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new.2738/sonnet.changes  2020-05-11 
13:34:24.272243537 +0200
@@ -1,0 +2,10 @@
+Sun May  3 09:40:21 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.70.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.70.0
+- Changes since 5.69.0:
+  * Fix sonnet autodetect test failure
+
+---

Old:

  sonnet-5.69.0.tar.xz
  sonnet-5.69.0.tar.xz.sig

New:

  sonnet-5.70.0.tar.xz
  sonnet-5.70.0.tar.xz.sig



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.UkpRTD/_old  2020-05-11 13:34:25.484246077 +0200
+++ /var/tmp/diff_new_pack.UkpRTD/_new  2020-05-11 13:34:25.488246086 +0200
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.69
+%define _tar_path 5.70
 # 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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.69.0
+Version:5.70.0
 Release:0
 Summary:KDE spell checking library
 License:LGPL-2.1-or-later


++ sonnet-5.69.0.tar.xz -> sonnet-5.70.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.69.0/CMakeLists.txt 
new/sonnet-5.70.0/CMakeLists.txt
--- old/sonnet-5.69.0/CMakeLists.txt2020-04-05 01:07:54.0 +0200
+++ new/sonnet-5.70.0/CMakeLists.txt2020-05-03 00:25:43.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.69.0") # handled by release scripts
+set(KF5_VERSION "5.70.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.69.0  NO_MODULE)
+find_package(ECM 5.70.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.69.0/autotests/test_autodetect.cpp 
new/sonnet-5.70.0/autotests/test_autodetect.cpp
--- old/sonnet-5.69.0/autotests/test_autodetect.cpp 2020-04-05 
01:07:54.0 +0200
+++ new/sonnet-5.70.0/autotests/test_autodetect.cpp 2020-05-03 
00:25:43.0 +0200
@@ -16,33 +16,50 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  * 02110-1301  USA
  */
+#include "guesslanguage.h"
+#include "speller.h"
 
 #include 
 #include 
-#include "guesslanguage.h"
+#include 
 
 class SonnetAutoDetectTest : public QObject
 {
 Q_OBJECT
 private Q_SLOTS:
-   
+void initTestCase();
 void autodetect_data();
 void autodetect();
 };
 
+using namespace Sonnet;
+
+void SonnetAutoDetectTest::initTestCase()
+{
+QStandardPaths::setTestModeEnabled(true);
+
+Speller speller(QStringLiteral("en_US"));
+
+if (speller.availableBackends().empty()) {
+QSKIP("No backends available");
+}
+
+if (!speller.availableBackends().contains(QLatin1String("Hunspell"))) {
+QSKIP("Hunspell not available");
+}
+
+speller.setDefaultClient(QStringLiteral("Hunspell"));
+speller.setAttribute(Speller::AutoDetectLanguage, true);
+}
+
 void SonnetAutoDetectTest::autodetect_data()
 {
 QTest::addColumn("sentence");
 QTest::addColumn("correct_lang");
 QTest::addColumn("suggested_langs");
-
-/* These tests will fail if you dont have the respective dictionary 
installed.
- * They will also fail if the dictionary file name is different from 
'correct_lang'
- */
-QTest::newRow("English") << QStringLiteral("This is an English sentence.") 
<< QStringLiteral("en_US-large") << QStringList{QLatin1String("en_US-large"), 
QLatin1String("de_DE"), QLatin1String("ur_PK")};
-
-QTest::newRow("German") << QStringLiteral("Dies ist ein deutscher Satz.") 
<< QStringLiteral("de_DE_frami") << QStringList{QLatin1String("hi_IN"), 
QLatin1String("pl_PL"), QLatin1String("de_DE_frami")};
-
+
+QTest::newRow("English") << QStringLiteral("This is 

commit sonnet for openSUSE:Factory

2020-04-15 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2020-04-15 20:03:31

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new.2738 (New)


Package is "sonnet"

Wed Apr 15 20:03:31 2020 rev:79 rq:793200 version:5.69.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2020-03-19 
19:48:05.476109033 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new.2738/sonnet.changes  2020-04-15 
20:05:54.922081468 +0200
@@ -1,0 +2,11 @@
+Sun Apr  5 19:46:00 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.69.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.69.0
+- Changes since 5.68.0:
+  * Fix Sonnet autodetect failing on Indian langs
+  * Create ConfigView an unmanaged ConfigWidget
+
+---

Old:

  sonnet-5.68.0.tar.xz
  sonnet-5.68.0.tar.xz.sig

New:

  sonnet-5.69.0.tar.xz
  sonnet-5.69.0.tar.xz.sig



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.yTUxHT/_old  2020-04-15 20:05:55.622081943 +0200
+++ /var/tmp/diff_new_pack.yTUxHT/_new  2020-04-15 20:05:55.626081946 +0200
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.68
+%define _tar_path 5.69
 # 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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.68.0
+Version:5.69.0
 Release:0
 Summary:KDE spell checking library
 License:LGPL-2.1-or-later


++ sonnet-5.68.0.tar.xz -> sonnet-5.69.0.tar.xz ++
 2028 lines of diff (skipped)




commit sonnet for openSUSE:Factory

2020-03-19 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2020-03-19 19:44:19

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new.3160 (New)


Package is "sonnet"

Thu Mar 19 19:44:19 2020 rev:78 rq:785367 version:5.68.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2020-02-14 
16:35:44.143530942 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new.3160/sonnet.changes  2020-03-19 
19:48:05.476109033 +0100
@@ -1,0 +2,13 @@
+Sun Mar  8 09:18:07 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.68.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.68.0.php
+- Changes since 5.67.0:
+  * Port QRegExp to QRegularExpression
+  * fix segfault at exit
+  * Use ecm_qt_install_logging_categories over manual categories file
+  * Convert license statements to SPDX
+
+---

Old:

  sonnet-5.67.0.tar.xz
  sonnet-5.67.0.tar.xz.sig

New:

  sonnet-5.68.0.tar.xz
  sonnet-5.68.0.tar.xz.sig



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.JzDaQM/_old  2020-03-19 19:48:08.432110616 +0100
+++ /var/tmp/diff_new_pack.JzDaQM/_new  2020-03-19 19:48:08.436110618 +0100
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.67
+%define _tar_path 5.68
 # 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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.67.0
+Version:5.68.0
 Release:0
 Summary:KDE spell checking library
 License:LGPL-2.1-or-later


++ sonnet-5.67.0.tar.xz -> sonnet-5.68.0.tar.xz ++
 28449 lines of diff (skipped)




commit sonnet for openSUSE:Factory

2020-02-14 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2020-02-14 16:35:16

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new.26092 (New)


Package is "sonnet"

Fri Feb 14 16:35:16 2020 rev:77 rq:773305 version:5.67.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2020-01-14 
21:08:00.114782827 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new.26092/sonnet.changes 2020-02-14 
16:35:44.143530942 +0100
@@ -1,0 +2,14 @@
+Sun Feb  2 18:07:20 UTC 2020 - Christophe Giboudeaux 
+
+- Replace %make_jobs with %cmake_build.
+
+---
+Sun Feb  2 14:33:08 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.67.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.67.0.php
+- No code change since 5.66.0
+
+---

Old:

  sonnet-5.66.0.tar.xz
  sonnet-5.66.0.tar.xz.sig

New:

  sonnet-5.67.0.tar.xz
  sonnet-5.67.0.tar.xz.sig



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.91Jp9B/_old  2020-02-14 16:35:44.511531148 +0100
+++ /var/tmp/diff_new_pack.91Jp9B/_new  2020-02-14 16:35:44.511531148 +0100
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.66
+%define _tar_path 5.67
 # 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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.66.0
+Version:5.67.0
 Release:0
 Summary:KDE spell checking library
 License:LGPL-2.1-or-later
@@ -45,13 +45,13 @@
 BuildRequires:  kf5-filesystem
 BuildRequires:  myspell-dictionaries
 BuildRequires:  pkgconfig
-BuildRequires:  cmake(Qt5Core) >= 5.11.0
-BuildRequires:  cmake(Qt5Test) >= 5.11.0
-BuildRequires:  cmake(Qt5UiPlugin) >= 5.11.0
-BuildRequires:  cmake(Qt5Widgets) >= 5.11.0
+BuildRequires:  cmake(Qt5Core) >= 5.12.0
+BuildRequires:  cmake(Qt5Test) >= 5.12.0
+BuildRequires:  cmake(Qt5UiPlugin) >= 5.12.0
+BuildRequires:  cmake(Qt5Widgets) >= 5.12.0
 BuildRequires:  pkgconfig(hunspell)
 %if %{with lang}
-BuildRequires:  cmake(Qt5LinguistTools) >= 5.11.0
+BuildRequires:  cmake(Qt5LinguistTools) >= 5.12.0
 %endif
 
 %description
@@ -92,7 +92,7 @@
 Requires:   extra-cmake-modules
 Requires:   libKF5SonnetCore%{sonum} = %{version}
 Requires:   libKF5SonnetUi%{sonum} = %{version}
-Requires:   cmake(Qt5Core) >= 5.11.0
+Requires:   cmake(Qt5Core) >= 5.12.0
 
 %description devel
 Sonnet is a plugin-based spell checking library for Qt-based
@@ -106,7 +106,7 @@
 
 %build
   %cmake_kf5 -d build -- -Dlconvert_executable=%{_kf5_libdir}/qt5/bin/lconvert
-  %make_jobs
+  %cmake_build
 
 %install
   %kf5_makeinstall -C build


++ sonnet-5.66.0.tar.xz -> sonnet-5.67.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.66.0/CMakeLists.txt 
new/sonnet-5.67.0/CMakeLists.txt
--- old/sonnet-5.66.0/CMakeLists.txt2020-01-04 11:16:55.0 +0100
+++ new/sonnet-5.67.0/CMakeLists.txt2020-02-02 13:58:02.0 +0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.66.0") # handled by release scripts
+set(KF5_VERSION "5.67.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.66.0  NO_MODULE)
+find_package(ECM 5.67.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.66.0/po/zh_CN/sonnet5_qt.po 
new/sonnet-5.67.0/po/zh_CN/sonnet5_qt.po
--- old/sonnet-5.66.0/po/zh_CN/sonnet5_qt.po2020-01-04 11:16:55.0 
+0100
+++ new/sonnet-5.67.0/po/zh_CN/sonnet5_qt.po2020-02-02 13:58:02.0 
+0100
@@ -14,8 +14,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: kdeorg\n"
-"PO-Revision-Date: 2019-11-19 23:01\n"
-"Last-Translator: Guo Yunhe (guoyunhe)\n"
+"PO-Revision-Date: 2020-01-20 21:49\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"
@@ -23,7 +22,6 @@
 "Content-Transfer-Encoding: 8bit\n"
 "X-Qt-Contexts: true\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: crowdin.com\n"
 "X-Crowdin-Project: kdeorg\n"
 "X-Crowdin-Language: 

commit sonnet for openSUSE:Factory

2020-01-14 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2020-01-14 21:04:37

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new.6675 (New)


Package is "sonnet"

Tue Jan 14 21:04:37 2020 rev:76 rq:763503 version:5.66.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2019-12-18 
14:45:11.357852743 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new.6675/sonnet.changes  2020-01-14 
21:08:00.114782827 +0100
@@ -1,0 +2,13 @@
+Sun Jan  5 09:02:29 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.66.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.66.0.php
+- Changes since 5.65.0:
+  * Fix typos in API docs
+  * Done is deprecated + missing using new signal
+  * Remove unused variable + const'ify
+  * Update the obsolete projects.kde.org URL
+
+---

Old:

  sonnet-5.65.0.tar.xz
  sonnet-5.65.0.tar.xz.sig

New:

  sonnet-5.66.0.tar.xz
  sonnet-5.66.0.tar.xz.sig



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.Ayn6X2/_old  2020-01-14 21:08:01.046783258 +0100
+++ /var/tmp/diff_new_pack.Ayn6X2/_new  2020-01-14 21:08:01.046783258 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package sonnet
 #
-# Copyright (c) 2019 SUSE LLC
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.65
+%define _tar_path 5.66
 # 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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.65.0
+Version:5.66.0
 Release:0
 Summary:KDE spell checking library
 License:LGPL-2.1-or-later


++ sonnet-5.65.0.tar.xz -> sonnet-5.66.0.tar.xz ++
 2079 lines of diff (skipped)




commit sonnet for openSUSE:Factory

2019-12-18 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2019-12-18 14:42:31

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new.4691 (New)


Package is "sonnet"

Wed Dec 18 14:42:31 2019 rev:75 rq:757079 version:5.65.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2019-11-12 
11:52:41.483172970 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new.4691/sonnet.changes  2019-12-18 
14:45:11.357852743 +0100
@@ -1,0 +2,16 @@
+Sun Dec  8 11:18:59 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 5.65.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.65.0.php
+- Changes since 5.64.0:
+  * Rename signal for avoiding overload signal
+  * Disable ispell backend with mingw
+  * fix windows compile
+  * Implement ISpellChecker backend for Windows >= 8
+  * Basic cross-compiling support for parsetrigrams
+  * no trigrams for cross compiling at the moment, like before
+  * embed trigrams.map into shared library
+
+---

Old:

  sonnet-5.64.0.tar.xz
  sonnet-5.64.0.tar.xz.sig

New:

  sonnet-5.65.0.tar.xz
  sonnet-5.65.0.tar.xz.sig



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.UKK6b8/_old  2019-12-18 14:45:12.069853069 +0100
+++ /var/tmp/diff_new_pack.UKK6b8/_new  2019-12-18 14:45:12.069853069 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package sonnet
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.64
+%define _tar_path 5.65
 # 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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.64.0
+Version:5.65.0
 Release:0
 Summary:KDE spell checking library
 License:LGPL-2.1-or-later
@@ -131,7 +131,6 @@
 %{_kf5_debugdir}/sonnet.categories
 %dir %{_kf5_plugindir}/kf5
 %{_kf5_plugindir}/kf5/sonnet/
-%{_kf5_datadir}/sonnet/
 
 %files -n libKF5SonnetCore%{sonum}
 %license COPYING*


++ sonnet-5.64.0.tar.xz -> sonnet-5.65.0.tar.xz ++
 3998 lines of diff (skipped)




commit sonnet for openSUSE:Factory

2019-11-12 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2019-11-12 11:52:36

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new.2990 (New)


Package is "sonnet"

Tue Nov 12 11:52:36 2019 rev:74 rq:747155 version:5.64.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2019-10-14 
13:40:45.541513663 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new.2990/sonnet.changes  2019-11-12 
11:52:41.483172970 +0100
@@ -1,0 +2,9 @@
+Sun Nov  3 15:47:23 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 5.64.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.64.0.php
+- No code change since 5.63.0
+
+---

Old:

  sonnet-5.63.0.tar.xz
  sonnet-5.63.0.tar.xz.sig

New:

  sonnet-5.64.0.tar.xz
  sonnet-5.64.0.tar.xz.sig



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.4WaxYk/_old  2019-11-12 11:52:43.095174618 +0100
+++ /var/tmp/diff_new_pack.4WaxYk/_new  2019-11-12 11:52:43.127174651 +0100
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.63
+%define _tar_path 5.64
 # 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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.63.0
+Version:5.64.0
 Release:0
 Summary:KDE spell checking library
 License:LGPL-2.1-or-later


++ sonnet-5.63.0.tar.xz -> sonnet-5.64.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.63.0/CMakeLists.txt 
new/sonnet-5.64.0/CMakeLists.txt
--- old/sonnet-5.63.0/CMakeLists.txt2019-10-06 11:52:29.0 +0200
+++ new/sonnet-5.64.0/CMakeLists.txt2019-11-02 14:03:05.0 +0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.63.0") # handled by release scripts
+set(KF5_VERSION "5.64.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.63.0  NO_MODULE)
+find_package(ECM 5.64.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,7 @@
 endif()
 
 add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050d00)
+add_definitions(-DQT_DEPRECATED_WARNINGS_SINCE=0x06)
 if (IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/po")
 ecm_install_po_files_as_qm(po)
 endif()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.63.0/po/et/sonnet5_qt.po 
new/sonnet-5.64.0/po/et/sonnet5_qt.po
--- old/sonnet-5.63.0/po/et/sonnet5_qt.po   2019-10-06 11:52:29.0 
+0200
+++ new/sonnet-5.64.0/po/et/sonnet5_qt.po   2019-11-02 14:03:05.0 
+0100
@@ -4,20 +4,20 @@
 # Hasso Tepper , 1999-2004, 2005, 2006.
 # Marek Laane , 2003-2009.
 # Peeter Russak , 2005.
-# Marek Laane , 2009, 2010, 2011, 2012, 2014, 2016.
+# Marek Laane , 2009, 2010, 2011, 2012, 2014, 2016, 2019.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2014-03-23 01:50+\n"
-"PO-Revision-Date: 2016-09-10 00:31+0300\n"
+"PO-Revision-Date: 2019-11-01 01:26+0200\n"
 "Last-Translator: Marek Laane \n"
-"Language-Team: Estonian \n"
+"Language-Team: Estonian \n"
 "Language: et\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 19.08.1\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
 
@@ -158,7 +158,7 @@
 #: ui/configui.ui:63
 msgctxt "SonnetConfigUI|"
 msgid "Choose your preferred languages"
-msgstr ""
+msgstr "Eelistatud keele valik"
 
 #: ui/configui.ui:71
 msgctxt "SonnetConfigUI|"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.63.0/po/id/sonnet5_qt.po 
new/sonnet-5.64.0/po/id/sonnet5_qt.po
--- old/sonnet-5.63.0/po/id/sonnet5_qt.po   2019-10-06 11:52:29.0 
+0200
+++ new/sonnet-5.64.0/po/id/sonnet5_qt.po   2019-11-02 14:03:05.0 
+0100
@@ -17,7 +17,6 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 19.04.3\n"
 "X-Qt-Contexts: 

commit sonnet for openSUSE:Factory

2019-10-14 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2019-10-14 13:40:44

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new.2352 (New)


Package is "sonnet"

Mon Oct 14 13:40:44 2019 rev:73 rq:738073 version:5.63.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2019-09-23 
12:28:02.277702452 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new.2352/sonnet.changes  2019-10-14 
13:40:45.541513663 +0200
@@ -1,0 +2,10 @@
+Sun Oct  6 13:27:08 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 5.63.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.63.0.php
+- Changes since 5.62.0:
+  * Use directly QElapsedTimer
+
+---

Old:

  sonnet-5.62.0.tar.xz
  sonnet-5.62.0.tar.xz.sig

New:

  sonnet-5.63.0.tar.xz
  sonnet-5.63.0.tar.xz.sig



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.774PO7/_old  2019-10-14 13:40:46.189511974 +0200
+++ /var/tmp/diff_new_pack.774PO7/_new  2019-10-14 13:40:46.189511974 +0200
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.62
+%define _tar_path 5.63
 # 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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.62.0
+Version:5.63.0
 Release:0
 Summary:KDE spell checking library
 License:LGPL-2.1-or-later
@@ -45,13 +45,13 @@
 BuildRequires:  kf5-filesystem
 BuildRequires:  myspell-dictionaries
 BuildRequires:  pkgconfig
-BuildRequires:  cmake(Qt5Core) >= 5.6.0
-BuildRequires:  cmake(Qt5Test) >= 5.6.0
-BuildRequires:  cmake(Qt5UiPlugin) >= 5.6.0
-BuildRequires:  cmake(Qt5Widgets) >= 5.6.0
+BuildRequires:  cmake(Qt5Core) >= 5.11.0
+BuildRequires:  cmake(Qt5Test) >= 5.11.0
+BuildRequires:  cmake(Qt5UiPlugin) >= 5.11.0
+BuildRequires:  cmake(Qt5Widgets) >= 5.11.0
 BuildRequires:  pkgconfig(hunspell)
 %if %{with lang}
-BuildRequires:  cmake(Qt5LinguistTools) >= 5.6.0
+BuildRequires:  cmake(Qt5LinguistTools) >= 5.11.0
 %endif
 
 %description
@@ -92,7 +92,7 @@
 Requires:   extra-cmake-modules
 Requires:   libKF5SonnetCore%{sonum} = %{version}
 Requires:   libKF5SonnetUi%{sonum} = %{version}
-Requires:   cmake(Qt5Core) >= 5.6.0
+Requires:   cmake(Qt5Core) >= 5.11.0
 
 %description devel
 Sonnet is a plugin-based spell checking library for Qt-based


++ sonnet-5.62.0.tar.xz -> sonnet-5.63.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.62.0/CMakeLists.txt 
new/sonnet-5.63.0/CMakeLists.txt
--- old/sonnet-5.62.0/CMakeLists.txt2019-09-07 16:52:27.0 +0200
+++ new/sonnet-5.63.0/CMakeLists.txt2019-10-06 11:52:29.0 +0200
@@ -1,11 +1,10 @@
-
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.62.0") # handled by release scripts
+set(KF5_VERSION "5.63.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.62.0  NO_MODULE)
+find_package(ECM 5.63.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.62.0/autotests/test_core.cpp 
new/sonnet-5.63.0/autotests/test_core.cpp
--- old/sonnet-5.62.0/autotests/test_core.cpp   2019-09-07 16:52:27.0 
+0200
+++ new/sonnet-5.63.0/autotests/test_core.cpp   2019-10-06 11:52:29.0 
+0200
@@ -21,7 +21,7 @@
 
 #include "test_core.h"
 #include "speller.h"
-
+#include 
 #include 
 #include 
 
@@ -46,7 +46,7 @@
   << QStringLiteral("guvernment") << QStringLiteral("farted");
 }
 
-QTime mtime;
+QElapsedTimer mtime;
 mtime.start();
 for (QStringList::Iterator itr = words.begin();
  itr != words.end(); ++itr) {
@@ -84,7 +84,7 @@
   << QStringLiteral("Regirung") << QStringLiteral("bet");
 }
 
-QTime mtime;
+QElapsedTimer mtime;
 mtime.start();
 for (QStringList::Iterator itr = words.begin();
  itr != words.end(); ++itr) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.62.0/po/se/sonnet5_qt.po 
new/sonnet-5.63.0/po/se/sonnet5_qt.po
--- 

commit sonnet for openSUSE:Factory

2019-09-23 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2019-09-23 12:27:58

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new.7948 (New)


Package is "sonnet"

Mon Sep 23 12:27:58 2019 rev:72 rq:730973 version:5.62.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2019-08-19 
21:25:44.920666284 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new.7948/sonnet.changes  2019-09-23 
12:28:02.277702452 +0200
@@ -1,0 +2,13 @@
+Sat Sep  7 20:37:20 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 5.62.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.62.0.php
+- Changes since 5.61.0:
+  * Add option to build Qt Designer plugin (BUILD_DESIGNERPLUGIN, default ON)
+  * Fix build: include QJsonArray for voikkodict.cpp needed with Qt 5.13
+  * MSVC++ needs QVector it seems.
+  * Remove unused includes
+
+---

Old:

  sonnet-5.61.0.tar.xz
  sonnet-5.61.0.tar.xz.sig

New:

  sonnet-5.62.0.tar.xz
  sonnet-5.62.0.tar.xz.sig



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.AuRA41/_old  2019-09-23 12:28:02.813702364 +0200
+++ /var/tmp/diff_new_pack.AuRA41/_new  2019-09-23 12:28:02.817702363 +0200
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.61
+%define _tar_path 5.62
 # 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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.61.0
+Version:5.62.0
 Release:0
 Summary:KDE spell checking library
 License:LGPL-2.1-or-later
@@ -129,7 +129,8 @@
 %license COPYING*
 %doc README*
 %{_kf5_debugdir}/sonnet.categories
-%{_kf5_plugindir}/
+%dir %{_kf5_plugindir}/kf5
+%{_kf5_plugindir}/kf5/sonnet/
 %{_kf5_datadir}/sonnet/
 
 %files -n libKF5SonnetCore%{sonum}
@@ -141,12 +142,14 @@
 %{_kf5_libdir}/libKF5SonnetUi.so.*
 
 %files devel
-%{_kf5_bindir}/parsetrigrams
+%dir %{_kf5_plugindir}/designer
 %{_kf5_bindir}/gentrigrams
+%{_kf5_bindir}/parsetrigrams
+%{_kf5_includedir}/
+%{_kf5_libdir}/cmake/KF5Sonnet/
 %{_kf5_libdir}/libKF5SonnetCore.so
 %{_kf5_libdir}/libKF5SonnetUi.so
-%{_kf5_libdir}/cmake/KF5Sonnet/
-%{_kf5_includedir}/
 %{_kf5_mkspecsdir}/qt_Sonnet*.pri
+%{_kf5_plugindir}/designer/sonnetui5widgets.so
 
 %changelog


++ sonnet-5.61.0.tar.xz -> sonnet-5.62.0.tar.xz ++
 7480 lines of diff (skipped)




commit sonnet for openSUSE:Factory

2019-08-19 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2019-08-19 21:25:36

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new.22127 (New)


Package is "sonnet"

Mon Aug 19 21:25:36 2019 rev:71 rq:722511 version:5.61.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2019-07-26 
12:23:05.222518497 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new.22127/sonnet.changes 2019-08-19 
21:25:44.920666284 +0200
@@ -1,0 +2,15 @@
+Wed Aug  7 17:51:59 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 5.61.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.61.0.php
+- Changes since 5.60.0:
+  * Remove explicit use of ECM_KDE_MODULE_DIR, is part of ECM_MODULE_PATH
+
+---
+Fri Jul 19 11:49:38 UTC 2019 - Wolfgang Bauer 
+
+- Don't lower minimum Qt version anymore, it requires 5.11 now
+
+---

Old:

  sonnet-5.60.0.tar.xz

New:

  frameworks.keyring
  sonnet-5.61.0.tar.xz
  sonnet-5.61.0.tar.xz.sig



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.GVDIQf/_old  2019-08-19 21:25:45.948666075 +0200
+++ /var/tmp/diff_new_pack.GVDIQf/_new  2019-08-19 21:25:45.952666075 +0200
@@ -17,21 +17,25 @@
 
 
 %define sonum   5
-%define _tar_path 5.60
+%define _tar_path 5.61
 # 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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.60.0
+Version:5.61.0
 Release:0
 Summary:KDE spell checking library
 License:LGPL-2.1-or-later
 Group:  System/GUI/KDE
 URL:https://www.kde.org
-Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
-Source1:baselibs.conf
+Source: 
https://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
+%if %{with lang}
+Source1:
https://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz.sig
+Source2:frameworks.keyring
+%endif
+Source99:   baselibs.conf
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 3.0
 # Enchant plugin is currently disabled upstream
@@ -43,6 +47,7 @@
 BuildRequires:  pkgconfig
 BuildRequires:  cmake(Qt5Core) >= 5.6.0
 BuildRequires:  cmake(Qt5Test) >= 5.6.0
+BuildRequires:  cmake(Qt5UiPlugin) >= 5.6.0
 BuildRequires:  cmake(Qt5Widgets) >= 5.6.0
 BuildRequires:  pkgconfig(hunspell)
 %if %{with lang}
@@ -98,9 +103,6 @@
 
 %prep
 %setup -q
-%if 0%{?suse_version} == 1500
-sed -i -e "s/^set *(REQUIRED_QT_VERSION 5.10.0)$/set(REQUIRED_QT_VERSION 
5.9.0)/" CMakeLists.txt
-%endif
 
 %build
   %cmake_kf5 -d build -- -Dlconvert_executable=%{_kf5_libdir}/qt5/bin/lconvert

++ sonnet-5.60.0.tar.xz -> sonnet-5.61.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.60.0/CMakeLists.txt 
new/sonnet-5.61.0/CMakeLists.txt
--- old/sonnet-5.60.0/CMakeLists.txt2019-07-07 20:40:27.0 +0200
+++ new/sonnet-5.61.0/CMakeLists.txt2019-08-03 22:01:15.0 +0200
@@ -1,16 +1,16 @@
 
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.60.0") # handled by release scripts
+set(KF5_VERSION "5.61.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.60.0  NO_MODULE)
+find_package(ECM 5.61.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(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake )
 
 include(KDEInstallDirs)
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.60.0/po/gl/sonnet5_qt.po 
new/sonnet-5.61.0/po/gl/sonnet5_qt.po
--- old/sonnet-5.60.0/po/gl/sonnet5_qt.po   2019-07-07 20:40:27.0 
+0200
+++ new/sonnet-5.61.0/po/gl/sonnet5_qt.po   2019-08-03 22:01:15.0 
+0200
@@ -24,10 +24,6 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 

commit sonnet for openSUSE:Factory

2019-07-26 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2019-07-26 12:23:02

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new.4126 (New)


Package is "sonnet"

Fri Jul 26 12:23:02 2019 rev:70 rq:715923 version:5.60.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2019-06-22 
11:16:24.824915443 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new.4126/sonnet.changes  2019-07-26 
12:23:05.222518497 +0200
@@ -1,0 +2,10 @@
+Sun Jul 14 06:41:40 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.60.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.60.0.php
+- Changes since 5.59.0:
+  * Install in new logging directory when we use kf5 5.59.0
+
+---

Old:

  sonnet-5.59.0.tar.xz

New:

  sonnet-5.60.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.UshOeQ/_old  2019-07-26 12:23:05.854518250 +0200
+++ /var/tmp/diff_new_pack.UshOeQ/_new  2019-07-26 12:23:05.854518250 +0200
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.59
+%define _tar_path 5.60
 # 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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.59.0
+Version:5.60.0
 Release:0
 Summary:KDE spell checking library
 License:LGPL-2.1-or-later

++ sonnet-5.59.0.tar.xz -> sonnet-5.60.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.59.0/CMakeLists.txt 
new/sonnet-5.60.0/CMakeLists.txt
--- old/sonnet-5.59.0/CMakeLists.txt2019-06-01 19:03:26.0 +0200
+++ new/sonnet-5.60.0/CMakeLists.txt2019-07-07 20:40:27.0 +0200
@@ -1,11 +1,11 @@
 
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.59.0") # handled by release scripts
+set(KF5_VERSION "5.60.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.59.0  NO_MODULE)
+find_package(ECM 5.60.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)
 
@@ -17,7 +17,7 @@
 include(KDECMakeSettings)
 include(ECMQtDeclareLoggingCategory)
 
-set(REQUIRED_QT_VERSION 5.10.0)
+set(REQUIRED_QT_VERSION 5.11.0)
 option(SONNET_USE_WIDGETS "Build components using Qt5Widgets" ON)
 if(SONNET_USE_WIDGETS)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Widgets)
@@ -87,6 +87,6 @@
 DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5} COMPONENT Devel )
 
 # contains list of debug categories, for kdebugsettings
-install(FILES sonnet.categories DESTINATION ${KDE_INSTALL_CONFDIR})
+install(FILES sonnet.categories  DESTINATION  
${KDE_INSTALL_LOGGINGCATEGORIESDIR})
 
 feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.59.0/po/ca@valencia/sonnet5_qt.po 
new/sonnet-5.60.0/po/ca@valencia/sonnet5_qt.po
--- old/sonnet-5.59.0/po/ca@valencia/sonnet5_qt.po  2019-06-01 
19:03:26.0 +0200
+++ new/sonnet-5.60.0/po/ca@valencia/sonnet5_qt.po  2019-07-07 
20:40:27.0 +0200
@@ -1,5 +1,5 @@
 # Translation of sonnet5_qt.po to Catalan (Valencian)
-# Copyright (C) 1998-2018 This_file_is_part_of_KDE
+# Copyright (C) 1998-2019 This_file_is_part_of_KDE
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
@@ -9,22 +9,24 @@
 # Josep Ma. Ferrer , 2007, 2008, 2009, 2010, 2011, 2012, 
2013, 2014, 2015, 2017, 2018.
 # Robert Millan , 2009.
 # Orestes Mas , 2010.
+# Empar , 2019.
 msgid ""
 msgstr ""
 "Project-Id-Version: sonnet5_qt\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2014-03-23 01:50+\n"
-"PO-Revision-Date: 2018-12-10 20:06+0100\n"
-"Last-Translator: Josep Ma. Ferrer \n"
+"PO-Revision-Date: 2019-06-18 09:26+0200\n"
+"Last-Translator: Empar \n"
 "Language-Team: Catalan \n"
 "Language: ca@valencia\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 2.0\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 

commit sonnet for openSUSE:Factory

2019-06-22 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2019-06-22 11:16:21

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new.4615 (New)


Package is "sonnet"

Sat Jun 22 11:16:21 2019 rev:69 rq:710785 version:5.59.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2019-05-21 
10:34:32.707314627 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new.4615/sonnet.changes  2019-06-22 
11:16:24.824915443 +0200
@@ -1,0 +2,9 @@
+Sun Jun 09 07:35:14 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.59.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.59.0.php
+- No code changes since 5.58.0
+
+---

Old:

  sonnet-5.58.0.tar.xz

New:

  sonnet-5.59.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.L1OtJ7/_old  2019-06-22 11:16:25.356916013 +0200
+++ /var/tmp/diff_new_pack.L1OtJ7/_new  2019-06-22 11:16:25.360916018 +0200
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.58
+%define _tar_path 5.59
 # 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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.58.0
+Version:5.59.0
 Release:0
 Summary:KDE spell checking library
 License:LGPL-2.1-or-later

++ sonnet-5.58.0.tar.xz -> sonnet-5.59.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.58.0/CMakeLists.txt 
new/sonnet-5.59.0/CMakeLists.txt
--- old/sonnet-5.58.0/CMakeLists.txt2019-05-07 13:31:45.0 +0200
+++ new/sonnet-5.59.0/CMakeLists.txt2019-06-01 19:03:26.0 +0200
@@ -1,11 +1,11 @@
 
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.58.0") # handled by release scripts
+set(KF5_VERSION "5.59.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.58.0  NO_MODULE)
+find_package(ECM 5.59.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.58.0/po/da/sonnet5_qt.po 
new/sonnet-5.59.0/po/da/sonnet5_qt.po
--- old/sonnet-5.58.0/po/da/sonnet5_qt.po   2019-05-07 13:31:45.0 
+0200
+++ new/sonnet-5.59.0/po/da/sonnet5_qt.po   2019-06-01 19:03:26.0 
+0200
@@ -2,14 +2,14 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Martin Schlander , 2008, 2009, 2010, 2011, 2012, 
2013, 2014, 2015.
+# Martin Schlander , 2008, 2009, 2010, 2011, 2012, 
2013, 2014, 2015, 2019.
 # Keld Simonsen , 2010.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2014-03-23 01:50+\n"
-"PO-Revision-Date: 2015-11-22 22:40+0100\n"
+"PO-Revision-Date: 2019-05-07 12:29+0100\n"
 "Last-Translator: Martin Schlander \n"
 "Language-Team: Danish \n"
 "Language: da\n"
@@ -157,7 +157,7 @@
 #: ui/configui.ui:63
 msgctxt "SonnetConfigUI|"
 msgid "Choose your preferred languages"
-msgstr ""
+msgstr "Vælg dit foretrukne sprog"
 
 #: ui/configui.ui:71
 msgctxt "SonnetConfigUI|"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.58.0/po/ko/sonnet5_qt.po 
new/sonnet-5.59.0/po/ko/sonnet5_qt.po
--- old/sonnet-5.58.0/po/ko/sonnet5_qt.po   2019-05-07 13:31:45.0 
+0200
+++ new/sonnet-5.59.0/po/ko/sonnet5_qt.po   2019-06-01 19:03:26.0 
+0200
@@ -1,8 +1,7 @@
 # Korean messages for kdelibs.
 # Copyright (C) Free Software Foundation, Inc.
 # Cho Sung Jae , 2007.
-# Shinjo Park , 2007, 2008, 2009, 2010, 2011.
-# Shinjo Park , 2011, 2012, 2013, 2014, 2015, 2016, 2019.
+# Shinjo Park , 2007, 2008, 2009, 2010, 2011, 2012, 2013, 
2014, 2015, 2016, 2019.
 #
 msgid ""
 msgstr ""
@@ -11,7 +10,7 @@
 "POT-Creation-Date: 2014-03-23 01:50+\n"
 "PO-Revision-Date: 2019-04-12 00:57+0100\n"
 "Last-Translator: Shinjo Park \n"
-"Language-Team: Korean \n"
+"Language-Team: Korean \n"
 "Language: ko\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"




commit sonnet for openSUSE:Factory

2019-05-21 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2019-05-21 10:34:31

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new.5148 (New)


Package is "sonnet"

Tue May 21 10:34:31 2019 rev:68 rq:703395 version:5.58.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2019-04-19 
21:25:34.827965641 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new.5148/sonnet.changes  2019-05-21 
10:34:32.707314627 +0200
@@ -1,0 +2,9 @@
+Wed May 15 18:16:19 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.58.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.58.0.php
+- No code changes since 5.57.0
+
+---

Old:

  sonnet-5.57.0.tar.xz

New:

  sonnet-5.58.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.9qKJXD/_old  2019-05-21 10:34:33.239314281 +0200
+++ /var/tmp/diff_new_pack.9qKJXD/_new  2019-05-21 10:34:33.243314279 +0200
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.57
+%define _tar_path 5.58
 # 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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.57.0
+Version:5.58.0
 Release:0
 Summary:KDE spell checking library
 License:LGPL-2.1-or-later

++ sonnet-5.57.0.tar.xz -> sonnet-5.58.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.57.0/CMakeLists.txt 
new/sonnet-5.58.0/CMakeLists.txt
--- old/sonnet-5.57.0/CMakeLists.txt2019-04-07 09:35:10.0 +0200
+++ new/sonnet-5.58.0/CMakeLists.txt2019-05-07 13:31:45.0 +0200
@@ -1,11 +1,11 @@
 
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.57.0") # handled by release scripts
+set(KF5_VERSION "5.58.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.57.0  NO_MODULE)
+find_package(ECM 5.58.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.57.0/po/eu/sonnet5_qt.po 
new/sonnet-5.58.0/po/eu/sonnet5_qt.po
--- old/sonnet-5.57.0/po/eu/sonnet5_qt.po   2019-04-07 09:35:10.0 
+0200
+++ new/sonnet-5.58.0/po/eu/sonnet5_qt.po   2019-05-07 13:31:45.0 
+0200
@@ -1,20 +1,22 @@
-# translation of kdelibs4.po to Euskara/Basque (eu)
-# KDE: EUSKERA TRANSLATION
-# Copyright (C) 1999,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011, Free 
Software Foundation, Inc.
+# Translation of sonnet5_qt.po to Euskara/Basque (eu).
+# Copyright (C) 1999-2011, Free Software Foundation, Inc.
+# Copyright (C) 2012-2019, This file is copyright:
+# This file is distributed under the same 
 #
+# Translators:
 # Marcos , 2002,2003, 2004, 2005.
 # Ion Gaztañaga , 2005.
 # marcos , 2006, 2007, 2008, 2009, 2010.
 # Iñaki Larrañaga Murgoitio , 2009.
-# Iñigo Salvador Azurmendi , 2010, 2011, 2012, 2013, 
2014, 2017.
+# Iñigo Salvador Azurmendi , 2010, 2011, 2012, 2013, 
2014, 2017, 2019.
 msgid ""
 msgstr ""
-"Project-Id-Version: kdelibs4\n"
+"Project-Id-Version: sonnet5_qt\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2014-03-23 01:50+\n"
-"PO-Revision-Date: 2017-07-20 20:45+0100\n"
+"PO-Revision-Date: 2019-04-29 00:15+0100\n"
 "Last-Translator: Iñigo Salvador Azurmendi \n"
-"Language-Team: Basque \n"
+"Language-Team: Basque \n"
 "Language: eu\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -160,7 +162,7 @@
 #: ui/configui.ui:63
 msgctxt "SonnetConfigUI|"
 msgid "Choose your preferred languages"
-msgstr ""
+msgstr "Hautatu zure hizkuntza hobetsiak"
 
 #: ui/configui.ui:71
 msgctxt "SonnetConfigUI|"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.57.0/po/id/sonnet5_qt.po 
new/sonnet-5.58.0/po/id/sonnet5_qt.po
--- old/sonnet-5.57.0/po/id/sonnet5_qt.po   2019-04-07 09:35:10.0 
+0200
+++ new/sonnet-5.58.0/po/id/sonnet5_qt.po   2019-05-07 13:31:45.0 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2014-03-23 

commit sonnet for openSUSE:Factory

2019-04-19 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2019-04-19 21:25:33

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new.5536 (New)


Package is "sonnet"

Fri Apr 19 21:25:33 2019 rev:67 rq:695268 version:5.57.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2019-03-21 
09:50:07.230840448 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new.5536/sonnet.changes  2019-04-19 
21:25:34.827965641 +0200
@@ -1,0 +2,10 @@
+Sun Apr 14 20:21:45 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.57.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.57.0.php
+- Changes since 5.56.0:
+  * Sonnet compiles fine without foreach support
+
+---

Old:

  sonnet-5.56.0.tar.xz

New:

  sonnet-5.57.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.f1IbBR/_old  2019-04-19 21:25:35.347966303 +0200
+++ /var/tmp/diff_new_pack.f1IbBR/_new  2019-04-19 21:25:35.351966308 +0200
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.56
+%define _tar_path 5.57
 # 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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.56.0
+Version:5.57.0
 Release:0
 Summary:KDE spell checking library
 License:LGPL-2.1-or-later

++ sonnet-5.56.0.tar.xz -> sonnet-5.57.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.56.0/CMakeLists.txt 
new/sonnet-5.57.0/CMakeLists.txt
--- old/sonnet-5.56.0/CMakeLists.txt2019-03-02 14:52:29.0 +0100
+++ new/sonnet-5.57.0/CMakeLists.txt2019-04-07 09:35:10.0 +0200
@@ -1,11 +1,11 @@
 
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.56.0") # handled by release scripts
+set(KF5_VERSION "5.57.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.56.0  NO_MODULE)
+find_package(ECM 5.57.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)
 
@@ -44,7 +44,7 @@
 if (IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/po")
 ecm_install_po_files_as_qm(po)
 endif()
-
+add_definitions(-DQT_NO_FOREACH)
 add_subdirectory(src)
 if (BUILD_TESTING)
  add_subdirectory(autotests)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.56.0/po/en_GB/sonnet5_qt.po 
new/sonnet-5.57.0/po/en_GB/sonnet5_qt.po
--- old/sonnet-5.56.0/po/en_GB/sonnet5_qt.po2019-03-02 14:52:29.0 
+0100
+++ new/sonnet-5.57.0/po/en_GB/sonnet5_qt.po2019-04-07 09:35:10.0 
+0200
@@ -2,22 +2,22 @@
 # Malcolm Hunter , 2002,2003,2004, 2005, 2006, 2007, 
2008, 2009.
 # Jonathan Riddell , 2003.
 # Andrew Coles , 2004, 2005, 2009, 2010.
-# Steve Allewell , 2014, 2015.
+# Steve Allewell , 2014, 2015, 2019.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2014-03-23 01:50+\n"
-"PO-Revision-Date: 2015-11-21 17:33+\n"
+"PO-Revision-Date: 2019-03-24 19:22+\n"
 "Last-Translator: Steve Allewell \n"
-"Language-Team: British English \n"
+"Language-Team: British English \n"
 "Language: en_GB\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 19.07.70\n"
 
 #: core/loader.cpp:190
 msgctxt "Sonnet::Loader|dictionary variant"
@@ -156,7 +156,7 @@
 #: ui/configui.ui:63
 msgctxt "SonnetConfigUI|"
 msgid "Choose your preferred languages"
-msgstr ""
+msgstr "Choose your preferred languages"
 
 #: ui/configui.ui:71
 msgctxt "SonnetConfigUI|"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.56.0/po/id/sonnet5_qt.po 
new/sonnet-5.57.0/po/id/sonnet5_qt.po
--- old/sonnet-5.56.0/po/id/sonnet5_qt.po   2019-03-02 14:52:29.0 
+0100
+++ new/sonnet-5.57.0/po/id/sonnet5_qt.po   2019-04-07 09:35:10.0 
+0200
@@ -16,7 +16,7 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 

commit sonnet for openSUSE:Factory

2019-03-21 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2019-03-21 09:50:05

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new.28833 (New)


Package is "sonnet"

Thu Mar 21 09:50:05 2019 rev:66 rq:686784 version:5.56.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2019-02-28 
21:33:33.729731548 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new.28833/sonnet.changes 2019-03-21 
09:50:07.230840448 +0100
@@ -1,0 +2,12 @@
+Sun Mar 10 20:15:38 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.56.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.56.0.php
+- Changes since 5.55.0:
+  * It compiles fine with qt5.13
+  * Port deprecated methods
+  * Handle the case if createSpeller is passed an unavailable language
+
+---

Old:

  sonnet-5.55.0.tar.xz

New:

  sonnet-5.56.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.lLitP0/_old  2019-03-21 09:50:08.094840214 +0100
+++ /var/tmp/diff_new_pack.lLitP0/_new  2019-03-21 09:50:08.094840214 +0100
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.55
+%define _tar_path 5.56
 # 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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.55.0
+Version:5.56.0
 Release:0
 Summary:KDE spell checking library
 License:LGPL-2.1-or-later

++ sonnet-5.55.0.tar.xz -> sonnet-5.56.0.tar.xz ++
 16193 lines of diff (skipped)




commit sonnet for openSUSE:Factory

2019-02-28 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2019-02-28 21:33:32

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new.28833 (New)


Package is "sonnet"

Thu Feb 28 21:33:32 2019 rev:65 rq:678732 version:5.55.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2019-02-14 
14:29:55.399747121 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new.28833/sonnet.changes 2019-02-28 
21:33:33.729731548 +0100
@@ -1,0 +2,5 @@
+Fri Feb 15 09:25:42 UTC 2019 - alarr...@suse.com
+
+- Downgrade the Qt version requirement to build with 5.9
+
+---



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.rPZScJ/_old  2019-02-28 21:33:35.093731119 +0100
+++ /var/tmp/diff_new_pack.rPZScJ/_new  2019-02-28 21:33:35.105731116 +0100
@@ -98,6 +98,9 @@
 
 %prep
 %setup -q
+%if 0%{?suse_version} == 1500
+sed -i -e "s/^set *(REQUIRED_QT_VERSION 5.10.0)$/set(REQUIRED_QT_VERSION 
5.9.0)/" CMakeLists.txt
+%endif
 
 %build
   %cmake_kf5 -d build -- -Dlconvert_executable=%{_kf5_libdir}/qt5/bin/lconvert




commit sonnet for openSUSE:Factory

2019-02-14 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2019-02-14 14:29:35

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new.28833 (New)


Package is "sonnet"

Thu Feb 14 14:29:35 2019 rev:64 rq:674284 version:5.55.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2019-01-21 
10:23:41.889859896 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new.28833/sonnet.changes 2019-02-14 
14:29:55.399747121 +0100
@@ -1,0 +2,14 @@
+Sun Feb 10 22:03:25 UTC 2019 - lbeltr...@kde.org
+
+- 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:
+  * Ignore files
+  * Avoid using trimmed method
+  * Don't call this code if we have only space
+  * GuessLanguage: Delete copy constructor and assignment operator
+  * delete copy constructor and assignment operator of some internal classes
+
+---

Old:

  sonnet-5.54.0.tar.xz

New:

  sonnet-5.55.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.SlsBHw/_old  2019-02-14 14:29:55.951746867 +0100
+++ /var/tmp/diff_new_pack.SlsBHw/_new  2019-02-14 14:29:55.951746867 +0100
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.54.0
+Version:5.55.0
 Release:0
 Summary:KDE spell checking library
 License:LGPL-2.1-or-later

++ sonnet-5.54.0.tar.xz -> sonnet-5.55.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.54.0/.gitignore new/sonnet-5.55.0/.gitignore
--- old/sonnet-5.54.0/.gitignore1970-01-01 01:00:00.0 +0100
+++ new/sonnet-5.55.0/.gitignore2019-02-03 01:06:25.0 +0100
@@ -0,0 +1,21 @@
+# Ignore the following files
+*~
+*.[oa]
+*.diff
+*.kate-swp
+*.kdev4
+.kdev_include_paths
+*.kdevelop.pcs
+*.moc
+*.moc.cpp
+*.orig
+*.user
+.*.swp
+.swp.*
+Doxyfile
+Makefile
+avail
+random_seed
+/build*/
+CMakeLists.txt.user*
+*.unc-backup*
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.54.0/CMakeLists.txt 
new/sonnet-5.55.0/CMakeLists.txt
--- old/sonnet-5.54.0/CMakeLists.txt2019-01-06 21:29:23.0 +0100
+++ new/sonnet-5.55.0/CMakeLists.txt2019-02-03 01:06:25.0 +0100
@@ -1,11 +1,11 @@
 
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.54.0") # handled by release scripts
+set(KF5_VERSION "5.55.0") # handled by release scripts
 project(Sonnet 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)
 
@@ -17,7 +17,7 @@
 include(KDECMakeSettings)
 include(ECMQtDeclareLoggingCategory)
 
-set(REQUIRED_QT_VERSION 5.9.0)
+set(REQUIRED_QT_VERSION 5.10.0)
 option(SONNET_USE_WIDGETS "Build components using Qt5Widgets" ON)
 if(SONNET_USE_WIDGETS)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Widgets)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.54.0/po/ca/sonnet5_qt.po 
new/sonnet-5.55.0/po/ca/sonnet5_qt.po
--- old/sonnet-5.54.0/po/ca/sonnet5_qt.po   2019-01-06 21:29:23.0 
+0100
+++ new/sonnet-5.55.0/po/ca/sonnet5_qt.po   2019-02-03 01:06:25.0 
+0100
@@ -12,7 +12,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: sonnet5_qt\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n;
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2014-03-23 01:50+\n"
 "PO-Revision-Date: 2018-12-10 20:06+0100\n"
 "Last-Translator: Josep Ma. Ferrer \n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.54.0/po/ca@valencia/sonnet5_qt.po 
new/sonnet-5.55.0/po/ca@valencia/sonnet5_qt.po
--- old/sonnet-5.54.0/po/ca@valencia/sonnet5_qt.po  2019-01-06 
21:29:23.0 +0100
+++ new/sonnet-5.55.0/po/ca@valencia/sonnet5_qt.po  2019-02-03 
01:06:25.0 +0100
@@ -12,7 +12,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: sonnet5_qt\n"

commit sonnet for openSUSE:Factory

2019-01-21 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2019-01-21 10:23:39

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new.28833 (New)


Package is "sonnet"

Mon Jan 21 10:23:39 2019 rev:63 rq:665876 version:5.54.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2018-12-19 
13:45:18.487628501 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new.28833/sonnet.changes 2019-01-21 
10:23:41.889859896 +0100
@@ -1,0 +2,14 @@
+Mon Jan 14 06:08:56 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.54.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.54.0.php
+- Changes since 5.53.0:
+  * Add method to BackgroundChecker to add word to session
+  * Avoid Q_FOREACH
+  * DictionaryComboBox: Keep user preferred dictionaries on top
+  * Loader: Avoid Q_FOREACH
+  * Dialog: Use DictionaryComboBox instead of plain QComboBox
+
+---

Old:

  sonnet-5.53.0.tar.xz

New:

  sonnet-5.54.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.h78EVw/_old  2019-01-21 10:23:42.381859354 +0100
+++ /var/tmp/diff_new_pack.h78EVw/_new  2019-01-21 10:23:42.381859354 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package sonnet
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.53
+%define _tar_path 5.54
 # 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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.53.0
+Version:5.54.0
 Release:0
 Summary:KDE spell checking library
 License:LGPL-2.1-or-later

++ sonnet-5.53.0.tar.xz -> sonnet-5.54.0.tar.xz ++
 12273 lines of diff (skipped)




commit sonnet for openSUSE:Factory

2018-12-19 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2018-12-19 13:44:58

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new.28833 (New)


Package is "sonnet"

Wed Dec 19 13:44:58 2018 rev:62 rq:658608 version:5.53.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2018-11-14 
14:40:50.902863164 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new.28833/sonnet.changes 2018-12-19 
13:45:18.487628501 +0100
@@ -1,0 +2,12 @@
+Sun Dec 09 19:43:46 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.53.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.53.0.php
+- Changes since 5.52.0:
+  * DictionaryComboBoxTest: Add stretch to avoid expanding Dump button
+  * Use new syntax
+  * Remove virtual keyword
+
+---

Old:

  sonnet-5.52.0.tar.xz

New:

  sonnet-5.53.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.KjnOI1/_old  2018-12-19 13:45:21.123624811 +0100
+++ /var/tmp/diff_new_pack.KjnOI1/_new  2018-12-19 13:45:21.127624806 +0100
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.52
+%define _tar_path 5.53
 # 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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.52.0
+Version:5.53.0
 Release:0
 Summary:KDE spell checking library
 License:LGPL-2.1-or-later

++ sonnet-5.52.0.tar.xz -> sonnet-5.53.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.52.0/CMakeLists.txt 
new/sonnet-5.53.0/CMakeLists.txt
--- old/sonnet-5.52.0/CMakeLists.txt2018-11-03 19:06:56.0 +0100
+++ new/sonnet-5.53.0/CMakeLists.txt2018-12-01 16:01:34.0 +0100
@@ -1,11 +1,11 @@
 
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.52.0") # handled by release scripts
+set(KF5_VERSION "5.53.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.52.0  NO_MODULE)
+find_package(ECM 5.53.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)
 
@@ -17,7 +17,7 @@
 include(KDECMakeSettings)
 include(ECMQtDeclareLoggingCategory)
 
-set(REQUIRED_QT_VERSION 5.8.0)
+set(REQUIRED_QT_VERSION 5.9.0)
 option(SONNET_USE_WIDGETS "Build components using Qt5Widgets" ON)
 if(SONNET_USE_WIDGETS)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Widgets)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.52.0/examples/dictionarycombobox.cpp 
new/sonnet-5.53.0/examples/dictionarycombobox.cpp
--- old/sonnet-5.52.0/examples/dictionarycombobox.cpp   2018-11-03 
19:06:56.0 +0100
+++ new/sonnet-5.53.0/examples/dictionarycombobox.cpp   2018-12-01 
16:01:34.0 +0100
@@ -34,7 +34,7 @@
 {
 QHBoxLayout *topLayout = new QHBoxLayout(this);
 dcb = new DictionaryComboBox(this);
-topLayout->addWidget(dcb);
+topLayout->addWidget(dcb, 1);
 connect(dcb, SIGNAL(dictionaryChanged(QString)), 
SLOT(dictChanged(QString)));
 connect(dcb, SIGNAL(dictionaryNameChanged(QString)), 
SLOT(dictNameChanged(QString)));
 QPushButton *btn = new QPushButton(QStringLiteral("Dump"), this);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.52.0/po/id/sonnet5_qt.po 
new/sonnet-5.53.0/po/id/sonnet5_qt.po
--- old/sonnet-5.52.0/po/id/sonnet5_qt.po   2018-11-03 19:06:56.0 
+0100
+++ new/sonnet-5.53.0/po/id/sonnet5_qt.po   2018-12-01 16:01:34.0 
+0100
@@ -9,8 +9,8 @@
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2014-03-23 01:50+\n"
-"PO-Revision-Date: 2018-07-23 06:27+0700\n"
-"Last-Translator: wantoyo \n"
+"PO-Revision-Date: 2018-11-23 07:48+0700\n"
+"Last-Translator: Wantoyo \n"
 "Language-Team: Indonesian \n"
 "Language: id\n"
 "MIME-Version: 1.0\n"
@@ -152,17 +152,17 @@
 #: ui/configui.ui:47
 msgctxt "SonnetConfigUI|"
 msgid "Enable autodetection of "
-msgstr "Aktifkan deteksi otomatis "
+msgstr "Fungsikan deteksi otomatis "
 
 #: ui/configui.ui:54
 msgctxt 

commit sonnet for openSUSE:Factory

2018-11-14 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2018-11-14 14:39:44

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Wed Nov 14 14:39:44 2018 rev:61 rq:648559 version:5.52.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2018-10-22 
11:19:41.691379275 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2018-11-14 
14:40:50.902863164 +0100
@@ -1,0 +2,12 @@
+Sun Nov 11 19:48:09 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.52.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.52.0.php
+- Changes since 5.51.0:
+  * Use reserve() on QStringList
+  * Fix breakage of language guessing
+  * Another 0 -> nullptr
+
+---

Old:

  sonnet-5.51.0.tar.xz

New:

  sonnet-5.52.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.SX6VEp/_old  2018-11-14 14:40:51.366862615 +0100
+++ /var/tmp/diff_new_pack.SX6VEp/_new  2018-11-14 14:40:51.370862611 +0100
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.51
+%define _tar_path 5.52
 # 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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.51.0
+Version:5.52.0
 Release:0
 Summary:KDE spell checking library
 License:LGPL-2.1-or-later

++ sonnet-5.51.0.tar.xz -> sonnet-5.52.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.51.0/CMakeLists.txt 
new/sonnet-5.52.0/CMakeLists.txt
--- old/sonnet-5.51.0/CMakeLists.txt2018-10-10 23:06:16.0 +0200
+++ new/sonnet-5.52.0/CMakeLists.txt2018-11-03 19:06:56.0 +0100
@@ -1,11 +1,11 @@
 
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.51.0") # handled by release scripts
+set(KF5_VERSION "5.52.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.51.0  NO_MODULE)
+find_package(ECM 5.52.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)
 
@@ -45,13 +45,6 @@
 ecm_install_po_files_as_qm(po)
 endif()
 
-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)
 if (BUILD_TESTING)
  add_subdirectory(autotests)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.51.0/po/ast/sonnet5_qt.po 
new/sonnet-5.52.0/po/ast/sonnet5_qt.po
--- old/sonnet-5.51.0/po/ast/sonnet5_qt.po  2018-10-10 23:06:16.0 
+0200
+++ new/sonnet-5.52.0/po/ast/sonnet5_qt.po  1970-01-01 01:00:00.0 
+0100
@@ -1,445 +0,0 @@
-# enolp , 2016, 2017.
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"PO-Revision-Date: 2017-01-21 03:34+0100\n"
-"Last-Translator: enolp \n"
-"Language-Team: Asturian \n"
-"Language: ast\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Qt-Contexts: true\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 2.0\n"
-
-#: core/loader.cpp:187
-msgctxt "Sonnet::Loader|dictionary variant"
-msgid "40"
-msgstr "40"
-
-#: core/loader.cpp:188
-msgctxt "Sonnet::Loader|dictionary variant"
-msgid "60"
-msgstr "60"
-
-#: core/loader.cpp:189
-msgctxt "Sonnet::Loader|dictionary variant"
-msgid "80"
-msgstr "80"
-
-#: core/loader.cpp:190
-msgctxt "Sonnet::Loader|dictionary variant"
-msgid "-ise suffixes"
-msgstr ""
-
-#: core/loader.cpp:191
-msgctxt "Sonnet::Loader|dictionary variant"
-msgid "-ize suffixes"
-msgstr ""
-
-#: core/loader.cpp:192
-msgctxt "Sonnet::Loader|dictionary variant"
-msgid "-ise suffixes and with accents"
-msgstr ""
-
-#: core/loader.cpp:194
-msgctxt "Sonnet::Loader|dictionary variant"
-msgid "-ise suffixes and without accents"
-msgstr ""
-
-#: core/loader.cpp:197
-msgctxt "Sonnet::Loader|dictionary variant"
-msgid "-ize suffixes and with accents"
-msgstr ""
-
-#: core/loader.cpp:199
-msgctxt "Sonnet::Loader|dictionary variant"
-msgid "-ize suffixes and without 

commit sonnet for openSUSE:Factory

2018-10-22 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2018-10-22 11:17:19

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Mon Oct 22 11:17:19 2018 rev:60 rq:642362 version:5.51.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2018-10-01 
08:11:07.574201764 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2018-10-22 
11:19:41.691379275 +0200
@@ -1,0 +2,20 @@
+Tue Oct 16 08:02:52 UTC 2018 - Luca Beltrame 
+
+- Run spec-cleaner
+
+---
+Mon Oct 15 11:50:44 UTC 2018 - lbeltr...@kde.org
+
+- 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 breakage of language guessing
+  * Fix compile failure on Windows targets
+  * Prevent highlighter from erasing selected text (kde#398661)
+  * Avoid potential detach on range-loops with non-const Qt containers
+  * Make sure to build with strict compile flags
+  * Fix minor typos
+
+---

Old:

  sonnet-5.50.0.tar.xz

New:

  sonnet-5.51.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.88fVQF/_old  2018-10-22 11:19:42.123378827 +0200
+++ /var/tmp/diff_new_pack.88fVQF/_new  2018-10-22 11:19:42.127378822 +0200
@@ -17,19 +17,19 @@
 
 
 %define sonum   5
-%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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.50.0
+Version:5.51.0
 Release:0
 Summary:KDE spell checking library
 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:  aspell-devel

++ sonnet-5.50.0.tar.xz -> sonnet-5.51.0.tar.xz ++
 2851 lines of diff (skipped)




commit sonnet for openSUSE:Factory

2018-10-01 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2018-10-01 08:10:52

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Mon Oct  1 08:10:52 2018 rev:59 rq:636041 version:5.50.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2018-08-24 
16:58:09.789649109 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2018-10-01 
08:11:07.574201764 +0200
@@ -1,0 +2,14 @@
+Thu Sep 13 21:58:47 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.50.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.50.0.php
+- Changes since 5.49.0:
+  * hunspell: Restore build with hunspell <=v1.5.0
+  * Include hunspell headers as system includes
+  * Fix a typo
+- Dropped patches, superseded by upstream changes:
+  * Fix_Leap_42_3_build.patch
+
+---

Old:

  Fix_Leap_42_3_build.patch
  sonnet-5.49.0.tar.xz

New:

  sonnet-5.50.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.KhSxqB/_old  2018-10-01 08:11:08.002201536 +0200
+++ /var/tmp/diff_new_pack.KhSxqB/_new  2018-10-01 08:11:08.002201536 +0200
@@ -12,19 +12,19 @@
 # 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 sonum   5
-%define _tar_path 5.49
+%define _tar_path 5.50
 # 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}')}
 %bcond_without lang
 Name:   sonnet
-Version:5.49.0
+Version:5.50.0
 Release:0
 Summary:KDE spell checking library
 License:LGPL-2.1-or-later
@@ -32,8 +32,6 @@
 URL:http://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
-# PATCH-FIX-OPENSUSE
-Patch0: Fix_Leap_42_3_build.patch
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 3.0
 # Enchant plugin is currently disabled upstream
@@ -100,9 +98,6 @@
 
 %prep
 %setup -q
-%if 0%{?suse_version} <= 1315
-%patch0 -p1
-%endif
 
 %build
   %cmake_kf5 -d build -- -Dlconvert_executable=%{_kf5_libdir}/qt5/bin/lconvert

++ sonnet-5.49.0.tar.xz -> sonnet-5.50.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.49.0/CMakeLists.txt 
new/sonnet-5.50.0/CMakeLists.txt
--- old/sonnet-5.49.0/CMakeLists.txt2018-08-04 13:03:08.0 +0200
+++ new/sonnet-5.50.0/CMakeLists.txt2018-09-02 21:40:58.0 +0200
@@ -1,11 +1,11 @@
 
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.49.0") # handled by release scripts
+set(KF5_VERSION "5.50.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.49.0  NO_MODULE)
+find_package(ECM 5.50.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.49.0/po/zh_CN/sonnet5_qt.po 
new/sonnet-5.50.0/po/zh_CN/sonnet5_qt.po
--- old/sonnet-5.49.0/po/zh_CN/sonnet5_qt.po2018-08-04 13:03:08.0 
+0200
+++ new/sonnet-5.50.0/po/zh_CN/sonnet5_qt.po2018-09-02 21:40:58.0 
+0200
@@ -14,8 +14,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: kdeorg\n"
-"PO-Revision-Date: 2018-07-24 08:41\n"
-"Last-Translator: guoyunhebrave \n"
+"PO-Revision-Date: 2018-08-30 13:09\n"
+"Last-Translator: guoyunhebrave \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.49.0/src/plugins/hunspell/CMakeLists.txt 
new/sonnet-5.50.0/src/plugins/hunspell/CMakeLists.txt
--- old/sonnet-5.49.0/src/plugins/hunspell/CMakeLists.txt   2018-08-04 
13:03:08.0 +0200
+++ new/sonnet-5.50.0/src/plugins/hunspell/CMakeLists.txt   2018-09-02 
21:40:58.0 +0200
@@ -1,18 +1,21 @@
-
-### next target ###
-
-include_directories( ${HUNSPELL_INCLUDE_DIRS} )
 

commit sonnet for openSUSE:Factory

2018-08-24 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2018-08-24 16:58:06

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Fri Aug 24 16:58:06 2018 rev:58 rq:630653 version:5.49.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2018-07-21 
10:20:12.067029913 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2018-08-24 
16:58:09.789649109 +0200
@@ -1,0 +2,12 @@
+Sun Aug 19 09:19:38 UTC 2018 - christo...@krop.fr
+
+- Update to 5.49.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.49.0.php
+- Changes since 5.48.0:
+  * Sonnet: setLanguage should schedule a rehighlight if highlight is enabled
+  * Use the current hunspell API
+- Add Fix_Leap_42_3_build.patch to use the old hunspell api in leap 42.3.
+
+---

Old:

  sonnet-5.48.0.tar.xz

New:

  Fix_Leap_42_3_build.patch
  sonnet-5.49.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.v4Cmtl/_old  2018-08-24 16:58:10.293649705 +0200
+++ /var/tmp/diff_new_pack.v4Cmtl/_new  2018-08-24 16:58:10.293649705 +0200
@@ -16,16 +16,24 @@
 #
 
 
-%bcond_without lang
 %define sonum   5
-%define _tar_path 5.48
+%define _tar_path 5.49
 # 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}')}
+%bcond_without lang
 Name:   sonnet
-Version:5.48.0
+Version:5.49.0
 Release:0
+Summary:KDE spell checking library
+License:LGPL-2.1-or-later
+Group:  System/GUI/KDE
+URL:http://www.kde.org
+Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
+Source1:baselibs.conf
+# PATCH-FIX-OPENSUSE
+Patch0: Fix_Leap_42_3_build.patch
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 3.0
 # Enchant plugin is currently disabled upstream
@@ -33,50 +41,44 @@
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
-%if %{with lang}
-BuildRequires:  cmake(Qt5LinguistTools) >= 5.6.0
-%endif
 BuildRequires:  myspell-dictionaries
+BuildRequires:  pkgconfig
 BuildRequires:  cmake(Qt5Core) >= 5.6.0
 BuildRequires:  cmake(Qt5Test) >= 5.6.0
 BuildRequires:  cmake(Qt5Widgets) >= 5.6.0
 BuildRequires:  pkgconfig(hunspell)
-Summary:KDE spell checking library
-License:LGPL-2.1-or-later
-Group:  System/GUI/KDE
-Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
-Source1:baselibs.conf
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%if %{with lang}
+BuildRequires:  cmake(Qt5LinguistTools) >= 5.6.0
+%endif
 
 %description
 Sonnet is a plugin-based spell checking library for Qt-based
 applications. It supports several different plugins, including
 HSpell, Enchant, ASpell and HUNSPELL.
 
-%package -n libKF5SonnetCore%sonum
+%package -n libKF5SonnetCore%{sonum}
 Summary:KDE spell checking library
 Group:  System/GUI/KDE
 Requires:   %{name} >= %{_kf5_bugfix_version}
+%requires_gelibQt5Core5
 Obsoletes:  libKF5SonnetCore4
 %if %{with lang}
-Recommends: libKF5SonnetCore%sonum-lang = %{version}
+Recommends: libKF5SonnetCore%{sonum}-lang = %{version}
 %endif
-%requires_ge libQt5Core5
 
-%description -n libKF5SonnetCore%sonum
+%description -n libKF5SonnetCore%{sonum}
 Sonnet is a plugin-based spell checking library for Qt-based
 applications. It supports several different plugins, including
 HSpell, Enchant, ASpell and HUNSPELL.
 
-%package -n libKF5SonnetUi%sonum
+%package -n libKF5SonnetUi%{sonum}
 Summary:KDE spell checking library
 Group:  System/GUI/KDE
+%requires_gelibKF5SonnetCore5
 %requires_ge libQt5Gui5
 %requires_ge libQt5Widgets5
-%requires_ge libKF5SonnetCore5
 
-%description -n libKF5SonnetUi%sonum
+%description -n libKF5SonnetUi%{sonum}
 Sonnet is a plugin-based spell checking library for Qt-based
 applications. It supports several different plugins, including
 HSpell, Enchant, ASpell and HUNSPELL.
@@ -85,8 +87,8 @@
 Summary:KDE spell checking library: Build Environment
 Group:  Development/Libraries/KDE
 Requires:   extra-cmake-modules
-Requires:   libKF5SonnetCore%sonum = %{version}
-Requires:   libKF5SonnetUi%sonum = %{version}
+Requires:   

commit sonnet for openSUSE:Factory

2018-07-21 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2018-07-21 10:17:33

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Sat Jul 21 10:17:33 2018 rev:57 rq:623332 version:5.48.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2018-06-22 
13:25:59.943461706 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2018-07-21 
10:20:12.067029913 +0200
@@ -1,0 +2,10 @@
+Mon Jul 16 04:37:50 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.48.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.48.0.php
+- Changes since 5.47.0:
+  * None
+
+---

Old:

  sonnet-5.47.0.tar.xz

New:

  sonnet-5.48.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.eiavIU/_old  2018-07-21 10:20:12.775029744 +0200
+++ /var/tmp/diff_new_pack.eiavIU/_new  2018-07-21 10:20:12.779029743 +0200
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.47
+%define _tar_path 5.48
 # 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}')}
+%{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   sonnet
-Version:5.47.0
+Version:5.48.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 3.0

++ sonnet-5.47.0.tar.xz -> sonnet-5.48.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.47.0/CMakeLists.txt 
new/sonnet-5.48.0/CMakeLists.txt
--- old/sonnet-5.47.0/CMakeLists.txt2018-06-02 20:13:02.0 +0200
+++ new/sonnet-5.48.0/CMakeLists.txt2018-07-08 00:34:05.0 +0200
@@ -1,11 +1,11 @@
 
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.47.0") # handled by release scripts
+set(KF5_VERSION "5.48.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.47.0  NO_MODULE)
+find_package(ECM 5.48.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.47.0/po/se/sonnet5_qt.po 
new/sonnet-5.48.0/po/se/sonnet5_qt.po
--- old/sonnet-5.47.0/po/se/sonnet5_qt.po   2018-06-02 20:13:02.0 
+0200
+++ new/sonnet-5.48.0/po/se/sonnet5_qt.po   2018-07-08 00:34:05.0 
+0200
@@ -20,130 +20,130 @@
 "X-Text-Markup: qtrich\n"
 "X-Qt-Contexts: true\n"
 
-#: core/loader.cpp:173
+#: core/loader.cpp:187
 #, fuzzy
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "40"
 msgstr "40"
 
-#: core/loader.cpp:174
+#: core/loader.cpp:188
 #, fuzzy
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "60"
 msgstr "60"
 
-#: core/loader.cpp:175
+#: core/loader.cpp:189
 #, fuzzy
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "80"
 msgstr "80"
 
-#: core/loader.cpp:176
+#: core/loader.cpp:190
 #, fuzzy
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "-ise suffixes"
 msgstr "-ise suffivssat"
 
-#: core/loader.cpp:177
+#: core/loader.cpp:191
 #, fuzzy
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "-ize suffixes"
 msgstr "-ize suffivssat"
 
-#: core/loader.cpp:178
+#: core/loader.cpp:192
 #, fuzzy
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "-ise suffixes and with accents"
 msgstr "-ise suffivssat ja akseantamearkkat"
 
-#: core/loader.cpp:179
+#: core/loader.cpp:194
 #, fuzzy
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "-ise suffixes and without accents"
 msgstr "-ise suffivssat ja akseantamearkkaidkeahttá"
 
-#: core/loader.cpp:180
+#: core/loader.cpp:197
 #, fuzzy
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "-ize suffixes and with accents"
 msgstr "-ize suffivssat mas leat akseantamearkkat"
 
-#: core/loader.cpp:181
+#: core/loader.cpp:199
 #, fuzzy
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "-ize suffixes and without accents"
 msgstr "-ize suffivssat, aksentakeahttá"
 
-#: core/loader.cpp:182
+#: core/loader.cpp:202
 #, fuzzy
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "large"
 msgstr "stuoris"
 
-#: core/loader.cpp:183
+#: core/loader.cpp:203
 #, fuzzy
 msgctxt 

commit sonnet for openSUSE:Factory

2018-06-22 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2018-06-22 13:25:53

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Fri Jun 22 13:25:53 2018 rev:56 rq:616805 version:5.47.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2018-05-18 
14:25:26.543788897 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2018-06-22 
13:25:59.943461706 +0200
@@ -1,0 +2,11 @@
+Tue Jun 12 21:26:10 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.47.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.47.0.php
+- Changes since 5.46.0:
+  * Warning--
+  * Use override
+
+---

Old:

  sonnet-5.46.0.tar.xz

New:

  sonnet-5.47.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.tRYsYw/_old  2018-06-22 13:26:00.911425935 +0200
+++ /var/tmp/diff_new_pack.tRYsYw/_new  2018-06-22 13:26:00.915425787 +0200
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.46
+%define _tar_path 5.47
 # 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:   sonnet
-Version:5.46.0
+Version:5.47.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 3.0
@@ -125,7 +125,7 @@
 %files
 %defattr(-,root,root)
 %doc COPYING* README*
-%config %{_kf5_configdir}/sonnet.categories
+%{_kf5_debugdir}/sonnet.categories
 %{_kf5_plugindir}/
 %{_kf5_datadir}/sonnet/
 

++ sonnet-5.46.0.tar.xz -> sonnet-5.47.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.46.0/CMakeLists.txt 
new/sonnet-5.47.0/CMakeLists.txt
--- old/sonnet-5.46.0/CMakeLists.txt2018-05-05 15:01:55.0 +0200
+++ new/sonnet-5.47.0/CMakeLists.txt2018-06-02 20:13:02.0 +0200
@@ -1,11 +1,11 @@
 
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.46.0") # handled by release scripts
+set(KF5_VERSION "5.47.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.46.0  NO_MODULE)
+find_package(ECM 5.47.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.46.0/examples/highlighterexample.h 
new/sonnet-5.47.0/examples/highlighterexample.h
--- old/sonnet-5.46.0/examples/highlighterexample.h 2018-05-05 
15:01:55.0 +0200
+++ new/sonnet-5.47.0/examples/highlighterexample.h 2018-06-02 
20:13:02.0 +0200
@@ -34,7 +34,7 @@
 public Q_SLOTS:
 void slotActivate();
 protected:
-void contextMenuEvent(QContextMenuEvent *) Q_DECL_OVERRIDE;
+void contextMenuEvent(QContextMenuEvent *) override;
 Sonnet::Highlighter *hl;
 };
 #endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.46.0/examples/plaintextedit.cpp 
new/sonnet-5.47.0/examples/plaintextedit.cpp
--- old/sonnet-5.46.0/examples/plaintextedit.cpp2018-05-05 
15:01:55.0 +0200
+++ new/sonnet-5.47.0/examples/plaintextedit.cpp2018-06-02 
20:13:02.0 +0200
@@ -40,7 +40,7 @@
 }
 
 protected:
-bool isSpellCheckingEnabledForBlock(const QString ) const 
Q_DECL_OVERRIDE
+bool isSpellCheckingEnabledForBlock(const QString ) const 
override
 {
 qDebug() << blockText;
 return !blockText.startsWith(QLatin1Char('#'));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.46.0/examples/textedit.cpp 
new/sonnet-5.47.0/examples/textedit.cpp
--- old/sonnet-5.46.0/examples/textedit.cpp 2018-05-05 15:01:55.0 
+0200
+++ new/sonnet-5.47.0/examples/textedit.cpp 2018-06-02 20:13:02.0 
+0200
@@ -40,7 +40,7 @@
 }
 
 protected:
-bool isSpellCheckingEnabledForBlock(const QString ) const 
Q_DECL_OVERRIDE
+bool isSpellCheckingEnabledForBlock(const QString ) const 
override
 {
 qDebug() << blockText;
 return !blockText.startsWith(QLatin1Char('>'));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit sonnet for openSUSE:Factory

2018-05-18 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2018-05-18 14:25:24

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Fri May 18 14:25:24 2018 rev:55 rq:607604 version:5.46.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2018-04-19 
15:20:08.937776549 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2018-05-18 
14:25:26.543788897 +0200
@@ -1,0 +2,14 @@
+Sun May 13 21:03:13 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.46.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.46.0.php
+- Changes since 5.45.0:
+  * Clean up
+  * Fix remove enable/disable button
+  * Fix enable/disable add button
+  * Look into subdirectories for dictionaries
+  * Warning--
+
+---

Old:

  sonnet-5.45.0.tar.xz

New:

  sonnet-5.46.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.JFczSq/_old  2018-05-18 14:25:27.299761150 +0200
+++ /var/tmp/diff_new_pack.JFczSq/_new  2018-05-18 14:25:27.303761004 +0200
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.45
+%define _tar_path 5.46
 # 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:   sonnet
-Version:5.45.0
+Version:5.46.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 3.0

++ sonnet-5.45.0.tar.xz -> sonnet-5.46.0.tar.xz ++
 18815 lines of diff (skipped)




commit sonnet for openSUSE:Factory

2018-04-19 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2018-04-19 15:20:07

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Thu Apr 19 15:20:07 2018 rev:54 rq:596917 version:5.45.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2018-03-20 
21:49:02.282142850 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2018-04-19 
15:20:08.937776549 +0200
@@ -1,0 +2,22 @@
+Sat Apr 14 13:19:09 CEST 2018 - lbeltr...@kde.org
+
+- 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:
+  * Don't impose using the default client
+  * Remove deprecated cmake code
+  * Remove not necessary QtCore and co
+  * NSSpellChecker plugin cleanup
+  * Include replacement strings in the suggestion list
+  * implement NSSpellCheckerDict::addPersonal()
+  * NSSpellCheckerDict::suggest() returns a list of suggestions
+  * initialise NSSpellChecker language in NSSpellCheckerDict ctor
+  * implement NSSpellChecker logging category
+  * NSSpellChecker requires AppKit
+  * Move NSSpellCheckerClient::reliability() out of line
+  * use the preferred Mac platform token
+  * Use correct directory to lookup trigrams in windows build dir
+
+---

Old:

  sonnet-5.44.0.tar.xz

New:

  sonnet-5.45.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.vtZUyL/_old  2018-04-19 15:20:09.645748139 +0200
+++ /var/tmp/diff_new_pack.vtZUyL/_new  2018-04-19 15:20:09.645748139 +0200
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 %define sonum   5
-%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:   sonnet
-Version:5.44.0
+Version:5.45.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 3.0

++ sonnet-5.44.0.tar.xz -> sonnet-5.45.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.44.0/CMakeLists.txt 
new/sonnet-5.45.0/CMakeLists.txt
--- old/sonnet-5.44.0/CMakeLists.txt2018-03-03 11:08:31.0 +0100
+++ new/sonnet-5.45.0/CMakeLists.txt2018-04-07 21:41:09.0 +0200
@@ -1,11 +1,11 @@
 
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.44.0") # handled by release scripts
+set(KF5_VERSION "5.45.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 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)
 
@@ -17,7 +17,7 @@
 include(KDECMakeSettings)
 include(ECMQtDeclareLoggingCategory)
 
-set(REQUIRED_QT_VERSION 5.7.0)
+set(REQUIRED_QT_VERSION 5.8.0)
 option(SONNET_USE_WIDGETS "Build components using Qt5Widgets" ON)
 if(SONNET_USE_WIDGETS)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Widgets)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.44.0/autotests/test_core.h 
new/sonnet-5.45.0/autotests/test_core.h
--- old/sonnet-5.44.0/autotests/test_core.h 2018-03-03 11:08:31.0 
+0100
+++ new/sonnet-5.45.0/autotests/test_core.h 2018-04-07 21:41:09.0 
+0200
@@ -19,7 +19,7 @@
 #ifndef TEST_CORE_H
 #define TEST_CORE_H
 
-#include 
+#include 
 
 class SonnetCoreTest : public QObject
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.44.0/data/CMakeLists.txt 
new/sonnet-5.45.0/data/CMakeLists.txt
--- old/sonnet-5.44.0/data/CMakeLists.txt   2018-03-03 11:08:31.0 
+0100
+++ new/sonnet-5.45.0/data/CMakeLists.txt   2018-04-07 21:41:09.0 
+0200
@@ -14,7 +14,6 @@
 INSTALL(TARGETS parsetrigrams ${KF5_INSTALL_TARGETS_DEFAULT_ARGS})
 INSTALL(TARGETS gentrigrams ${KF5_INSTALL_TARGETS_DEFAULT_ARGS})
 
-cmake_policy(SET CMP0026 OLD) # FIXME: make this work with CMP0026 set to NEW
 if(CMAKE_CROSSCOMPILING AND PARSETRIGRAMS_EXECUTABLE)
 add_executable(KF5::parsetrigrams IMPORTED GLOBAL)
 set_target_properties(KF5::parsetrigrams PROPERTIES IMPORTED_LOCATION 
${PARSETRIGRAMS_EXECUTABLE})
@@ -22,15 +21,14 @@
   

commit sonnet for openSUSE:Factory

2018-03-20 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2018-03-20 21:49:00

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Tue Mar 20 21:49:00 2018 rev:53 rq:586874 version:5.44.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2018-02-16 
21:36:27.864854880 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2018-03-20 
21:49:02.282142850 +0100
@@ -1,0 +2,11 @@
+Mon Mar 12 23:29:43 CET 2018 - lbeltr...@kde.org
+
+- Update to 5.44.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.44.0.php
+- Changes since 5.43.0:
+  * Use Locale::name() instead of Locale::bcp47Name()
+  * Find libhunspell build by msvc
+
+---

Old:

  sonnet-5.43.0.tar.xz

New:

  sonnet-5.44.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.uLgAaZ/_old  2018-03-20 21:49:02.986117499 +0100
+++ /var/tmp/diff_new_pack.uLgAaZ/_new  2018-03-20 21:49:02.986117499 +0100
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.43
+%define _tar_path 5.44
 # 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:   sonnet
-Version:5.43.0
+Version:5.44.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 3.0
@@ -42,7 +42,7 @@
 BuildRequires:  cmake(Qt5Widgets) >= 5.6.0
 BuildRequires:  pkgconfig(hunspell)
 Summary:KDE spell checking library
-License:LGPL-2.1+
+License:LGPL-2.1-or-later
 Group:  System/GUI/KDE
 Url:http://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz

++ sonnet-5.43.0.tar.xz -> sonnet-5.44.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.43.0/CMakeLists.txt 
new/sonnet-5.44.0/CMakeLists.txt
--- old/sonnet-5.43.0/CMakeLists.txt2018-02-05 13:04:44.0 +0100
+++ new/sonnet-5.44.0/CMakeLists.txt2018-03-03 11:08:31.0 +0100
@@ -1,11 +1,11 @@
 
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.43.0") # handled by release scripts
+set(KF5_VERSION "5.44.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.43.0  NO_MODULE)
+find_package(ECM 5.44.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.43.0/autotests/test_settings.cpp 
new/sonnet-5.44.0/autotests/test_settings.cpp
--- old/sonnet-5.43.0/autotests/test_settings.cpp   2018-02-05 
13:04:44.0 +0100
+++ new/sonnet-5.44.0/autotests/test_settings.cpp   2018-03-03 
11:08:31.0 +0100
@@ -82,7 +82,7 @@
 // Default Language
 QString defLang = speller.defaultLanguage();
 QString settingsLang = settings.value(QStringLiteral("defaultLanguage"),
-  
QLocale::system().bcp47Name()).toString();
+  QLocale::system().name()).toString();
 QCOMPARE(defLang, settingsLang);
 
 QStringList langs = speller.availableLanguages();
@@ -90,7 +90,7 @@
 if (langs[i] != defLang) {
 speller.setDefaultLanguage(langs[i]);
 settingsLang = settings.value(QStringLiteral("defaultLanguage"),
-  
QLocale::system().bcp47Name()).toString();
+  QLocale::system().name()).toString();
 QCOMPARE(settingsLang, langs[i]);
 QCOMPARE(speller.defaultLanguage(), langs[i]);
 break;
@@ -100,7 +100,7 @@
 speller.setDefaultLanguage(defLang);
 settingsLang
 = settings.value(QStringLiteral("defaultLanguage"),
- QLocale::system().bcp47Name()).toString();
+ QLocale::system().name()).toString();
 QCOMPARE(settingsLang, defLang);
 QCOMPARE(speller.defaultLanguage(), defLang);
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit sonnet for openSUSE:Factory

2018-02-16 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2018-02-16 21:36:26

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Fri Feb 16 21:36:26 2018 rev:52 rq:576576 version:5.43.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2018-01-22 
16:05:03.819702010 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2018-02-16 
21:36:27.864854880 +0100
@@ -1,0 +2,11 @@
+Mon Feb 12 23:42:13 CET 2018 - lbeltr...@kde.org
+
+- Update to 5.43.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.43.0.php
+- Changes since 5.42.0:
+  * Find Aspell dictionaries on Windows
+  * Fix compilation of just the UI-less host tools
+
+---

Old:

  sonnet-5.42.0.tar.xz

New:

  sonnet-5.43.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.n409b0/_old  2018-02-16 21:36:29.068811415 +0100
+++ /var/tmp/diff_new_pack.n409b0/_new  2018-02-16 21:36:29.072811271 +0100
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.42
+%define _tar_path 5.43
 # 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:   sonnet
-Version:5.42.0
+Version:5.43.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 3.0

++ sonnet-5.42.0.tar.xz -> sonnet-5.43.0.tar.xz ++
 20330 lines of diff (skipped)




commit sonnet for openSUSE:Factory

2018-01-22 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2018-01-22 16:04:52

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Mon Jan 22 16:04:52 2018 rev:51 rq:566722 version:5.42.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2018-01-09 
14:46:11.283508617 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2018-01-22 
16:05:03.819702010 +0100
@@ -1,0 +2,23 @@
+Tue Jan 16 22:50:24 CET 2018 - lbeltr...@kde.org
+
+- Update to 5.42.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.42.0.php
+- Changes since 5.41.0:
+  * autotests: replace duplication with for loop
+  * Remove obsolete reviewboardrc file
+  * Don't export internal helper executables
+  * Sonnet: fix wrong language for suggestions in mixed-language texts
+  * Sonnet: honour Settings::defaultClient(), useful for unittests
+  * autotests: skip if "en" not available with aspell (to fix the FreeBSD CI, 
hopefully)
+  * autotests: use QTEST_GUILESS_MAIN
+  * autotests: fix compilation with Qt 5.7
+  * autotests: enable QStandardPaths test mode
+  * autotests: turn test_suggest into a real automated test, checking for 
suggestions from aspell
+  * autotests: fix old TODO, GUILESS since QApp is not needed
+  * Remove anchient and broken workaround
+  * Don't cause circular linking on Windows
+  * Fix coding style. Const'ify, fix typo
+
+---

Old:

  sonnet-5.41.0.tar.xz

New:

  sonnet-5.42.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.M0YbbZ/_old  2018-01-22 16:05:04.719659899 +0100
+++ /var/tmp/diff_new_pack.M0YbbZ/_new  2018-01-22 16:05:04.719659899 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package sonnet
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.41
+%define _tar_path 5.42
 # 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:   sonnet
-Version:5.41.0
+Version:5.42.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 3.0

++ sonnet-5.41.0.tar.xz -> sonnet-5.42.0.tar.xz ++
 23745 lines of diff (skipped)




commit sonnet for openSUSE:Factory

2018-01-09 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2018-01-09 14:46:10

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Tue Jan  9 14:46:10 2018 rev:50 rq:559483 version:5.41.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2017-11-16 
14:42:19.391821473 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2018-01-09 
14:46:11.283508617 +0100
@@ -1,0 +2,17 @@
+Sun Dec 17 09:43:50 CET 2017 - lbeltr...@kde.org
+
+- Update to 5.41.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.41.0.php
+- Changes since 5.40.0:
+  * Cache value before loop
+  * Make it compile with strict flags
+  * Fix generate debug file
+  * Clean up. Initialize value. Remove qt check
+  * Autogenerate debug category files
+  * Modernize code. Use new connect api. Assign directly parent etc.
+  * Make it possible to crosscompile sonnet
+  * If dictionnary is already set, return true;
+
+---

Old:

  sonnet-5.40.0.tar.xz

New:

  sonnet-5.41.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.R6P2fV/_old  2018-01-09 14:46:11.999475044 +0100
+++ /var/tmp/diff_new_pack.R6P2fV/_new  2018-01-09 14:46:12.003474857 +0100
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.40
+%define _tar_path 5.41
 # 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:   sonnet
-Version:5.40.0
+Version:5.41.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 3.0

++ sonnet-5.40.0.tar.xz -> sonnet-5.41.0.tar.xz ++
 4774 lines of diff (skipped)




commit sonnet for openSUSE:Factory

2017-11-16 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2017-11-16 14:42:18

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Thu Nov 16 14:42:18 2017 rev:49 rq:541701 version:5.40.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2017-10-27 
13:59:41.004891866 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2017-11-16 
14:42:19.391821473 +0100
@@ -1,0 +2,14 @@
+Mon Nov 13 07:01:18 CET 2017 - lbeltr...@kde.org
+
+- Update to 5.40.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.40.0.php
+- Changes since 5.39.0:
+  * Add assignByDictionnary method
+  * Signal if we are able to assign dictionnary
+  * Remove extra ';'. Add explicit keyword
+  * Make sure that all value is initialized
+  * Be sure that it's not null
+
+---

Old:

  sonnet-5.39.0.tar.xz

New:

  sonnet-5.40.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.bGhHEP/_old  2017-11-16 14:42:20.091796069 +0100
+++ /var/tmp/diff_new_pack.bGhHEP/_new  2017-11-16 14:42:20.091796069 +0100
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.39
+%define _tar_path 5.40
 # 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:   sonnet
-Version:5.39.0
+Version:5.40.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 3.0

++ sonnet-5.39.0.tar.xz -> sonnet-5.40.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.39.0/CMakeLists.txt 
new/sonnet-5.40.0/CMakeLists.txt
--- old/sonnet-5.39.0/CMakeLists.txt2017-10-07 21:29:19.0 +0200
+++ new/sonnet-5.40.0/CMakeLists.txt2017-11-05 09:43:46.0 +0100
@@ -1,11 +1,11 @@
 
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.39.0") # handled by release scripts
+set(KF5_VERSION "5.40.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.39.0  NO_MODULE)
+find_package(ECM 5.40.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.39.0/po/gl/sonnet5_qt.po 
new/sonnet-5.40.0/po/gl/sonnet5_qt.po
--- old/sonnet-5.39.0/po/gl/sonnet5_qt.po   2017-10-07 21:29:19.0 
+0200
+++ new/sonnet-5.40.0/po/gl/sonnet5_qt.po   2017-11-05 09:43:46.0 
+0100
@@ -16,7 +16,7 @@
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2014-03-23 01:50+\n"
-"PO-Revision-Date: 2017-09-29 21:20+0100\n"
+"PO-Revision-Date: 2017-10-27 08:00+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) \n"
 "Language-Team: Galician \n"
 "Language: gl\n"
@@ -192,7 +192,7 @@
 #: ui/configui.ui:95
 msgctxt "SonnetConfigUI|"
 msgid "Ignored Words:"
-msgstr "Palabras ignoradas"
+msgstr "Palabras ignoradas:"
 
 #: ui/configui.ui:109
 msgctxt "SonnetConfigUI|"
@@ -330,7 +330,7 @@
 "Aquí pode ver un fragmento de texto que mostra a palabra descoñecida no "
 "seu contexto. Se esta información non resulta de abondo para escoller a "
 "substitución axeitada, pode premer o documento que está a corrixir, ler unha "
-"parte máis ampla do texto e voltar despois aquí para continuar a corrección."
+"parte máis ampla do texto e volver despois aquí para continuar a corrección."
 "\n"
 ""
 
@@ -355,7 +355,7 @@
 "A palabra descoñecida foi detectada e considerada como descoñecida porque "
 "non está no dicionario.\n"
 "Prema aquí se considera que a palabra descoñecida non é incorrecta e quere "
-"evitar que volte ser considerada como errada. Se quere que quede como está, "
+"evitar que volva ser considerada como errada. Se quere que quede como está, "
 "pero non quere engadila ao dicionario, prema Ignorar ou Ignorar "
 "todas no seu canto.\n"
 ""
@@ -404,7 +404,7 @@
 "occurrences.\n"
 ""
 msgstr ""
-"

commit sonnet for openSUSE:Factory

2017-10-27 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2017-10-27 13:59:39

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Fri Oct 27 13:59:39 2017 rev:48 rq:536366 version:5.39.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2017-09-19 
16:28:25.704530527 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2017-10-27 
13:59:41.004891866 +0200
@@ -1,0 +2,10 @@
+Mon Oct 23 06:41:48 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.39.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.39.0.php
+- Changes since 5.38.0:
+  * None
+
+---

Old:

  sonnet-5.38.0.tar.xz

New:

  sonnet-5.39.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.U1sgp5/_old  2017-10-27 13:59:41.992845684 +0200
+++ /var/tmp/diff_new_pack.U1sgp5/_new  2017-10-27 13:59:41.992845684 +0200
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.38
+%define _tar_path 5.39
 # 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:   sonnet
-Version:5.38.0
+Version:5.39.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 3.0

++ sonnet-5.38.0.tar.xz -> sonnet-5.39.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.38.0/CMakeLists.txt 
new/sonnet-5.39.0/CMakeLists.txt
--- old/sonnet-5.38.0/CMakeLists.txt2017-09-03 10:18:55.0 +0200
+++ new/sonnet-5.39.0/CMakeLists.txt2017-10-07 21:29:19.0 +0200
@@ -1,11 +1,11 @@
 
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.38.0") # handled by release scripts
+set(KF5_VERSION "5.39.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.38.0  NO_MODULE)
+find_package(ECM 5.39.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.38.0/po/gl/sonnet5_qt.po 
new/sonnet-5.39.0/po/gl/sonnet5_qt.po
--- old/sonnet-5.38.0/po/gl/sonnet5_qt.po   2017-09-03 10:18:55.0 
+0200
+++ new/sonnet-5.39.0/po/gl/sonnet5_qt.po   2017-10-07 21:29:19.0 
+0200
@@ -16,7 +16,7 @@
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2014-03-23 01:50+\n"
-"PO-Revision-Date: 2017-08-12 15:22+0100\n"
+"PO-Revision-Date: 2017-09-29 21:20+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) \n"
 "Language-Team: Galician \n"
 "Language: gl\n"
@@ -202,7 +202,7 @@
 #: ui/configui.ui:122
 msgctxt "SonnetConfigUI|"
 msgid ""
-msgstr ""
+msgstr ""
 
 #: ui/configui.ui:160
 msgctxt "SonnetConfigUI|"
@@ -387,7 +387,7 @@
 " Se a palabra descoñecida está mal escrita, debería comprobar se a "
 "corrección para ela está dispoñíbel e se o está, prémaa. Se ningunha das "
 "palabras desta lista é unha boa substitución, deberá escribir o termo "
-"correcto no campo de baixo.\n"
+"correcto na caixa de edición de abaixo.\n"
 "Para corrixir esta palabra prema Substituír se quere corrixir só "
 "nesta ocasión ou Substituír todas se quere corrixir todas as súas "
 "aparicións.\n"
@@ -455,7 +455,7 @@
 msgstr ""
 "\n"
 "Prema aquí para substituír todas as aparicións do texto descoñecido co "
-"texto no campo de texto de riba (á esquerda).\n"
+"texto na caixa de edición de arriba (á esquerda).\n"
 ""
 
 #: ui/sonnetui.ui:230
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.38.0/po/sr/sonnet5_qt.po 
new/sonnet-5.39.0/po/sr/sonnet5_qt.po
--- old/sonnet-5.38.0/po/sr/sonnet5_qt.po   2017-09-03 10:18:55.0 
+0200
+++ new/sonnet-5.39.0/po/sr/sonnet5_qt.po   2017-10-07 21:29:19.0 
+0200
@@ -1,14 +1,14 @@
 # Translation of sonnet5_qt.po into Serbian.
 # Marko Rosic , 2003.
 # Toplica Tanaskovic , 2003, 2004, 2005.
-# Chusslove Illich , 2003, 2004, 2005, 2006, 2007, 2008, 
2009, 2010, 2011, 2012, 2013, 2014, 2015.
+# 

commit sonnet for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2017-09-19 16:28:24

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Tue Sep 19 16:28:24 2017 rev:47 rq:526687 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2017-08-24 
18:00:17.637704134 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2017-09-19 
16:28:25.704530527 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:19 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * Do not leak symbols of pimpl classes, protect with Q_DECL_HIDDEN
+
+---

Old:

  sonnet-5.37.0.tar.xz

New:

  sonnet-5.38.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.zo29EW/_old  2017-09-19 16:28:26.328442126 +0200
+++ /var/tmp/diff_new_pack.zo29EW/_new  2017-09-19 16:28:26.328442126 +0200
@@ -18,15 +18,19 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# 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:   sonnet
-Version:5.37.0
+Version:5.38.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 3.0
 # Enchant plugin is currently disabled upstream
 #BuildRequires:  enchant-devel
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 %if %{with lang}
@@ -53,7 +57,7 @@
 %package -n libKF5SonnetCore%sonum
 Summary:KDE spell checking library
 Group:  System/GUI/KDE
-Requires:   %{name} >= %{_tar_path}
+Requires:   %{name} >= %{_kf5_bugfix_version}
 Obsoletes:  libKF5SonnetCore4
 %if %{with lang}
 Recommends: libKF5SonnetCore%sonum-lang = %{version}

++ sonnet-5.37.0.tar.xz -> sonnet-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.37.0/CMakeLists.txt 
new/sonnet-5.38.0/CMakeLists.txt
--- old/sonnet-5.37.0/CMakeLists.txt2017-08-06 20:15:00.0 +0200
+++ new/sonnet-5.38.0/CMakeLists.txt2017-09-03 10:18:55.0 +0200
@@ -1,11 +1,11 @@
 
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.37.0/po/gl/sonnet5_qt.po 
new/sonnet-5.38.0/po/gl/sonnet5_qt.po
--- old/sonnet-5.37.0/po/gl/sonnet5_qt.po   2017-08-06 20:15:00.0 
+0200
+++ new/sonnet-5.38.0/po/gl/sonnet5_qt.po   2017-09-03 10:18:55.0 
+0200
@@ -16,7 +16,7 @@
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2014-03-23 01:50+\n"
-"PO-Revision-Date: 2017-07-26 08:57+0100\n"
+"PO-Revision-Date: 2017-08-12 15:22+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) \n"
 "Language-Team: Galician \n"
 "Language: gl\n"
@@ -167,7 +167,7 @@
 #: ui/configui.ui:54
 msgctxt "SonnetConfigUI|"
 msgid "Enable  spellchecking"
-msgstr "Activar a ón en segundo plano"
+msgstr "Activar a ón ortográfica en segundo plano"
 
 #: ui/configui.ui:61
 msgctxt "SonnetConfigUI|"
@@ -222,22 +222,22 @@
 #: ui/dialog.cpp:244
 msgctxt "Sonnet::Dialog|"
 msgid "Spell check stopped."
-msgstr "Detívose a corrección de ortografía."
+msgstr "Detívose a corrección ortográfica."
 
 #: ui/dialog.cpp:254
 msgctxt "Sonnet::Dialog|"
 msgid "Spell check canceled."
-msgstr "Cancelouse a corrección de ortografía."
+msgstr "Cancelouse a corrección ortográfica."
 
 #: ui/dialog.cpp:430 ui/dialog.cpp:433
 msgctxt "Sonnet::Dialog|"
 msgid "Spell check complete."
-msgstr "Completouse a corrección de ortografía."
+msgstr "Completouse a corrección ortográfica."
 
 #: ui/highlighter.cpp:229 

commit sonnet for openSUSE:Factory

2017-08-24 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2017-08-24 18:00:13

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Thu Aug 24 18:00:13 2017 rev:46 rq:516713 version:5.37.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2017-07-17 
10:27:01.754602866 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2017-08-24 
18:00:17.637704134 +0200
@@ -1,0 +2,12 @@
+Sat Aug 12 09:23:44 UTC 2017 - christo...@krop.fr
+
+- Update to 5.37.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.37.0.php
+- Changes since 5.36.0 :
+  * Allow to build Sonnet without Qt5Widgets
+  * cmake: rewrite FindHUNSPELL.cmake to use pkg-config
+  * Use more nullptr
+
+---

Old:

  sonnet-5.36.0.tar.xz

New:

  sonnet-5.37.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.NxyUp6/_old  2017-08-24 18:00:19.497442191 +0200
+++ /var/tmp/diff_new_pack.NxyUp6/_new  2017-08-24 18:00:19.505441065 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.36
+%define _tar_path 5.37
 Name:   sonnet
-Version:5.36.0
+Version:5.37.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 3.0

++ sonnet-5.36.0.tar.xz -> sonnet-5.37.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.36.0/.arcconfig new/sonnet-5.37.0/.arcconfig
--- old/sonnet-5.36.0/.arcconfig1970-01-01 01:00:00.0 +0100
+++ new/sonnet-5.37.0/.arcconfig2017-08-06 20:15:00.0 +0200
@@ -0,0 +1,3 @@
+{
+  "phabricator.uri" : "https://phabricator.kde.org/;
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.36.0/CMakeLists.txt 
new/sonnet-5.37.0/CMakeLists.txt
--- old/sonnet-5.36.0/CMakeLists.txt2017-07-02 10:15:30.0 +0200
+++ new/sonnet-5.37.0/CMakeLists.txt2017-08-06 20:15:00.0 +0200
@@ -1,11 +1,11 @@
 
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.36.0") # handled by release scripts
+set(KF5_VERSION "5.37.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.36.0  NO_MODULE)
+find_package(ECM 5.37.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)
 
@@ -16,8 +16,12 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
-set(REQUIRED_QT_VERSION 5.6.0)
-find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Widgets)
+set(REQUIRED_QT_VERSION 5.7.0)
+option(SONNET_USE_WIDGETS "Build components using Qt5Widgets" ON)
+if(SONNET_USE_WIDGETS)
+find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Widgets)
+endif()
+find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Core)
 
 
 include(GenerateExportHeader)
@@ -43,7 +47,9 @@
 add_subdirectory(src)
 add_subdirectory(autotests)
 add_subdirectory(data)
-add_subdirectory(examples)
+if(TARGET Qt5::Widgets)
+add_subdirectory(examples)
+endif()
 
 
 # create a Config.cmake and a ConfigVersion.cmake file and install them
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.36.0/cmake/FindHUNSPELL.cmake 
new/sonnet-5.37.0/cmake/FindHUNSPELL.cmake
--- old/sonnet-5.36.0/cmake/FindHUNSPELL.cmake  2017-07-02 10:15:30.0 
+0200
+++ new/sonnet-5.37.0/cmake/FindHUNSPELL.cmake  2017-08-06 20:15:00.0 
+0200
@@ -2,24 +2,52 @@
 # Once done this will define
 #
 #  HUNSPELL_FOUND - system has HUNSPELL
-#  HUNSPELL_INCLUDE_DIR - the HUNSPELL include directory
+#  HUNSPELL_INCLUDE_DIRS - the HUNSPELL include directory
 #  HUNSPELL_LIBRARIES - The libraries needed to use HUNSPELL
-#  HUNSPELL_DEFINITIONS - Compiler switches required for using HUNSPELL
-
-
-IF (HUNSPELL_INCLUDE_DIR AND HUNSPELL_LIBRARIES)
-  # Already in cache, be silent
-  SET(HUNSPELL_FIND_QUIETLY TRUE)
-ENDIF (HUNSPELL_INCLUDE_DIR AND HUNSPELL_LIBRARIES)
-
-FIND_PATH(HUNSPELL_INCLUDE_DIR hunspell/hunspell.hxx )
-
-FIND_LIBRARY(HUNSPELL_LIBRARIES NAMES hunspell hunspell-1.6 hunspell-1.5 
hunspell-1.4 hunspell-1.3 hunspell-1.2)
-
-# handle the QUIETLY and REQUIRED arguments and set HUNSPELL_FOUND to TRUE if 
-# all listed variables are TRUE
-INCLUDE(FindPackageHandleStandardArgs)

commit sonnet for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2017-07-17 10:26:57

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Mon Jul 17 10:26:57 2017 rev:45 rq:509947 version:5.36.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2017-07-05 
23:54:31.657286216 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2017-07-17 
10:27:01.754602866 +0200
@@ -1,0 +2,17 @@
+Wed Jul 12 14:51:10 UTC 2017 - wba...@tmo.at
+
+- Move unversioned files to the new sonnet package to be more
+  compliant with the SLPP
+
+---
+Wed Jul 12 07:14:05 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.36.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.36.0.php
+- Changes since 5.35.0:
+  * add debug categories index, for kdebugsettings
+  * [FEATURE] Option to build & install QCH file with the public API dox
+
+---

Old:

  sonnet-5.35.0.tar.xz

New:

  sonnet-5.36.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.8Eazih/_old  2017-07-17 10:27:02.270530132 +0200
+++ /var/tmp/diff_new_pack.8Eazih/_new  2017-07-17 10:27:02.270530132 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.35
+%define _tar_path 5.36
 Name:   sonnet
-Version:5.35.0
+Version:5.36.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 3.0
@@ -53,6 +53,7 @@
 %package -n libKF5SonnetCore%sonum
 Summary:KDE spell checking library
 Group:  System/GUI/KDE
+Requires:   %{name} >= %{_tar_path}
 Obsoletes:  libKF5SonnetCore4
 %if %{with lang}
 Recommends: libKF5SonnetCore%sonum-lang = %{version}
@@ -117,12 +118,17 @@
 %files -n libKF5SonnetCore%sonum-lang -f %{name}5.lang
 %endif
 
+%files
+%defattr(-,root,root)
+%doc COPYING* README*
+%config %{_kf5_configdir}/sonnet.categories
+%{_kf5_plugindir}/
+%{_kf5_datadir}/sonnet/
+
 %files -n libKF5SonnetCore%sonum
 %defattr(-,root,root)
 %doc COPYING*
 %{_kf5_libdir}/libKF5SonnetCore.so.*
-%{_kf5_plugindir}/
-%{_kf5_datadir}/sonnet/
 
 %files -n libKF5SonnetUi%sonum
 %defattr(-,root,root)

++ sonnet-5.35.0.tar.xz -> sonnet-5.36.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.35.0/CMakeLists.txt 
new/sonnet-5.36.0/CMakeLists.txt
--- old/sonnet-5.35.0/CMakeLists.txt2017-06-03 12:25:25.0 +0200
+++ new/sonnet-5.36.0/CMakeLists.txt2017-07-02 10:15:30.0 +0200
@@ -1,11 +1,11 @@
 
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.35.0") # handled by release scripts
+set(KF5_VERSION "5.36.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.35.0  NO_MODULE)
+find_package(ECM 5.36.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)
 
@@ -25,6 +25,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
+include(ECMAddQch)
 include(ECMPoQmTools)
 
 ecm_setup_version(PROJECT VARIABLE_PREFIX SONNET
@@ -32,6 +33,9 @@
 PACKAGE_VERSION_FILE 
"${CMAKE_CURRENT_BINARY_DIR}/KF5SonnetConfigVersion.cmake"
 SOVERSION 5)
 
+option(BUILD_QCH "Build API documentation in QCH format (for e.g. Qt 
Assistant, Qt Creator & KDevelop)" OFF)
+add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. 
Qt Assistant, Qt Creator & KDevelop)")
+
 if (IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/po")
 ecm_install_po_files_as_qm(po)
 endif()
@@ -45,6 +49,16 @@
 # create a Config.cmake and a ConfigVersion.cmake file and install them
 set(CMAKECONFIG_INSTALL_DIR "${KDE_INSTALL_CMAKEPACKAGEDIR}/KF5Sonnet")
 
+if (BUILD_QCH)
+ecm_install_qch_export(
+TARGETS KF5SonnetCore_QCH KF5SonnetUi_QCH
+FILE KF5SonnetQchTargets.cmake
+DESTINATION "${CMAKECONFIG_INSTALL_DIR}"
+COMPONENT Devel
+)
+set(PACKAGE_INCLUDE_QCHTARGETS 
"include(\"\${CMAKE_CURRENT_LIST_DIR}/KF5SonnetQchTargets.cmake\")")
+endif()
+
 include(CMakePackageConfigHelpers)
 
 
configure_package_config_file("${CMAKE_CURRENT_SOURCE_DIR}/KF5SonnetConfig.cmake.in"
 "${CMAKE_CURRENT_BINARY_DIR}/KF5SonnetConfig.cmake"
@@ -60,4 +74,7 @@
 install(FILES 

commit sonnet for openSUSE:Factory

2017-07-05 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2017-07-05 23:54:28

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Wed Jul  5 23:54:28 2017 rev:44 rq:502985 version:5.35.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2017-06-01 
16:22:37.196695466 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2017-07-05 
23:54:31.657286216 +0200
@@ -1,0 +2,10 @@
+Sun Jun 11 09:27:44 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.35.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.35.0.php
+- Changes since 5.34.0:
+  * None
+
+---

Old:

  sonnet-5.34.0.tar.xz

New:

  sonnet-5.35.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.cPXHLx/_old  2017-07-05 23:54:33.281057487 +0200
+++ /var/tmp/diff_new_pack.cPXHLx/_new  2017-07-05 23:54:33.285056924 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.34
+%define _tar_path 5.35
 Name:   sonnet
-Version:5.34.0
+Version:5.35.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 3.0

++ sonnet-5.34.0.tar.xz -> sonnet-5.35.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.34.0/CMakeLists.txt 
new/sonnet-5.35.0/CMakeLists.txt
--- old/sonnet-5.34.0/CMakeLists.txt2017-05-06 14:04:44.0 +0200
+++ new/sonnet-5.35.0/CMakeLists.txt2017-06-03 12:25:25.0 +0200
@@ -1,11 +1,11 @@
 
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.34.0") # handled by release scripts
+set(KF5_VERSION "5.35.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.34.0  NO_MODULE)
+find_package(ECM 5.35.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.34.0/po/he/sonnet5_qt.po 
new/sonnet-5.35.0/po/he/sonnet5_qt.po
--- old/sonnet-5.34.0/po/he/sonnet5_qt.po   2017-05-06 14:04:44.0 
+0200
+++ new/sonnet-5.35.0/po/he/sonnet5_qt.po   2017-06-03 12:25:25.0 
+0200
@@ -17,19 +17,17 @@
 # Meni Livne , 2007.
 # tahmar1900 , 2008, 2009.
 # Elkana Bardugo , 2016.
+# Elkana Bardugo , 2017. #zanata
 msgid ""
 msgstr ""
-"Project-Id-Version: kdelibs4\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n;
-"POT-Creation-Date: 2014-03-23 01:50+\n"
-"PO-Revision-Date: 2016-07-25 14:37+0200\n"
-"Last-Translator: Elkana Bardugo \n"
+"PO-Revision-Date: 2017-05-16 06:50-0400\n"
+"Last-Translator: Copied by Zanata \n"
 "Language-Team: Hebrew \n"
 "Language: he\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Zanata 3.9.6\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
 
@@ -50,48 +48,36 @@
 
 #: core/loader.cpp:176
 #, fuzzy
-#| msgctxt "dictionary variant"
-#| msgid "-ise suffixes"
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "-ise suffixes"
 msgstr "סיומות ‎-ise"
 
 #: core/loader.cpp:177
 #, fuzzy
-#| msgctxt "dictionary variant"
-#| msgid "-ize suffixes"
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "-ize suffixes"
 msgstr "סיומות ‎-ize"
 
 #: core/loader.cpp:178
 #, fuzzy
-#| msgctxt "dictionary variant"
-#| msgid "-ise suffixes and with accents"
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "-ise suffixes and with accents"
 msgstr "סיומות ‎-ise עם מבטאים"
 
 #: core/loader.cpp:179
 #, fuzzy
-#| msgctxt "dictionary variant"
-#| msgid "-ise suffixes and without accents"
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "-ise suffixes and without accents"
 msgstr "סיומות ‎-ise בלי מבטאים"
 
 #: core/loader.cpp:180
 #, fuzzy
-#| msgctxt "dictionary variant"
-#| msgid "-ize suffixes and with accents"
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "-ize suffixes and with accents"
 msgstr "סיומות ‎-ize עם מבטאים"
 
 #: core/loader.cpp:181
 #, fuzzy
-#| msgctxt "dictionary variant"
-#| msgid "-ize suffixes and without accents"
 msgctxt "Sonnet::Loader|dictionary variant"
 

commit sonnet for openSUSE:Factory

2017-06-01 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2017-06-01 16:22:33

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Thu Jun  1 16:22:33 2017 rev:43 rq:495083 version:5.34.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2017-04-30 
21:22:31.036379535 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2017-06-01 
16:22:37.196695466 +0200
@@ -1,0 +2,10 @@
+Mon May 15 13:53:14 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.34.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.34.0.php
+- Changes since 5.33.0:
+  * None
+
+---

Old:

  sonnet-5.33.0.tar.xz

New:

  sonnet-5.34.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.6kJNwR/_old  2017-06-01 16:22:37.792611436 +0200
+++ /var/tmp/diff_new_pack.6kJNwR/_new  2017-06-01 16:22:37.796610872 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.33
+%define _tar_path 5.34
 Name:   sonnet
-Version:5.33.0
+Version:5.34.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 3.0

++ sonnet-5.33.0.tar.xz -> sonnet-5.34.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.33.0/CMakeLists.txt 
new/sonnet-5.34.0/CMakeLists.txt
--- old/sonnet-5.33.0/CMakeLists.txt2017-04-01 21:45:39.0 +0200
+++ new/sonnet-5.34.0/CMakeLists.txt2017-05-06 14:04:44.0 +0200
@@ -1,11 +1,11 @@
 
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.33.0") # handled by release scripts
+set(KF5_VERSION "5.34.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.33.0  NO_MODULE)
+find_package(ECM 5.34.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.33.0/po/bg/sonnet5_qt.po 
new/sonnet-5.34.0/po/bg/sonnet5_qt.po
--- old/sonnet-5.33.0/po/bg/sonnet5_qt.po   2017-04-01 21:45:39.0 
+0200
+++ new/sonnet-5.34.0/po/bg/sonnet5_qt.po   2017-05-06 14:04:44.0 
+0200
@@ -1,8 +1,5 @@
-# translation of kdelibs4.po to Bulgarian
-# Bulgarian translation of KDE.
-# This file is licensed under the GPL.
-#
-# $Id:$
+# Copyright (C) YEAR This_file_is_part_of_KDE
+# This file is distributed under the same license as the PACKAGE package.
 #
 # Zlatko Popov , 2006, 2007, 2008, 2009.
 # Yasen Pramatarov , 2009, 2010, 2011, 2012, 2013.




commit sonnet for openSUSE:Factory

2017-04-30 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2017-04-30 21:22:28

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Sun Apr 30 21:22:28 2017 rev:42 rq:492103 version:5.33.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2017-03-28 
15:13:50.384803586 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2017-04-30 
21:22:31.036379535 +0200
@@ -1,0 +2,11 @@
+Sat Apr 15 10:11:59 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.33.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.33.0.php
+- Changes since 5.32.0:
+  * Upgrade ECM and KF5 version requirements for 5.33.0 release.
+  * Upgrade KF5 version to 5.33.0.
+
+---

Old:

  sonnet-5.32.0.tar.xz

New:

  sonnet-5.33.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.4xBTK9/_old  2017-04-30 21:22:31.796272392 +0200
+++ /var/tmp/diff_new_pack.4xBTK9/_new  2017-04-30 21:22:31.800271828 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.32
+%define _tar_path 5.33
 Name:   sonnet
-Version:5.32.0
+Version:5.33.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 3.0

++ sonnet-5.32.0.tar.xz -> sonnet-5.33.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.32.0/CMakeLists.txt 
new/sonnet-5.33.0/CMakeLists.txt
--- old/sonnet-5.32.0/CMakeLists.txt2017-03-04 17:24:28.0 +0100
+++ new/sonnet-5.33.0/CMakeLists.txt2017-04-01 21:45:39.0 +0200
@@ -1,11 +1,11 @@
 
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.32.0") # handled by release scripts
+set(KF5_VERSION "5.33.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.32.0  NO_MODULE)
+find_package(ECM 5.33.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)
 




commit sonnet for openSUSE:Factory

2017-03-28 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2017-03-28 15:13:48

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Tue Mar 28 15:13:48 2017 rev:41 rq:481551 version:5.32.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2017-03-03 
17:29:23.685492026 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2017-03-28 
15:13:50.384803586 +0200
@@ -1,0 +2,12 @@
+Sun Mar 19 14:51:17 CET 2017 - lbeltr...@kde.org
+
+- Update to 5.32.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.32.0.php
+- Changes since 5.31.0:
+  * Commit translations from l10n-kf5
+  * Upgrade ECM and KF5 version requirements for 5.32.0 release.
+  * Upgrade KF5 version to 5.32.0.
+
+---

Old:

  sonnet-5.31.0.tar.xz

New:

  sonnet-5.32.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.aH9c7j/_old  2017-03-28 15:13:51.376663085 +0200
+++ /var/tmp/diff_new_pack.aH9c7j/_new  2017-03-28 15:13:51.376663085 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.31
+%define _tar_path 5.32
 Name:   sonnet
-Version:5.31.0
+Version:5.32.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 3.0

++ sonnet-5.31.0.tar.xz -> sonnet-5.32.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.31.0/CMakeLists.txt 
new/sonnet-5.32.0/CMakeLists.txt
--- old/sonnet-5.31.0/CMakeLists.txt2017-02-05 12:21:19.0 +0100
+++ new/sonnet-5.32.0/CMakeLists.txt2017-03-04 17:24:28.0 +0100
@@ -1,11 +1,11 @@
 
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.31.0") # handled by release scripts
+set(KF5_VERSION "5.32.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.31.0  NO_MODULE)
+find_package(ECM 5.32.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.31.0/po/gl/sonnet5_qt.po 
new/sonnet-5.32.0/po/gl/sonnet5_qt.po
--- old/sonnet-5.31.0/po/gl/sonnet5_qt.po   2017-02-05 12:21:19.0 
+0100
+++ new/sonnet-5.32.0/po/gl/sonnet5_qt.po   2017-03-04 17:24:28.0 
+0100
@@ -385,7 +385,7 @@
 msgstr ""
 "\n"
 " Se a palabra descoñecida está mal escrita, debería comprobar se a "
-"corrección para ela está dispoñíbel e se o está, prema nela. Se ningunha das "
+"corrección para ela está dispoñíbel e se o está, prémaa. Se ningunha das "
 "palabras desta lista é unha boa substitución, deberá escribir o termo "
 "correcto no campo de baixo.\n"
 "Para corrixir esta palabra prema Substituír se quere corrixir só "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.31.0/po/hu/sonnet5_qt.po 
new/sonnet-5.32.0/po/hu/sonnet5_qt.po
--- old/sonnet-5.31.0/po/hu/sonnet5_qt.po   2017-02-05 12:21:19.0 
+0100
+++ new/sonnet-5.32.0/po/hu/sonnet5_qt.po   2017-03-04 17:24:28.0 
+0100
@@ -1,4 +1,4 @@
-# Kiszel Kristóf , 2010.
+# Kiszel Kristóf , 2010, 2017.
 # Kristóf Kiszel , 2010, 2011, 2012, 2014.
 # Balázs Úr , 2012, 2013.
 msgid ""
@@ -6,15 +6,15 @@
 "Project-Id-Version: KDE 4.4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2014-03-23 01:50+\n"
-"PO-Revision-Date: 2014-08-30 11:25+0200\n"
-"Last-Translator: Kristóf Kiszel \n"
+"PO-Revision-Date: 2017-02-14 23:19+0100\n"
+"Last-Translator: Kiszel Kristóf \n"
 "Language-Team: Hungarian \n"
 "Language: hu\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 "X-Qt-Contexts: true\n"
 
 #: core/loader.cpp:173
@@ -192,12 +192,9 @@
 msgstr "ávolítás"
 
 #: ui/configui.ui:160
-#, fuzzy
-#| msgctxt "SonnetConfigUI|"
-#| msgid "Enable  spellchecking"
 msgctxt "SonnetConfigUI|"
 msgid "No backend found for spell checking"
-msgstr "írás-ellenőrzés a háttérben"
+msgstr "Nem található modul a 

commit sonnet for openSUSE:Factory

2017-03-03 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2017-03-03 17:29:22

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Fri Mar  3 17:29:22 2017 rev:40 rq:461499 version:5.31.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2017-02-03 
20:02:09.807224715 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2017-03-03 
17:29:23.685492026 +0100
@@ -1,0 +2,7 @@
+Thu Feb  9 10:20:41 UTC 2017 - hrvoje.sen...@gmail.com
+
+- Update to 5.31.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.31.0.php
+
+---

Old:

  sonnet-5.30.0.tar.xz

New:

  sonnet-5.31.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.AyP9Sd/_old  2017-03-03 17:29:24.233414612 +0100
+++ /var/tmp/diff_new_pack.AyP9Sd/_new  2017-03-03 17:29:24.233414612 +0100
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.30
+%define _tar_path 5.31
 Name:   sonnet
-Version:5.30.0
+Version:5.31.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 3.0
@@ -30,12 +30,12 @@
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 %if %{with lang}
-BuildRequires:  cmake(Qt5LinguistTools) >= 5.5.0
+BuildRequires:  cmake(Qt5LinguistTools) >= 5.6.0
 %endif
 BuildRequires:  myspell-dictionaries
-BuildRequires:  cmake(Qt5Core) >= 5.5.0
-BuildRequires:  cmake(Qt5Test) >= 5.5.0
-BuildRequires:  cmake(Qt5Widgets) >= 5.5.0
+BuildRequires:  cmake(Qt5Core) >= 5.6.0
+BuildRequires:  cmake(Qt5Test) >= 5.6.0
+BuildRequires:  cmake(Qt5Widgets) >= 5.6.0
 BuildRequires:  pkgconfig(hunspell)
 Summary:KDE spell checking library
 License:LGPL-2.1+
@@ -82,7 +82,7 @@
 Requires:   extra-cmake-modules
 Requires:   libKF5SonnetCore%sonum = %{version}
 Requires:   libKF5SonnetUi%sonum = %{version}
-Requires:   cmake(Qt5Core) >= 5.5.0
+Requires:   cmake(Qt5Core) >= 5.6.0
 
 %description devel
 Sonnet is a plugin-based spell checking library for Qt-based

++ sonnet-5.30.0.tar.xz -> sonnet-5.31.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.30.0/CMakeLists.txt 
new/sonnet-5.31.0/CMakeLists.txt
--- old/sonnet-5.30.0/CMakeLists.txt2017-01-08 22:06:43.0 +0100
+++ new/sonnet-5.31.0/CMakeLists.txt2017-02-05 12:21:19.0 +0100
@@ -1,11 +1,11 @@
 
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.30.0") # handled by release scripts
+set(KF5_VERSION "5.31.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.30.0  NO_MODULE)
+find_package(ECM 5.31.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)
 
@@ -16,7 +16,7 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
-set(REQUIRED_QT_VERSION 5.5.0)
+set(REQUIRED_QT_VERSION 5.6.0)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Widgets)
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.30.0/cmake/FindHUNSPELL.cmake 
new/sonnet-5.31.0/cmake/FindHUNSPELL.cmake
--- old/sonnet-5.30.0/cmake/FindHUNSPELL.cmake  2017-01-08 22:06:43.0 
+0100
+++ new/sonnet-5.31.0/cmake/FindHUNSPELL.cmake  2017-02-05 12:21:19.0 
+0100
@@ -14,7 +14,7 @@
 
 FIND_PATH(HUNSPELL_INCLUDE_DIR hunspell/hunspell.hxx )
 
-FIND_LIBRARY(HUNSPELL_LIBRARIES NAMES hunspell-1.6 hunspell-1.5 hunspell-1.4 
hunspell-1.3 hunspell-1.2)
+FIND_LIBRARY(HUNSPELL_LIBRARIES NAMES hunspell hunspell-1.6 hunspell-1.5 
hunspell-1.4 hunspell-1.3 hunspell-1.2)
 
 # handle the QUIETLY and REQUIRED arguments and set HUNSPELL_FOUND to TRUE if 
 # all listed variables are TRUE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.30.0/data/CMakeLists.txt 
new/sonnet-5.31.0/data/CMakeLists.txt
--- old/sonnet-5.30.0/data/CMakeLists.txt   2017-01-08 22:06:43.0 
+0100
+++ new/sonnet-5.31.0/data/CMakeLists.txt   2017-02-05 12:21:19.0 
+0100
@@ -10,7 +10,7 @@
 ecm_mark_nongui_executable(gentrigrams)
 
 TARGET_LINK_LIBRARIES(parsetrigrams PUBLIC Qt5::Core)
-TARGET_LINK_LIBRARIES(gentrigrams PUBLIC Qt5::Core)
+TARGET_LINK_LIBRARIES(gentrigrams PUBLIC Qt5::Core KF5::SonnetCore)
 INSTALL(TARGETS 

commit sonnet for openSUSE:Factory

2017-02-03 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2017-01-31 12:13:33

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2017-01-11 
11:54:06.356232813 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2017-02-03 
20:02:09.807224715 +0100
@@ -1,0 +2,9 @@
+Mon Jan  9 00:00:45 UTC 2017 - hrvoje.sen...@gmail.com
+
+- Update to 5.30.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.30.0.php
+- Remove patch, now upstream:
+  * look-for-hunspell-1.6-as-well.patch
+
+---

Old:

  look-for-hunspell-1.6-as-well.patch
  sonnet-5.29.0.tar.xz

New:

  sonnet-5.30.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.o1vF3L/_old  2017-02-03 20:02:10.331150969 +0100
+++ /var/tmp/diff_new_pack.o1vF3L/_new  2017-02-03 20:02:10.335150407 +0100
@@ -18,12 +18,12 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.29
+%define _tar_path 5.30
 Name:   sonnet
-Version:5.29.0
+Version:5.30.0
 Release:0
 #BuildRequires:  aspell-devel
-BuildRequires:  cmake >= 2.8.12
+BuildRequires:  cmake >= 3.0
 # Enchant plugin is currently disabled upstream
 #BuildRequires:  enchant-devel
 BuildRequires:  extra-cmake-modules >= %{_tar_path}
@@ -43,8 +43,6 @@
 Url:http://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
-# PATCH-FIX-UPSTREAM look-for-hunspell-1.6-as-well.patch
-Patch0: look-for-hunspell-1.6-as-well.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -94,7 +92,6 @@
 %lang_package -n libKF5SonnetCore%sonum
 %prep
 %setup -q
-%patch0 -p1
 
 %build
   %cmake_kf5 -d build -- -Dlconvert_executable=%{_kf5_libdir}/qt5/bin/lconvert

++ sonnet-5.29.0.tar.xz -> sonnet-5.30.0.tar.xz ++
 838631 lines of diff (skipped)




commit sonnet for openSUSE:Factory

2016-11-17 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2016-11-17 12:39:51

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2016-10-28 
12:25:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2016-11-17 
12:39:52.0 +0100
@@ -1,0 +2,7 @@
+Sat Nov  5 22:25:56 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.28.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.28.0.php
+
+---

Old:

  sonnet-5.27.0.tar.xz

New:

  sonnet-5.28.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.8pAEMG/_old  2016-11-17 12:39:53.0 +0100
+++ /var/tmp/diff_new_pack.8pAEMG/_new  2016-11-17 12:39:53.0 +0100
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.27
+%define _tar_path 5.28
 Name:   sonnet
-Version:5.27.0
+Version:5.28.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 2.8.12

++ sonnet-5.27.0.tar.xz -> sonnet-5.28.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.27.0/CMakeLists.txt 
new/sonnet-5.28.0/CMakeLists.txt
--- old/sonnet-5.27.0/CMakeLists.txt2016-10-02 12:04:15.0 +0200
+++ new/sonnet-5.28.0/CMakeLists.txt2016-11-05 16:02:30.0 +0100
@@ -4,7 +4,7 @@
 project(Sonnet)
 
 include(FeatureSummary)
-find_package(ECM 5.27.0  NO_MODULE)
+find_package(ECM 5.28.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)
 
@@ -26,7 +26,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION "5.27.0") # handled by release scripts
+set(KF5_VERSION "5.28.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX SONNET
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/sonnet_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.27.0/po/ja/sonnet5_qt.po 
new/sonnet-5.28.0/po/ja/sonnet5_qt.po
--- old/sonnet-5.27.0/po/ja/sonnet5_qt.po   2016-10-02 12:04:15.0 
+0200
+++ new/sonnet-5.28.0/po/ja/sonnet5_qt.po   2016-11-05 16:02:30.0 
+0100
@@ -741,9 +741,3 @@
 msgctxt "Sonnet::SpellCheckDecorator|"
 msgid "Add to Dictionary"
 msgstr "辞書に追加"
-
-#, fuzzy
-#~| msgid "Suggested Words"
-#~ msgctxt "SonnetUi|"
-#~ msgid "Suggested Words"
-#~ msgstr "置き換え候補"




commit sonnet for openSUSE:Factory

2016-10-28 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2016-10-28 12:25:42

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2016-09-14 
23:30:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2016-10-28 
12:25:43.0 +0200
@@ -1,0 +2,7 @@
+Sun Oct  2 13:13:42 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.27.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.27.0.php
+
+---

Old:

  sonnet-5.26.0.tar.xz

New:

  sonnet-5.27.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.8qYIgq/_old  2016-10-28 12:25:44.0 +0200
+++ /var/tmp/diff_new_pack.8qYIgq/_new  2016-10-28 12:25:44.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.26
+%define _tar_path 5.27
 Name:   sonnet
-Version:5.26.0
+Version:5.27.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 2.8.12

++ sonnet-5.26.0.tar.xz -> sonnet-5.27.0.tar.xz ++
 839009 lines of diff (skipped)




commit sonnet for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2016-09-14 23:30:41

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2016-08-29 
15:14:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2016-09-14 
23:30:43.0 +0200
@@ -1,0 +2,28 @@
+Tue Sep  6 21:15:19 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * Don't lowercase the language names in trigram parsing
+  * Fix immediate crash on startup due to null plugin pointer
+  * Handle dictionaries without correct names
+  * Replace hand-curated list of script-language mappings, use
+proper names for languages
+  * Add tool to generate trigrams
+  * Unbreak language detection a bit
+  * Use selected language as suggestion for detection
+  * Use cached spellers in language detection,
+improve performance a bit
+  * Improve language detection
+  * Filter list of suggestions against available dictionaries,
+remove dupes
+  * Remember to add the last trigram match
+  * Check if any of the trigrams actually matched
+  * Handle multiple languages with same score in trigram matcher
+  * Don't check for minimum size twice
+  * Prune list of languages against available languages
+  * Use same minimum length everywhere in langdet
+  * Sanity check that the loaded model has the correct amount of
+trigrams for each language
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  sonnet-5.25.0.tar.xz

New:

  sonnet-5.26.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.11oXDy/_old  2016-09-14 23:30:44.0 +0200
+++ /var/tmp/diff_new_pack.11oXDy/_new  2016-09-14 23:30:44.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   sonnet
-Version:5.25.0
+Version:5.26.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 2.8.12
@@ -132,6 +132,7 @@
 %files devel
 %defattr(-,root,root)
 %{_kf5_bindir}/parsetrigrams
+%{_kf5_bindir}/gentrigrams
 %{_kf5_libdir}/libKF5SonnetCore.so
 %{_kf5_libdir}/libKF5SonnetUi.so
 %{_kf5_libdir}/cmake/KF5Sonnet/

++ sonnet-5.25.0.tar.xz -> sonnet-5.26.0.tar.xz ++
 41712 lines of diff (skipped)




commit sonnet for openSUSE:Factory

2016-08-29 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2016-08-29 15:14:31

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2016-07-15 
12:42:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2016-08-29 
15:14:34.0 +0200
@@ -1,0 +2,11 @@
+Sun Aug  7 22:17:54 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.25.0
+  * Qt >= 5.5 is now required
+  * hunspell: Clean up code for searching for dictionaries,
+add XDG dirs (kde#361409)
+  * Try to fix language filter usage of language detection a bit
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.25.0.php
+
+---

Old:

  sonnet-5.24.0.tar.xz

New:

  sonnet-5.25.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.cmGFMG/_old  2016-08-29 15:14:35.0 +0200
+++ /var/tmp/diff_new_pack.cmGFMG/_new  2016-08-29 15:14:35.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.24
+%define _tar_path 5.25
 Name:   sonnet
-Version:5.24.0
+Version:5.25.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 2.8.12
@@ -30,12 +30,12 @@
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 %if %{with lang}
-BuildRequires:  cmake(Qt5LinguistTools) >= 5.4.0
+BuildRequires:  cmake(Qt5LinguistTools) >= 5.5.0
 %endif
 BuildRequires:  myspell-dictionaries
-BuildRequires:  cmake(Qt5Core) >= 5.4.0
-BuildRequires:  cmake(Qt5Test) >= 5.4.0
-BuildRequires:  cmake(Qt5Widgets) >= 5.4.0
+BuildRequires:  cmake(Qt5Core) >= 5.5.0
+BuildRequires:  cmake(Qt5Test) >= 5.5.0
+BuildRequires:  cmake(Qt5Widgets) >= 5.5.0
 BuildRequires:  pkgconfig(hunspell)
 Summary:KDE spell checking library
 License:LGPL-2.1+
@@ -82,7 +82,7 @@
 Requires:   extra-cmake-modules
 Requires:   libKF5SonnetCore%sonum = %{version}
 Requires:   libKF5SonnetUi%sonum = %{version}
-Requires:   cmake(Qt5Core) >= 5.4.0
+Requires:   cmake(Qt5Core) >= 5.5.0
 
 %description devel
 Sonnet is a plugin-based spell checking library for Qt-based

++ sonnet-5.24.0.tar.xz -> sonnet-5.25.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.24.0/CMakeLists.txt 
new/sonnet-5.25.0/CMakeLists.txt
--- old/sonnet-5.24.0/CMakeLists.txt2016-07-03 11:30:50.0 +0200
+++ new/sonnet-5.25.0/CMakeLists.txt2016-08-07 16:03:38.0 +0200
@@ -4,7 +4,7 @@
 project(Sonnet)
 
 include(FeatureSummary)
-find_package(ECM 5.24.0  NO_MODULE)
+find_package(ECM 5.25.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)
 
@@ -15,7 +15,7 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
-set(REQUIRED_QT_VERSION 5.4.0)
+set(REQUIRED_QT_VERSION 5.5.0)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Widgets)
 
 
@@ -26,7 +26,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION "5.24.0") # handled by release scripts
+set(KF5_VERSION "5.25.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX SONNET
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/sonnet_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.24.0/examples/textedit.cpp 
new/sonnet-5.25.0/examples/textedit.cpp
--- old/sonnet-5.24.0/examples/textedit.cpp 2016-07-03 11:30:50.0 
+0200
+++ new/sonnet-5.25.0/examples/textedit.cpp 2016-08-07 16:03:38.0 
+0200
@@ -62,7 +62,7 @@
  );
 
 Sonnet::SpellCheckDecorator *installer = new 
Sonnet::SpellCheckDecorator(textEdit);
-installer->highlighter()->setCurrentLanguage(QStringLiteral("en"));
+installer->highlighter()->setCurrentLanguage(QStringLiteral("en_US"));
 //@@snippet_end
 
 QObject::connect(comboBox, SIGNAL(dictionaryChanged(QString)), 
installer->highlighter(), SLOT(setCurrentLanguage(QString)));
@@ -72,7 +72,7 @@
 QStringLiteral("John Doe said:\n> Hello how aree you?\nI am ffine 
thanks"));
 
 installer = new MailSpellCheckDecorator(mailTextEdit);
-installer->highlighter()->setCurrentLanguage(QStringLiteral("en"));
+installer->highlighter()->setCurrentLanguage(QStringLiteral("en_US"));

commit sonnet for openSUSE:Factory

2016-07-15 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2016-07-15 12:42:06

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2016-07-03 
12:26:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2016-07-15 
12:42:09.0 +0200
@@ -1,0 +2,9 @@
+Wed Jul  6 15:07:44 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.24.0
+  * Mark helper exe as non-gui app
+  * Allow nsspellcheck to be compiled on mac per default
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.24.0.php
+
+---

Old:

  sonnet-5.23.0.tar.xz

New:

  sonnet-5.24.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.Qc3I9u/_old  2016-07-15 12:42:11.0 +0200
+++ /var/tmp/diff_new_pack.Qc3I9u/_new  2016-07-15 12:42:11.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.23
+%define _tar_path 5.24
 Name:   sonnet
-Version:5.23.0
+Version:5.24.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 2.8.12

++ sonnet-5.23.0.tar.xz -> sonnet-5.24.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.23.0/CMakeLists.txt 
new/sonnet-5.24.0/CMakeLists.txt
--- old/sonnet-5.23.0/CMakeLists.txt2016-06-06 13:54:00.0 +0200
+++ new/sonnet-5.24.0/CMakeLists.txt2016-07-03 11:30:50.0 +0200
@@ -4,7 +4,7 @@
 project(Sonnet)
 
 include(FeatureSummary)
-find_package(ECM 5.23.0  NO_MODULE)
+find_package(ECM 5.24.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)
 
@@ -26,7 +26,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION "5.23.0") # handled by release scripts
+set(KF5_VERSION "5.24.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX SONNET
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/sonnet_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.23.0/data/CMakeLists.txt 
new/sonnet-5.24.0/data/CMakeLists.txt
--- old/sonnet-5.23.0/data/CMakeLists.txt   2016-06-06 13:54:00.0 
+0200
+++ new/sonnet-5.24.0/data/CMakeLists.txt   2016-07-03 11:30:50.0 
+0200
@@ -1,7 +1,12 @@
 project(sonnetdata)
 
+include(ECMMarkNonGuiExecutable)
+
 add_executable(parsetrigrams parsetrigrams.cpp)
 
+# Mark it as non-gui so we won't create an app bundle on Mac OS X
+ecm_mark_nongui_executable(parsetrigrams)
+
 TARGET_LINK_LIBRARIES(parsetrigrams PUBLIC Qt5::Core)
 INSTALL(TARGETS parsetrigrams EXPORT KF5SonnetTargets 
${KF5_INSTALL_TARGETS_DEFAULT_ARGS})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.23.0/metainfo.yaml 
new/sonnet-5.24.0/metainfo.yaml
--- old/sonnet-5.23.0/metainfo.yaml 2016-06-06 13:54:00.0 +0200
+++ new/sonnet-5.24.0/metainfo.yaml 2016-07-03 11:30:50.0 +0200
@@ -3,7 +3,9 @@
 tier: 1
 type: solution
 platforms:
-- name: All
+- name: Linux
+- name: Windows
+- name: MacOSX
 portingAid: false
 deprecated: false
 release: true
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.23.0/po/he/sonnet5_qt.po 
new/sonnet-5.24.0/po/he/sonnet5_qt.po
--- old/sonnet-5.23.0/po/he/sonnet5_qt.po   2016-06-06 13:54:00.0 
+0200
+++ new/sonnet-5.24.0/po/he/sonnet5_qt.po   2016-07-03 11:30:50.0 
+0200
@@ -16,42 +16,34 @@
 # Diego Iastrubni , 2005, 2006, 2007, 2008, 2009, 2012, 2014.
 # Meni Livne , 2007.
 # tahmar1900 , 2008, 2009.
+# Elkana Bardugo , 2016.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2014-03-23 01:50+\n"
-"PO-Revision-Date: 2014-01-10 17:20+0200\n"
-"Last-Translator: Diego Iastrubni \n"
+"PO-Revision-Date: 2016-06-29 17:43+0200\n"
+"Last-Translator: Elkana Bardugo \n"
 "Language-Team: Hebrew \n"
 "Language: he\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: 

commit sonnet for openSUSE:Factory

2016-07-03 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2016-07-03 12:26:30

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2016-05-19 
12:10:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2016-07-03 
12:26:32.0 +0200
@@ -1,0 +2,7 @@
+Mon Jun  6 21:45:42 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.23.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.23.0.php
+
+---

Old:

  sonnet-5.22.0.tar.xz

New:

  sonnet-5.23.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.ZzAbmE/_old  2016-07-03 12:26:33.0 +0200
+++ /var/tmp/diff_new_pack.ZzAbmE/_new  2016-07-03 12:26:33.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.22
+%define _tar_path 5.23
 Name:   sonnet
-Version:5.22.0
+Version:5.23.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 2.8.12

++ sonnet-5.22.0.tar.xz -> sonnet-5.23.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.22.0/CMakeLists.txt 
new/sonnet-5.23.0/CMakeLists.txt
--- old/sonnet-5.22.0/CMakeLists.txt2016-05-07 17:29:39.0 +0200
+++ new/sonnet-5.23.0/CMakeLists.txt2016-06-06 13:54:00.0 +0200
@@ -4,7 +4,7 @@
 project(Sonnet)
 
 include(FeatureSummary)
-find_package(ECM 5.22.0  NO_MODULE)
+find_package(ECM 5.23.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)
 
@@ -26,7 +26,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION "5.22.0") # handled by release scripts
+set(KF5_VERSION "5.23.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX SONNET
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/sonnet_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.22.0/metainfo.yaml 
new/sonnet-5.23.0/metainfo.yaml
--- old/sonnet-5.22.0/metainfo.yaml 2016-05-07 17:29:39.0 +0200
+++ new/sonnet-5.23.0/metainfo.yaml 2016-06-06 13:54:00.0 +0200
@@ -13,3 +13,7 @@
  - qmake: SonnetUi
cmake: "KF5::SonnetUi"
 cmakename: KF5Sonnet
+
+public_lib: true
+group: Frameworks
+subgroup: Tier 1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.22.0/po/gd/sonnet5_qt.po 
new/sonnet-5.23.0/po/gd/sonnet5_qt.po
--- old/sonnet-5.22.0/po/gd/sonnet5_qt.po   2016-05-07 17:29:39.0 
+0200
+++ new/sonnet-5.23.0/po/gd/sonnet5_qt.po   2016-06-06 13:54:00.0 
+0200
@@ -1,10 +1,10 @@
-# GunChleoc , 2015.
+# GunChleoc , 2015, 2016.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "POT-Creation-Date: \n"
-"PO-Revision-Date: 2015-11-04 15:14+\n"
-"Last-Translator: Michael Bauer \n"
+"PO-Revision-Date: 2016-04-30 12:12+0100\n"
+"Last-Translator: GunChleoc \n"
 "Language-Team: Fòram na Gàidhlig\n"
 "Language: gd\n"
 "MIME-Version: 1.0\n"
@@ -12,7 +12,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : "
 "(n > 2 && n < 20) ? 2 : 3;\n"
-"X-Generator: Poedit 1.8.4\n"
+"X-Generator: Virtaal 0.7.1\n"
 "X-Qt-Contexts: true\n"
 
 #: core/loader.cpp:173
@@ -190,12 +190,9 @@
 msgstr "Thoi air falbh"
 
 #: ui/configui.ui:160
-#, fuzzy
-#| msgctxt "SonnetConfigUI|"
-#| msgid "Enable  spellchecking"
 msgctxt "SonnetConfigUI|"
 msgid "No backend found for spell checking"
-msgstr "Cuir an comas dearbhadh an litreachaidh sa chùlai"
+msgstr "Cha deach backend airson dearbhadh an litreachaidh a lorg"
 
 #: ui/dialog.cpp:100 ui/dialog.cpp:224 ui/dialog.cpp:433
 msgctxt "Sonnet::Dialog|@title:window"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.22.0/src/core/sonnet-core.pro 
new/sonnet-5.23.0/src/core/sonnet-core.pro
--- old/sonnet-5.22.0/src/core/sonnet-core.pro  2016-05-07 17:29:39.0 
+0200
+++ new/sonnet-5.23.0/src/core/sonnet-core.pro  2016-06-06 13:54:00.0 
+0200
@@ -1,6 +1,6 @@
 TARGET = sonnet-core
 TEMPLATE = lib
-CONFIG += staticlib
+CONFIG += staticlib c++11
 QT -= 

commit sonnet for openSUSE:Factory

2016-05-05 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2016-05-05 08:12:12

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2016-04-12 
19:30:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2016-05-05 
08:12:13.0 +0200
@@ -1,0 +2,5 @@
+Mon May  2 14:04:16 UTC 2016 - dims...@opensuse.org
+
+- Add sonnet-hunspell-1.4.patch: detect hunspell 1.4.x.
+
+---

New:

  sonnet-hunspell-1.4.patch



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.ELavfN/_old  2016-05-05 08:12:14.0 +0200
+++ /var/tmp/diff_new_pack.ELavfN/_new  2016-05-05 08:12:14.0 +0200
@@ -43,6 +43,7 @@
 Url:http://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
+Patch0: sonnet-hunspell-1.4.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -92,6 +93,7 @@
 %lang_package -n libKF5SonnetCore%sonum
 %prep
 %setup -q
+%patch0 -p1
 
 %build
   %cmake_kf5 -d build -- -Dlconvert_executable=%{_kf5_libdir}/qt5/bin/lconvert

++ sonnet-hunspell-1.4.patch ++
>From 19fe077169fc0aa3b43c4d61ed642541d1b12d58 Mon Sep 17 00:00:00 2001
From: Dominique Leuenberger 
Date: Mon, 2 May 2016 16:09:32 +0200
Subject: [PATCH] build: detect Hunspell 1.4 branch

---
 cmake/FindHUNSPELL.cmake | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmake/FindHUNSPELL.cmake b/cmake/FindHUNSPELL.cmake
index 26942b5..f028abe 100644
--- a/cmake/FindHUNSPELL.cmake
+++ b/cmake/FindHUNSPELL.cmake
@@ -14,7 +14,7 @@ ENDIF (HUNSPELL_INCLUDE_DIR AND HUNSPELL_LIBRARIES)
 
 FIND_PATH(HUNSPELL_INCLUDE_DIR hunspell/hunspell.hxx )
 
-FIND_LIBRARY(HUNSPELL_LIBRARIES NAMES hunspell-1.3 hunspell-1.2)
+FIND_LIBRARY(HUNSPELL_LIBRARIES NAMES hunspell-1.4 hunspell-1.3 hunspell-1.2)
 
 # handle the QUIETLY and REQUIRED arguments and set HUNSPELL_FOUND to TRUE if 
 # all listed variables are TRUE
-- 
2.8.1




commit sonnet for openSUSE:Factory

2016-04-12 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2016-04-12 19:30:32

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2016-03-16 
10:32:49.0 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2016-04-12 
19:30:33.0 +0200
@@ -1,0 +2,8 @@
+Mon Apr  4 14:31:48 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.21.0 (boo#974793)
+  * Upgrade Qt version requirement to 5.4.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.21.0.php
+
+---

Old:

  sonnet-5.20.0.tar.xz

New:

  sonnet-5.21.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.OqPnBd/_old  2016-04-12 19:30:33.0 +0200
+++ /var/tmp/diff_new_pack.OqPnBd/_new  2016-04-12 19:30:33.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.20
+%define _tar_path 5.21
 Name:   sonnet
-Version:5.20.0
+Version:5.21.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 2.8.12
@@ -30,12 +30,12 @@
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 %if %{with lang}
-BuildRequires:  cmake(Qt5LinguistTools) >= 5.3.0
+BuildRequires:  cmake(Qt5LinguistTools) >= 5.4.0
 %endif
 BuildRequires:  myspell-dictionaries
-BuildRequires:  cmake(Qt5Core) >= 5.3.0
-BuildRequires:  cmake(Qt5Test) >= 5.3.0
-BuildRequires:  cmake(Qt5Widgets) >= 5.3.0
+BuildRequires:  cmake(Qt5Core) >= 5.4.0
+BuildRequires:  cmake(Qt5Test) >= 5.4.0
+BuildRequires:  cmake(Qt5Widgets) >= 5.4.0
 BuildRequires:  pkgconfig(hunspell)
 Summary:KDE spell checking library
 License:LGPL-2.1+
@@ -82,7 +82,7 @@
 Requires:   extra-cmake-modules
 Requires:   libKF5SonnetCore%sonum = %{version}
 Requires:   libKF5SonnetUi%sonum = %{version}
-Requires:   cmake(Qt5Core) >= 5.3.0
+Requires:   cmake(Qt5Core) >= 5.4.0
 
 %description devel
 Sonnet is a plugin-based spell checking library for Qt-based

++ sonnet-5.20.0.tar.xz -> sonnet-5.21.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.20.0/CMakeLists.txt 
new/sonnet-5.21.0/CMakeLists.txt
--- old/sonnet-5.20.0/CMakeLists.txt2016-03-05 20:15:12.0 +0100
+++ new/sonnet-5.21.0/CMakeLists.txt2016-04-03 23:08:41.0 +0200
@@ -4,7 +4,7 @@
 project(Sonnet)
 
 include(FeatureSummary)
-find_package(ECM 5.20.0  NO_MODULE)
+find_package(ECM 5.21.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)
 
@@ -15,7 +15,7 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
-set(REQUIRED_QT_VERSION 5.3.0)
+set(REQUIRED_QT_VERSION 5.4.0)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Widgets)
 
 
@@ -26,7 +26,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION "5.20.0") # handled by release scripts
+set(KF5_VERSION "5.21.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX SONNET
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/sonnet_version.h"




commit sonnet for openSUSE:Factory

2016-03-16 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2016-03-16 10:32:47

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2016-02-24 
18:58:04.0 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2016-03-16 
10:32:49.0 +0100
@@ -1,0 +2,12 @@
+Sun Mar  6 10:05:07 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.20.0 (boo#970856)
+  * Don't disable language detection just because a language is set
+  * Disable automatic disabling of automatic spelling by default
+  * Fix TextBreaks
+  * Fix Hunspell dictionary search paths missing '/' (kde#359866)
+  * Add /../share/hunspell to dictionary search path
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.20.0.php
+
+---

Old:

  sonnet-5.19.0.tar.xz

New:

  sonnet-5.20.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.9SZBVD/_old  2016-03-16 10:32:50.0 +0100
+++ /var/tmp/diff_new_pack.9SZBVD/_new  2016-03-16 10:32:50.0 +0100
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.19
+%define _tar_path 5.20
 Name:   sonnet
-Version:5.19.0
+Version:5.20.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 2.8.12

++ sonnet-5.19.0.tar.xz -> sonnet-5.20.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.19.0/CMakeLists.txt 
new/sonnet-5.20.0/CMakeLists.txt
--- old/sonnet-5.19.0/CMakeLists.txt2016-02-06 15:03:16.0 +0100
+++ new/sonnet-5.20.0/CMakeLists.txt2016-03-05 20:15:12.0 +0100
@@ -4,7 +4,7 @@
 project(Sonnet)
 
 include(FeatureSummary)
-find_package(ECM 5.19.0  NO_MODULE)
+find_package(ECM 5.20.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)
 
@@ -26,7 +26,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION "5.19.0") # handled by release scripts
+set(KF5_VERSION "5.20.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX SONNET
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/sonnet_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.19.0/autotests/CMakeLists.txt 
new/sonnet-5.20.0/autotests/CMakeLists.txt
--- old/sonnet-5.19.0/autotests/CMakeLists.txt  2016-02-06 15:03:16.0 
+0100
+++ new/sonnet-5.20.0/autotests/CMakeLists.txt  2016-03-05 20:15:12.0 
+0100
@@ -14,7 +14,7 @@
 endmacro(SONNET_UNIT_TESTS)
 
 sonnet_unit_tests(
-# test_filter
+ test_filter
  test_core
  test_suggest
  test_settings
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.19.0/autotests/test_filter.cpp 
new/sonnet-5.20.0/autotests/test_filter.cpp
--- old/sonnet-5.19.0/autotests/test_filter.cpp 2016-02-06 15:03:16.0 
+0100
+++ new/sonnet-5.20.0/autotests/test_filter.cpp 2016-03-05 20:15:12.0 
+0100
@@ -20,7 +20,7 @@
  */
 
 #include "test_filter.h"
-#include "filter_p.h"
+#include "tokenizer_p.h"
 
 #include 
 #include 
@@ -37,72 +37,34 @@
 int start;
 };
 
-void SonnetFilterTest::testFilter()
+void SonnetFilterTest::testLatin()
 {
-QString buffer("This is a sample thing. Please test me . He's 
don't Le'Clerk.");
+QString buffer("  This is a sample thing. Please test me ... He's 
don't Le'Clerk.");
 QList hits;
-hits.append(Hit("This", 0));
-hits.append(Hit("is", 5));
-hits.append(Hit("a", 12));
-hits.append(Hit("sample", 14));
-hits.append(Hit("thing", 21));
-hits.append(Hit("Please", 28));
-hits.append(Hit("test", 35));
-hits.append(Hit("me", 40));
-hits.append(Hit("He's", 49));
-hits.append(Hit("don't", 54));
-hits.append(Hit("Le'Clerk", 60));
+hits.append(Hit("This", 2));
+hits.append(Hit("is", 7));
+hits.append(Hit("a", 14));
+hits.append(Hit("sample", 16));
+hits.append(Hit("thing", 23));
+hits.append(Hit("Please", 30));
+hits.append(Hit("test", 37));
+hits.append(Hit("me", 42));
+hits.append(Hit("He's", 53));
+hits.append(Hit("don't", 58));
+hits.append(Hit("Le'Clerk", 64));
 
-Filter filter;
-filter.setBuffer(buffer);
+WordTokenizer tokenizer;
+

commit sonnet for openSUSE:Factory

2016-02-24 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2016-02-24 18:58:03

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2016-01-20 
09:49:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2016-02-24 
18:58:04.0 +0100
@@ -1,0 +2,7 @@
+Sat Feb  6 18:10:16 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.19.0 (boo#967668)
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.19.0.php
+
+---

Old:

  sonnet-5.18.0.tar.xz

New:

  sonnet-5.19.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.BUPM0o/_old  2016-02-24 18:58:05.0 +0100
+++ /var/tmp/diff_new_pack.BUPM0o/_new  2016-02-24 18:58:05.0 +0100
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.18
+%define _tar_path 5.19
 Name:   sonnet
-Version:5.18.0
+Version:5.19.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 2.8.12

++ sonnet-5.18.0.tar.xz -> sonnet-5.19.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.18.0/CMakeLists.txt 
new/sonnet-5.19.0/CMakeLists.txt
--- old/sonnet-5.18.0/CMakeLists.txt2016-01-02 17:58:13.0 +0100
+++ new/sonnet-5.19.0/CMakeLists.txt2016-02-06 15:03:16.0 +0100
@@ -4,7 +4,7 @@
 project(Sonnet)
 
 include(FeatureSummary)
-find_package(ECM 5.18.0  NO_MODULE)
+find_package(ECM 5.19.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)
 
@@ -12,7 +12,7 @@
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake )
 
 include(KDEInstallDirs)
-include(KDEFrameworkCompilerSettings)
+include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
 set(REQUIRED_QT_VERSION 5.3.0)
@@ -26,7 +26,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION "5.18.0") # handled by release scripts
+set(KF5_VERSION "5.19.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX SONNET
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/sonnet_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.18.0/po/ast/sonnet5_qt.po 
new/sonnet-5.19.0/po/ast/sonnet5_qt.po
--- old/sonnet-5.18.0/po/ast/sonnet5_qt.po  2016-01-02 17:58:13.0 
+0100
+++ new/sonnet-5.19.0/po/ast/sonnet5_qt.po  2016-02-06 15:03:16.0 
+0100
@@ -1,15 +1,15 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Enol P. , 2015.
+# Enol P. , 2015, 2016.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdelibs4-1\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2014-03-23 01:50+\n"
-"PO-Revision-Date: 2015-11-22 02:51+0100\n"
-"Last-Translator: enolp \n"
-"Language-Team: Asturian \n"
+"PO-Revision-Date: 2016-02-04 13:22+0100\n"
+"Last-Translator: enolp \n"
+"Language-Team: Asturian <>\n"
 "Language: ast\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -204,7 +204,7 @@
 #: ui/configui.ui:47
 msgctxt "SonnetConfigUI|"
 msgid "Enable autodetection of "
-msgstr "Habilitar auto-deteición de la "
+msgstr "Habilitar auto-deteición de "
 
 #: ui/configui.ui:54
 #, fuzzy
@@ -249,15 +249,11 @@
 msgstr "Pallabres inoraes"
 
 #: ui/configui.ui:109
-#, fuzzy
-#| msgid ""
 msgctxt "SonnetConfigUI|"
 msgid ""
 msgstr ""
 
 #: ui/configui.ui:122
-#, fuzzy
-#| msgid ""
 msgctxt "SonnetConfigUI|"
 msgid ""
 msgstr ""
@@ -371,15 +367,11 @@
 ""
 
 #: ui/sonnetui.ui:36
-#, fuzzy
-#| msgid "Unknown word:"
 msgctxt "SonnetUi|"
 msgid "Unknown word:"
 msgstr "Pallabra desconocida:"
 
 #: ui/sonnetui.ui:43
-#, fuzzy
-#| msgid "Unknown word"
 msgctxt "SonnetUi|"
 msgid "Unknown word"
 msgstr "Pallabra desconocía"
@@ -408,8 +400,6 @@
 ""
 
 #: ui/sonnetui.ui:64
-#, fuzzy
-#| msgid ":"
 msgctxt "SonnetUi|"
 msgid ":"
 msgstr ":"
@@ -493,11 +483,9 @@
 msgstr "<< Amestar al diccionariu"
 
 #: ui/sonnetui.ui:124
-#, fuzzy
-#| msgid "Suggestion List"
 msgctxt "SonnetUi|"
 msgid "Suggestion List"
-msgstr "Llista 

commit sonnet for openSUSE:Factory

2016-01-20 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2016-01-20 09:49:26

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2015-12-29 
12:55:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2016-01-20 
09:49:28.0 +0100
@@ -1,0 +2,7 @@
+Sat Jan  2 17:46:29 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.18.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.18.0.php
+
+---

Old:

  sonnet-5.17.0.tar.xz

New:

  sonnet-5.18.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.rffyI8/_old  2016-01-20 09:49:30.0 +0100
+++ /var/tmp/diff_new_pack.rffyI8/_new  2016-01-20 09:49:30.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package sonnet
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.17
+%define _tar_path 5.18
 Name:   sonnet
-Version:5.17.0
+Version:5.18.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 2.8.12

++ sonnet-5.17.0.tar.xz -> sonnet-5.18.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.17.0/CMakeLists.txt 
new/sonnet-5.18.0/CMakeLists.txt
--- old/sonnet-5.17.0/CMakeLists.txt2015-12-06 22:45:23.0 +0100
+++ new/sonnet-5.18.0/CMakeLists.txt2016-01-02 17:58:13.0 +0100
@@ -4,7 +4,7 @@
 project(Sonnet)
 
 include(FeatureSummary)
-find_package(ECM 5.17.0  NO_MODULE)
+find_package(ECM 5.18.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)
 
@@ -26,7 +26,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION "5.17.0") # handled by release scripts
+set(KF5_VERSION "5.18.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX SONNET
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/sonnet_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.17.0/examples/dialogexample.cpp 
new/sonnet-5.18.0/examples/dialogexample.cpp
--- old/sonnet-5.17.0/examples/dialogexample.cpp2015-12-06 
22:45:23.0 +0100
+++ new/sonnet-5.18.0/examples/dialogexample.cpp2016-01-02 
17:58:13.0 +0100
@@ -56,7 +56,7 @@
 QApplication app(argc, argv);
 
 TestDialog test;
-test.check(QStringLiteral("This is a sample buffer. Whih this thingg will "
+test.check(QString::fromLatin1("This is a sample buffer. Whih this thingg 
will "
"be checkin for misstakes. Whih, Enviroment, govermant. Whih.")
   );
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.17.0/examples/plaintextedit.cpp 
new/sonnet-5.18.0/examples/plaintextedit.cpp
--- old/sonnet-5.17.0/examples/plaintextedit.cpp2015-12-06 
22:45:23.0 +0100
+++ new/sonnet-5.18.0/examples/plaintextedit.cpp2016-01-02 
17:58:13.0 +0100
@@ -57,7 +57,7 @@
 
 //@@snippet_begin(simple_textedit_example)
 QPlainTextEdit *textEdit = new QPlainTextEdit;
-textEdit->setPlainText(QStringLiteral("This is a sample buffer. Whih this 
thingg will "
+textEdit->setPlainText(QString::fromLatin1("This is a sample buffer. Whih 
this thingg will "
   "be checkin for misstakes. Whih, Enviroment, govermant. 
Whih.")
  );
 
@@ -69,9 +69,7 @@
 
 QPlainTextEdit *commentTextEdit = new QPlainTextEdit;
 commentTextEdit->setPlainText(
-QStringLiteral("John Doe said:\n"
-"# Hello how aree you?\n"
-"I am ffine thanks"));
+QStringLiteral("John Doe said:\n# Hello how aree you?\nI am ffine 
thanks"));
 
 installer = new CommentCheckDecorator(commentTextEdit);
 installer->highlighter()->setCurrentLanguage(QStringLiteral("en"));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.17.0/examples/textedit.cpp 

commit sonnet for openSUSE:Factory

2015-12-29 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2015-12-29 12:55:32

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2015-11-24 
22:25:57.0 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2015-12-29 
12:55:50.0 +0100
@@ -1,0 +2,7 @@
+Thu Dec 10 23:13:09 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.17.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.17.0.php
+
+---

Old:

  sonnet-5.16.0.tar.xz

New:

  sonnet-5.17.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.z7Xndv/_old  2015-12-29 12:55:51.0 +0100
+++ /var/tmp/diff_new_pack.z7Xndv/_new  2015-12-29 12:55:51.0 +0100
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.16
+%define _tar_path 5.17
 Name:   sonnet
-Version:5.16.0
+Version:5.17.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 2.8.12

++ sonnet-5.16.0.tar.xz -> sonnet-5.17.0.tar.xz ++
 9344 lines of diff (skipped)




commit sonnet for openSUSE:Factory

2015-11-24 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2015-11-24 22:25:55

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2015-10-19 
22:29:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2015-11-24 
22:25:57.0 +0100
@@ -1,0 +2,7 @@
+Sun Nov  8 17:07:05 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.16.0 (boo#955067)
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.16.0.php
+
+---

Old:

  sonnet-5.15.0.tar.xz

New:

  sonnet-5.16.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.0OQBA4/_old  2015-11-24 22:25:58.0 +0100
+++ /var/tmp/diff_new_pack.0OQBA4/_new  2015-11-24 22:25:58.0 +0100
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.15
+%define _tar_path 5.16
 Name:   sonnet
-Version:5.15.0
+Version:5.16.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 2.8.12

++ sonnet-5.15.0.tar.xz -> sonnet-5.16.0.tar.xz ++
 1871 lines of diff (skipped)




commit sonnet for openSUSE:Factory

2015-10-19 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2015-10-19 22:29:36

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2015-09-24 
07:15:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2015-10-19 
22:29:37.0 +0200
@@ -1,0 +2,17 @@
+Mon Oct  5 17:37:48 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.15.0
+  * Fix hunspell plugin ID for proper loading
+  * Support static compilation on windows, add windows libreoffice
+hunspell dict path
+  * Do not assume UTF-8 encoded Hunspell dictionaries. (kde#353133)
+  * Fix Highlighter::setCurrentLanguage() for the case when
+previous language was invalid (kde#349151)
+  * Support /usr/share/hunspell as dict location
+  * NSSpellChecker-based plugin
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.15.0.php
+- Drop dictionary-locations.patch, no longer needed
+- Add myspell-dictionaries BuildRequires
+
+---

Old:

  dictionary-locations.patch
  sonnet-5.14.0.tar.xz

New:

  sonnet-5.15.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.00RqhC/_old  2015-10-19 22:29:38.0 +0200
+++ /var/tmp/diff_new_pack.00RqhC/_new  2015-10-19 22:29:38.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.14
+%define _tar_path 5.15
 Name:   sonnet
-Version:5.14.0
+Version:5.15.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 2.8.12
@@ -32,6 +32,7 @@
 %if %{with lang}
 BuildRequires:  cmake(Qt5LinguistTools) >= 5.3.0
 %endif
+BuildRequires:  myspell-dictionaries
 BuildRequires:  cmake(Qt5Core) >= 5.3.0
 BuildRequires:  cmake(Qt5Test) >= 5.3.0
 BuildRequires:  cmake(Qt5Widgets) >= 5.3.0
@@ -42,8 +43,6 @@
 Url:http://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
-# PATCH-FIX-OPENSUSE dictionary-locations.patch -- find dictionaries in 
openSUSE locations
-Patch0: dictionary-locations.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -93,7 +92,6 @@
 %lang_package -n libKF5SonnetCore%sonum
 %prep
 %setup -q
-%patch0 -p1
 
 %build
   %cmake_kf5 -d build -- -Dlconvert_executable=%{_kf5_libdir}/qt5/bin/lconvert

++ sonnet-5.14.0.tar.xz -> sonnet-5.15.0.tar.xz ++
 18375 lines of diff (skipped)




commit sonnet for openSUSE:Factory

2015-09-23 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2015-09-24 07:14:59

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2015-09-02 
07:49:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2015-09-24 
07:15:00.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  8 17:13:45 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.14.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.14.0.php
+
+---

Old:

  sonnet-5.13.0.tar.xz

New:

  sonnet-5.14.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.iiANI0/_old  2015-09-24 07:15:01.0 +0200
+++ /var/tmp/diff_new_pack.iiANI0/_new  2015-09-24 07:15:01.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.13
+%define _tar_path 5.14
 Name:   sonnet
-Version:5.13.0
+Version:5.14.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 2.8.12

++ sonnet-5.13.0.tar.xz -> sonnet-5.14.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.13.0/CMakeLists.txt 
new/sonnet-5.14.0/CMakeLists.txt
--- old/sonnet-5.13.0/CMakeLists.txt2015-08-04 13:47:13.0 +0200
+++ new/sonnet-5.14.0/CMakeLists.txt2015-09-05 11:20:41.0 +0200
@@ -4,7 +4,7 @@
 project(Sonnet)
 
 include(FeatureSummary)
-find_package(ECM 5.13.0  NO_MODULE)
+find_package(ECM 5.14.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)
 
@@ -26,7 +26,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION "5.13.0") # handled by release scripts
+set(KF5_VERSION "5.14.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX SONNET
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/sonnet_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.13.0/po/fr/sonnet5_qt.po 
new/sonnet-5.14.0/po/fr/sonnet5_qt.po
--- old/sonnet-5.13.0/po/fr/sonnet5_qt.po   2015-08-04 13:47:13.0 
+0200
+++ new/sonnet-5.14.0/po/fr/sonnet5_qt.po   2015-09-05 11:20:41.0 
+0200
@@ -24,10 +24,10 @@
 "PO-Revision-Date: 2014-06-29 22:06+0200\n"
 "Last-Translator: Sebastien Renard \n"
 "Language-Team: French \n"
+"Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: fr\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 "X-Generator: Lokalize 1.5\n"
 "X-Environment: kde\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.13.0/src/core/backgroundchecker.cpp 
new/sonnet-5.14.0/src/core/backgroundchecker.cpp
--- old/sonnet-5.13.0/src/core/backgroundchecker.cpp2015-08-04 
13:47:13.0 +0200
+++ new/sonnet-5.14.0/src/core/backgroundchecker.cpp2015-09-05 
11:20:41.0 +0200
@@ -25,18 +25,18 @@
 using namespace Sonnet;
 
 
-void BackgroundChecker::Private::start()
+void BackgroundCheckerPrivate::start()
 {
 sentenceOffset=-1;
 continueChecking();
 }
 
-void BackgroundChecker::Private::continueChecking()
+void BackgroundCheckerPrivate::continueChecking()
 {
 metaObject()->invokeMethod(this, "checkNext",Qt::QueuedConnection);
 }
 
-void BackgroundChecker::Private::checkNext()
+void BackgroundCheckerPrivate::checkNext()
 {
 do {
 // go over current sentence
@@ -72,7 +72,7 @@
 
 BackgroundChecker::BackgroundChecker(QObject *parent)
 : QObject(parent),
-  d(new Private)
+  d(new BackgroundCheckerPrivate)
 {
 connect(d, SIGNAL(misspelling(QString,int)),
 SIGNAL(misspelling(QString,int)));
@@ -82,7 +82,7 @@
 
 BackgroundChecker::BackgroundChecker(const Speller , QObject *parent)
 : QObject(parent),
-  d(new Private)
+  d(new BackgroundCheckerPrivate)
 {
 d->currentDict = speller;
 connect(d, SIGNAL(misspelling(QString,int)),
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.13.0/src/core/backgroundchecker.h 
new/sonnet-5.14.0/src/core/backgroundchecker.h
--- old/sonnet-5.13.0/src/core/backgroundchecker.h  2015-08-04 
13:47:13.0 +0200
+++ 

commit sonnet for openSUSE:Factory

2015-09-01 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2015-09-02 07:49:28

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is "sonnet"

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2015-07-14 
17:30:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2015-09-02 
07:49:29.0 +0200
@@ -1,0 +2,14 @@
+Tue Aug  4 19:20:54 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.13.0
+  * The Qt version requirement has been bumped from 5.2 to 5.3
+  * Debug output has been ported to categorized output, for less
+noise by default
+  * Docbook documentation has been reviewed and updated
+  * Add in CMake bits to enable building of Voikko plugin.
+  * Implement Sonnet::Client factory for Voikko spell chekers.
+  * Implement Voikko based spell checker (Sonnet::SpellerPlugin)
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.13.0.php
+
+---

Old:

  sonnet-5.12.0.tar.xz

New:

  sonnet-5.13.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.NjkbBP/_old  2015-09-02 07:49:30.0 +0200
+++ /var/tmp/diff_new_pack.NjkbBP/_new  2015-09-02 07:49:30.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.12
+%define _tar_path 5.13
 Name:   sonnet
-Version:5.12.0
+Version:5.13.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 2.8.12
@@ -30,11 +30,11 @@
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 %if %{with lang}
-BuildRequires:  libqt5-linguist-devel >= 5.2.0
+BuildRequires:  cmake(Qt5LinguistTools) >= 5.3.0
 %endif
-BuildRequires:  pkgconfig(Qt5Core) >= 5.2.0
-BuildRequires:  pkgconfig(Qt5Test) >= 5.2.0
-BuildRequires:  pkgconfig(Qt5Widgets) >= 5.2.0
+BuildRequires:  cmake(Qt5Core) >= 5.3.0
+BuildRequires:  cmake(Qt5Test) >= 5.3.0
+BuildRequires:  cmake(Qt5Widgets) >= 5.3.0
 BuildRequires:  pkgconfig(hunspell)
 Summary:KDE spell checking library
 License:LGPL-2.1+
@@ -83,7 +83,7 @@
 Requires:   extra-cmake-modules
 Requires:   libKF5SonnetCore%sonum = %{version}
 Requires:   libKF5SonnetUi%sonum = %{version}
-Requires:   pkgconfig(Qt5Core) >= 5.2.0
+Requires:   cmake(Qt5Core) >= 5.3.0
 
 %description devel
 Sonnet is a plugin-based spell checking library for Qt-based

++ sonnet-5.12.0.tar.xz -> sonnet-5.13.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.12.0/CMakeLists.txt 
new/sonnet-5.13.0/CMakeLists.txt
--- old/sonnet-5.12.0/CMakeLists.txt2015-07-05 11:18:26.0 +0200
+++ new/sonnet-5.13.0/CMakeLists.txt2015-08-04 13:47:13.0 +0200
@@ -4,7 +4,7 @@
 project(Sonnet)
 
 include(FeatureSummary)
-find_package(ECM 5.12.0  NO_MODULE)
+find_package(ECM 5.13.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)
 
@@ -15,7 +15,7 @@
 include(KDEFrameworkCompilerSettings)
 include(KDECMakeSettings)
 
-set(REQUIRED_QT_VERSION 5.2.0)
+set(REQUIRED_QT_VERSION 5.3.0)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Widgets)
 
 
@@ -26,7 +26,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION "5.12.0") # handled by release scripts
+set(KF5_VERSION "5.13.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX SONNET
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/sonnet_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.12.0/autotests/CMakeLists.txt 
new/sonnet-5.13.0/autotests/CMakeLists.txt
--- old/sonnet-5.12.0/autotests/CMakeLists.txt  2015-07-05 11:18:26.0 
+0200
+++ new/sonnet-5.13.0/autotests/CMakeLists.txt  2015-08-04 13:47:13.0 
+0200
@@ -3,7 +3,7 @@
 include(ECMMarkAsTest)
 include(ECMAddTests)
 
-find_package(Qt5Test 5.2.0 REQUIRED NO_MODULE)
+find_package(Qt5Test ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE)
 
 ### unittests ###
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.12.0/cmake/FindVOIKKO.cmake 
new/sonnet-5.13.0/cmake/FindVOIKKO.cmake
--- old/sonnet-5.12.0/cmake/FindVOIKKO.cmake1970-01-01 01:00:00.0 
+0100
+++ new/sonnet-5.13.0/cmake/FindVOIKKO.cmake2015-08-04 13:47:13.0 
+0200
@@ -0,0 +1,23 

commit sonnet for openSUSE:Factory

2015-07-14 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2015-07-14 17:30:16

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is sonnet

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2015-06-23 
12:13:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2015-07-14 
17:30:18.0 +0200
@@ -1,0 +2,8 @@
+Sun Jul  5 18:45:32 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.12.0
+  * Allow to use highlight spellchecking in a QPainTextEdit
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.12.0.php
+
+---

Old:

  sonnet-5.11.0.tar.xz

New:

  sonnet-5.12.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.7SkVaa/_old  2015-07-14 17:30:19.0 +0200
+++ /var/tmp/diff_new_pack.7SkVaa/_new  2015-07-14 17:30:19.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.11
+%define _tar_path 5.12
 Name:   sonnet
-Version:5.11.0
+Version:5.12.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake = 2.8.12

++ sonnet-5.11.0.tar.xz - sonnet-5.12.0.tar.xz ++
 5634 lines of diff (skipped)




commit sonnet for openSUSE:Factory

2015-06-23 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2015-06-23 12:13:12

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is sonnet

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2015-05-11 
19:48:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2015-06-23 
12:13:13.0 +0200
@@ -1,0 +2,11 @@
+Sun Jun  7 19:08:03 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.11.0
+  * Use one central cache for the SpellerPlugins.
+  * Reduce temporary allocations.
+  * Optimize: Do not wipe dict cache when copying speller objects.
+  * Optimise away save() calls by calling it once at the end if needed.
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.11.0.php
+
+---

Old:

  sonnet-5.10.0.tar.xz

New:

  sonnet-5.11.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.clgY1B/_old  2015-06-23 12:13:14.0 +0200
+++ /var/tmp/diff_new_pack.clgY1B/_new  2015-06-23 12:13:14.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.10
+%define _tar_path 5.11
 Name:   sonnet
-Version:5.10.0
+Version:5.11.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake = 2.8.12

++ sonnet-5.10.0.tar.xz - sonnet-5.11.0.tar.xz ++
 18500 lines of diff (skipped)




commit sonnet for openSUSE:Factory

2015-05-11 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2015-05-11 19:37:11

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is sonnet

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2015-04-13 
20:27:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2015-05-11 
19:48:20.0 +0200
@@ -1,0 +2,10 @@
+Sun May  3 19:50:00 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.10.0
+  * Don't try to highlight if there is no spell checker found.
+This would lead to an infinite loop with rehighlighRequest
+timer firing constanty.
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.10.0.php
+
+---

Old:

  sonnet-5.9.0.tar.xz

New:

  sonnet-5.10.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.8dIOJC/_old  2015-05-11 19:48:21.0 +0200
+++ /var/tmp/diff_new_pack.8dIOJC/_new  2015-05-11 19:48:21.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.9
+%define _tar_path 5.10
 Name:   sonnet
-Version:5.9.0
+Version:5.10.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake = 2.8.12

++ dictionary-locations.patch ++
--- /var/tmp/diff_new_pack.8dIOJC/_old  2015-05-11 19:48:21.0 +0200
+++ /var/tmp/diff_new_pack.8dIOJC/_new  2015-05-11 19:48:21.0 +0200
@@ -1,8 +1,8 @@
 diff --git a/src/plugins/hunspell/hunspellclient.cpp 
b/src/plugins/hunspell/hunspellclient.cpp
-index 9e3aa67..bf2ca71 100644
+index 46963ef..80c2636 100644
 --- a/src/plugins/hunspell/hunspellclient.cpp
 +++ b/src/plugins/hunspell/hunspellclient.cpp
-@@ -46,7 +46,7 @@ SpellerPlugin *HunspellClient::createSpeller(const QString 
language)
+@@ -47,7 +47,7 @@ SpellerPlugin *HunspellClient::createSpeller(const QString 
language)
  QStringList HunspellClient::languages() const
  {
  QStringList lst;
@@ -12,13 +12,13 @@
  QStringList lstDic = 
dir.entryList(QStringList(QStringLiteral(*.dic)), QDir::Files);
  foreach (const QString tmp, lstDic) {
 diff --git a/src/plugins/hunspell/hunspelldict.cpp 
b/src/plugins/hunspell/hunspelldict.cpp
-index 621113d..5baa65f 100644
+index fda4a4c..489bc9b 100644
 --- a/src/plugins/hunspell/hunspelldict.cpp
 +++ b/src/plugins/hunspell/hunspelldict.cpp
-@@ -30,9 +30,9 @@ HunspellDict::HunspellDict(const QString lang)
+@@ -31,9 +31,9 @@ HunspellDict::HunspellDict(const QString lang)
  : SpellerPlugin(lang), m_speller(0)
  {
- qDebug()   HunspellDict::HunspellDict( const QString lang ):  lang;
+ qCDebug(SONNET_HUNSPELL)   HunspellDict::HunspellDict( const QString 
lang ):  lang;
 -QString dic = QStringLiteral(/usr/share/myspell/dicts/%1.dic).arg(lang);
 +QString dic = QStringLiteral(/usr/share/hunspell/%1.dic).arg(lang);
  if (QFileInfo(dic).exists()) {

++ sonnet-5.9.0.tar.xz - sonnet-5.10.0.tar.xz ++
 2997 lines of diff (skipped)




commit sonnet for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2015-04-13 20:27:18

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is sonnet

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2015-03-16 
09:34:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2015-04-13 
20:27:19.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:40:57 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.9.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.9.0.php
+
+---

Old:

  sonnet-5.8.0.tar.xz

New:

  sonnet-5.9.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.PAAnbu/_old  2015-04-13 20:27:20.0 +0200
+++ /var/tmp/diff_new_pack.PAAnbu/_new  2015-04-13 20:27:20.0 +0200
@@ -16,19 +16,22 @@
 #
 
 
+%bcond_without lang
 %define sonum   5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   sonnet
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake = 2.8.12
 # Enchant plugin is currently disabled upstream
 #BuildRequires:  enchant-devel
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
+%if %{with lang}
 BuildRequires:  libqt5-linguist-devel = 5.2.0
+%endif
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) = 5.2.0
@@ -52,7 +55,9 @@
 Summary:KDE spell checking library
 Group:  System/GUI/KDE
 Obsoletes:  libKF5SonnetCore4
+%if %{with lang}
 Recommends: libKF5SonnetCore%sonum-lang = %{version}
+%endif
 %requires_ge libQt5Core5
 
 %description -n libKF5SonnetCore%sonum
@@ -96,9 +101,11 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes %{buildroot}%{_kf5_sharedir}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5 --with-qt --without-mo
+%if %{with lang}
+%find_lang %{name}5 --with-qt --without-mo
+%endif
 
 %post -n libKF5SonnetCore%sonum -p /sbin/ldconfig
 
@@ -108,7 +115,9 @@
 
 %postun -n libKF5SonnetUi%sonum -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n libKF5SonnetCore%sonum-lang -f %{name}5.lang
+%endif
 
 %files -n libKF5SonnetCore%sonum
 %defattr(-,root,root)

++ sonnet-5.8.0.tar.xz - sonnet-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.8.0/CMakeLists.txt 
new/sonnet-5.9.0/CMakeLists.txt
--- old/sonnet-5.8.0/CMakeLists.txt 2015-03-07 15:54:06.0 +0100
+++ new/sonnet-5.9.0/CMakeLists.txt 2015-04-04 14:16:01.0 +0200
@@ -3,7 +3,7 @@
 
 project(Sonnet)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake )
 
@@ -22,7 +22,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX SONNET
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/sonnet_version.h
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.8.0/po/fr/sonnet5_qt.po 
new/sonnet-5.9.0/po/fr/sonnet5_qt.po
--- old/sonnet-5.8.0/po/fr/sonnet5_qt.po2015-03-07 15:54:06.0 
+0100
+++ new/sonnet-5.9.0/po/fr/sonnet5_qt.po2015-04-04 14:16:01.0 
+0200
@@ -24,10 +24,10 @@
 PO-Revision-Date: 2014-06-29 22:06+0200\n
 Last-Translator: Sebastien Renard ren...@kde.org\n
 Language-Team: French kde-francoph...@kde.org\n
-Language: fr\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: fr\n
 Plural-Forms: nplurals=2; plural=(n  1);\n
 X-Generator: Lokalize 1.5\n
 X-Environment: kde\n




commit sonnet for openSUSE:Factory

2015-03-16 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2015-03-16 09:34:21

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is sonnet

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2015-02-16 
17:47:52.0 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2015-03-16 
09:34:22.0 +0100
@@ -1,0 +2,11 @@
+Sat Mar  7 16:58:57 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.8.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.8.0.php
+- Comment out aspell-devel BuildRequires, myspell/hunspell plugin
+  is prefered
+- Added dictionary-locations.patch: find dictionaries in openSUSE
+  locations
+
+---

Old:

  sonnet-5.7.0.tar.xz

New:

  dictionary-locations.patch
  sonnet-5.8.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.r5g58O/_old  2015-03-16 09:34:23.0 +0100
+++ /var/tmp/diff_new_pack.r5g58O/_new  2015-03-16 09:34:23.0 +0100
@@ -17,15 +17,15 @@
 
 
 %define sonum   5
-%define _tar_path 5.7
+%define _tar_path 5.8
 Name:   sonnet
 Version:%{_tar_path}.0
 Release:0
-BuildRequires:  aspell-devel
+#BuildRequires:  aspell-devel
 BuildRequires:  cmake = 2.8.12
 # Enchant plugin is currently disabled upstream
 #BuildRequires:  enchant-devel
-BuildRequires:  extra-cmake-modules = 1.7.0
+BuildRequires:  extra-cmake-modules = 1.8.0
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  libqt5-linguist-devel = 5.2.0
@@ -39,6 +39,8 @@
 Url:http://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
+# PATCH-FIX-OPENSUSE dictionary-locations.patch -- find dictionaries in 
openSUSE locations
+Patch0: dictionary-locations.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -86,6 +88,7 @@
 %lang_package -n libKF5SonnetCore%sonum
 %prep
 %setup -q
+%patch0 -p1
 
 %build
   %cmake_kf5 -d build -- -Dlconvert_executable=%{_kf5_libdir}/qt5/bin/lconvert

++ dictionary-locations.patch ++
diff --git a/src/plugins/hunspell/hunspellclient.cpp 
b/src/plugins/hunspell/hunspellclient.cpp
index 9e3aa67..bf2ca71 100644
--- a/src/plugins/hunspell/hunspellclient.cpp
+++ b/src/plugins/hunspell/hunspellclient.cpp
@@ -46,7 +46,7 @@ SpellerPlugin *HunspellClient::createSpeller(const QString 
language)
 QStringList HunspellClient::languages() const
 {
 QStringList lst;
-QDir dir(QStringLiteral(/usr/share/myspell/dicts/));
+QDir dir(QStringLiteral(/usr/share/hunspell/));
 if (dir.exists()) {
 QStringList lstDic = 
dir.entryList(QStringList(QStringLiteral(*.dic)), QDir::Files);
 foreach (const QString tmp, lstDic) {
diff --git a/src/plugins/hunspell/hunspelldict.cpp 
b/src/plugins/hunspell/hunspelldict.cpp
index 621113d..5baa65f 100644
--- a/src/plugins/hunspell/hunspelldict.cpp
+++ b/src/plugins/hunspell/hunspelldict.cpp
@@ -30,9 +30,9 @@ HunspellDict::HunspellDict(const QString lang)
 : SpellerPlugin(lang), m_speller(0)
 {
 qDebug()   HunspellDict::HunspellDict( const QString lang ):  lang;
-QString dic = QStringLiteral(/usr/share/myspell/dicts/%1.dic).arg(lang);
+QString dic = QStringLiteral(/usr/share/hunspell/%1.dic).arg(lang);
 if (QFileInfo(dic).exists()) {
-m_speller = new 
Hunspell(QStringLiteral(/usr/share/myspell/dicts/%1.aff).arg(lang).toUtf8().constData(),
 dic.toUtf8().constData());
+m_speller = new 
Hunspell(QStringLiteral(/usr/share/hunspell/%1.aff).arg(lang).toUtf8().constData(),
 dic.toUtf8().constData());
 } else {
 m_speller = 0;
 }
++ sonnet-5.7.0.tar.xz - sonnet-5.8.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.7.0/CMakeLists.txt 
new/sonnet-5.8.0/CMakeLists.txt
--- old/sonnet-5.7.0/CMakeLists.txt 2015-02-08 16:28:36.0 +0100
+++ new/sonnet-5.8.0/CMakeLists.txt 2015-03-07 15:54:06.0 +0100
@@ -3,7 +3,7 @@
 
 project(Sonnet)
 
-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 )
 
@@ -22,7 +22,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION 5.7.0) # handled by release scripts
+set(KF5_VERSION 5.8.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX SONNET
 VERSION_HEADER 

commit sonnet for openSUSE:Factory

2015-02-16 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2015-02-16 15:06:51

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is sonnet

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2015-01-29 
12:53:16.0 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2015-02-16 
17:47:52.0 +0100
@@ -1,0 +2,7 @@
+Sun Feb  8 18:15:34 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.7.0.php
+
+---

Old:

  sonnet-5.6.0.tar.xz

New:

  sonnet-5.7.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.SyNjNs/_old  2015-02-16 17:47:52.0 +0100
+++ /var/tmp/diff_new_pack.SyNjNs/_new  2015-02-16 17:47:52.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package sonnet
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,15 @@
 
 
 %define sonum   5
+%define _tar_path 5.7
 Name:   sonnet
-Version:5.6.0
+Version:%{_tar_path}.0
 Release:0
 BuildRequires:  aspell-devel
 BuildRequires:  cmake = 2.8.12
 # Enchant plugin is currently disabled upstream
 #BuildRequires:  enchant-devel
-BuildRequires:  extra-cmake-modules = 1.6.0
+BuildRequires:  extra-cmake-modules = 1.7.0
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  libqt5-linguist-devel = 5.2.0
@@ -36,7 +37,7 @@
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/frameworks/5.6/%{name}-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

++ sonnet-5.6.0.tar.xz - sonnet-5.7.0.tar.xz ++
 3041 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit sonnet for openSUSE:Factory

2015-01-29 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2015-01-29 12:53:13

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is sonnet

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2014-12-21 
11:58:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2015-01-29 
12:53:16.0 +0100
@@ -1,0 +2,7 @@
+Sat Jan  3 18:03:30 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.6.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.6.0.php
+
+---

Old:

  sonnet-5.5.0.tar.xz

New:

  sonnet-5.6.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.3BJeCQ/_old  2015-01-29 12:53:17.0 +0100
+++ /var/tmp/diff_new_pack.3BJeCQ/_new  2015-01-29 12:53:17.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package sonnet
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,13 +18,13 @@
 
 %define sonum   5
 Name:   sonnet
-Version:5.5.0
+Version:5.6.0
 Release:0
 BuildRequires:  aspell-devel
 BuildRequires:  cmake = 2.8.12
 # Enchant plugin is currently disabled upstream
 #BuildRequires:  enchant-devel
-BuildRequires:  extra-cmake-modules = 1.5.0
+BuildRequires:  extra-cmake-modules = 1.6.0
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  libqt5-linguist-devel = 5.2.0
@@ -36,7 +36,7 @@
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/frameworks/5.5/%{name}-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/frameworks/5.6/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

++ sonnet-5.5.0.tar.xz - sonnet-5.6.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.5.0/CMakeLists.txt 
new/sonnet-5.6.0/CMakeLists.txt
--- old/sonnet-5.5.0/CMakeLists.txt 2014-12-06 13:48:52.0 +0100
+++ new/sonnet-5.6.0/CMakeLists.txt 2015-01-03 13:17:53.0 +0100
@@ -3,7 +3,7 @@
 
 project(Sonnet)
 
-find_package(ECM 1.5.0 REQUIRED NO_MODULE)
+find_package(ECM 1.6.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake )
 
@@ -22,7 +22,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION 5.5.0) # handled by release scripts
+set(KF5_VERSION 5.6.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX SONNET
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/sonnet_version.h
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.5.0/po/ca/sonnet5_qt.po 
new/sonnet-5.6.0/po/ca/sonnet5_qt.po
--- old/sonnet-5.5.0/po/ca/sonnet5_qt.po2014-12-06 13:48:52.0 
+0100
+++ new/sonnet-5.6.0/po/ca/sonnet5_qt.po2015-01-03 13:17:53.0 
+0100
@@ -4,7 +4,7 @@
 # version 3 or later versions approved by the membership of KDE e.V.
 #
 # Sebastià Pla i Sanz s...@sastia.com, 1998, 1999, 2000, 2001, 2002, 2003, 
2004, 2005, 2006, 2007.
-# Antoni Bella Pérez antonibel...@orange.es, 2003, 2006, 2011, 2012, 2013, 
2014.
+# Antoni Bella Pérez antonibel...@yahoo.com, 2003, 2006, 2011, 2012, 2013, 
2014.
 # Albert Astals Cid aa...@kde.org, 2004, 2005, 2007.
 # Josep Ma. Ferrer txe...@gmail.com, 2007, 2008, 2009, 2010, 2011, 2012, 
2013, 2014.
 # Robert Millan r...@aybabtu.com, 2009.
@@ -15,7 +15,7 @@
 Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 POT-Creation-Date: 2014-03-23 01:50+\n
 PO-Revision-Date: 2014-07-28 23:18+0200\n
-Last-Translator: Antoni Bella Pérez antonibel...@orange.es\n
+Last-Translator: Antoni Bella Pérez antonibel...@yahoo.com\n
 Language-Team: Catalan kde-i18n...@kde.org\n
 Language: ca\n
 MIME-Version: 1.0\n
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.5.0/po/da/sonnet5_qt.po 
new/sonnet-5.6.0/po/da/sonnet5_qt.po
--- old/sonnet-5.5.0/po/da/sonnet5_qt.po2014-12-06 13:48:52.0 
+0100
+++ new/sonnet-5.6.0/po/da/sonnet5_qt.po2015-01-03 13:17:53.0 
+0100
@@ -11,7 +11,7 @@
 Project-Id-Version: kdelibs4\n
 Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 POT-Creation-Date: 2014-03-23 

commit sonnet for openSUSE:Factory

2014-12-21 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2014-12-21 11:59:04

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is sonnet

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2014-11-11 
01:10:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2014-12-21 
11:58:54.0 +0100
@@ -1,0 +2,7 @@
+Sat Dec  6 12:53:51 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 5.5.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.5.0.php
+
+---

Old:

  sonnet-5.4.0.tar.xz

New:

  sonnet-5.5.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.WHCQTs/_old  2014-12-21 11:58:58.0 +0100
+++ /var/tmp/diff_new_pack.WHCQTs/_new  2014-12-21 11:58:58.0 +0100
@@ -18,13 +18,13 @@
 
 %define sonum   5
 Name:   sonnet
-Version:5.4.0
+Version:5.5.0
 Release:0
 BuildRequires:  aspell-devel
 BuildRequires:  cmake = 2.8.12
 # Enchant plugin is currently disabled upstream
 #BuildRequires:  enchant-devel
-BuildRequires:  extra-cmake-modules = 1.4.0
+BuildRequires:  extra-cmake-modules = 1.5.0
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  libqt5-linguist-devel = 5.2.0
@@ -36,7 +36,7 @@
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/frameworks/5.4/%{name}-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/frameworks/5.5/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

++ sonnet-5.4.0.tar.xz - sonnet-5.5.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.4.0/CMakeLists.txt 
new/sonnet-5.5.0/CMakeLists.txt
--- old/sonnet-5.4.0/CMakeLists.txt 2014-11-02 17:02:34.0 +0100
+++ new/sonnet-5.5.0/CMakeLists.txt 2014-12-06 13:48:52.0 +0100
@@ -3,7 +3,7 @@
 
 project(Sonnet)
 
-find_package(ECM 1.4.0 REQUIRED NO_MODULE)
+find_package(ECM 1.5.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake )
 
@@ -22,7 +22,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION 5.4.0) # handled by release scripts
+set(KF5_VERSION 5.5.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX SONNET
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/sonnet_version.h
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.4.0/po/fi/sonnet5_qt.po 
new/sonnet-5.5.0/po/fi/sonnet5_qt.po
--- old/sonnet-5.4.0/po/fi/sonnet5_qt.po2014-11-02 17:02:34.0 
+0100
+++ new/sonnet-5.5.0/po/fi/sonnet5_qt.po2014-12-06 13:48:52.0 
+0100
@@ -29,7 +29,7 @@
 POT-Creation-Date: 2014-03-23 01:50+\n
 PO-Revision-Date: 2014-05-23 12:04+0300\n
 Last-Translator: Lasse Liehu lasse.li...@gmail.com\n
-Language-Team: Finnish lokalisoi...@lists.coss.fi\n
+Language-Team: Finnish kde-i18n-...@kde.org\n
 Language: fi\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.4.0/po/lt/sonnet5_qt.po 
new/sonnet-5.5.0/po/lt/sonnet5_qt.po
--- old/sonnet-5.4.0/po/lt/sonnet5_qt.po2014-11-02 17:02:34.0 
+0100
+++ new/sonnet-5.5.0/po/lt/sonnet5_qt.po2014-12-06 13:48:52.0 
+0100
@@ -12,7 +12,7 @@
 Project-Id-Version: kdelibs4\n
 Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 POT-Creation-Date: 2014-03-23 01:50+\n
-PO-Revision-Date: 2014-03-16 20:46+0200\n
+PO-Revision-Date: 2014-11-11 00:34+0200\n
 Last-Translator: Liudas Ališauskas liu...@aksioma.lt\n
 Language-Team: Lithuanian kde-i18n...@kde.org\n
 Language: lt\n
@@ -25,137 +25,86 @@
 X-Qt-Contexts: true\n
 
 #: core/loader.cpp:149
-#, fuzzy
-#| msgctxt dictionary variant
-#| msgid 40
 msgctxt Sonnet::Loader|dictionary variant
 msgid 40
 msgstr 40
 
 #: core/loader.cpp:150
-#, fuzzy
-#| msgctxt dictionary variant
-#| msgid 60
 msgctxt Sonnet::Loader|dictionary variant
 msgid 60
 msgstr 60
 
 #: core/loader.cpp:151
-#, fuzzy
-#| msgctxt dictionary variant
-#| msgid 80
 msgctxt Sonnet::Loader|dictionary variant
 msgid 80
 msgstr 80
 
 #: core/loader.cpp:152
-#, fuzzy
-#| msgctxt dictionary variant
-#| msgid -ise suffixes
 msgctxt Sonnet::Loader|dictionary variant
 msgid -ise suffixes
 msgstr -ise priesagos
 
 #: core/loader.cpp:153

commit sonnet for openSUSE:Factory

2014-11-10 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2014-11-11 01:10:00

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is sonnet

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2014-10-07 
16:00:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2014-11-11 
01:10:15.0 +0100
@@ -1,0 +2,7 @@
+Sun Nov  2 17:47:40 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 5.4.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.4.0.php
+
+---

Old:

  sonnet-5.3.0.tar.xz

New:

  sonnet-5.4.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.5mVXNw/_old  2014-11-11 01:10:16.0 +0100
+++ /var/tmp/diff_new_pack.5mVXNw/_new  2014-11-11 01:10:16.0 +0100
@@ -18,13 +18,13 @@
 
 %define sonum   5
 Name:   sonnet
-Version:5.3.0
+Version:5.4.0
 Release:0
 BuildRequires:  aspell-devel
 BuildRequires:  cmake = 2.8.12
 # Enchant plugin is currently disabled upstream
 #BuildRequires:  enchant-devel
-BuildRequires:  extra-cmake-modules = 1.3.0
+BuildRequires:  extra-cmake-modules = 1.4.0
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  libqt5-linguist-devel = 5.2.0
@@ -36,7 +36,7 @@
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/frameworks/%{version}/%{name}-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/frameworks/5.4/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

++ sonnet-5.3.0.tar.xz - sonnet-5.4.0.tar.xz ++
 2452 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit sonnet for openSUSE:Factory

2014-10-07 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2014-10-07 15:59:54

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is sonnet

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2014-09-12 
17:05:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2014-10-07 
16:00:33.0 +0200
@@ -1,0 +2,7 @@
+Sat Oct  4 17:59:58 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 5.3.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.3.0.php
+
+---

Old:

  sonnet-5.2.0.tar.xz

New:

  sonnet-5.3.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.PVT3dS/_old  2014-10-07 16:00:34.0 +0200
+++ /var/tmp/diff_new_pack.PVT3dS/_new  2014-10-07 16:00:34.0 +0200
@@ -18,13 +18,13 @@
 
 %define sonum   5
 Name:   sonnet
-Version:5.2.0
+Version:5.3.0
 Release:0
 BuildRequires:  aspell-devel
 BuildRequires:  cmake = 2.8.12
 # Enchant plugin is currently disabled upstream
 #BuildRequires:  enchant-devel
-BuildRequires:  extra-cmake-modules = 1.2.0
+BuildRequires:  extra-cmake-modules = 1.3.0
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  libqt5-linguist-devel = 5.2.0

++ sonnet-5.2.0.tar.xz - sonnet-5.3.0.tar.xz ++
 931529 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit sonnet for openSUSE:Factory

2014-09-12 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2014-09-12 17:03:44

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is sonnet

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2014-08-16 
15:42:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2014-09-12 
17:05:08.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  9 09:49:38 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 5.2.0
+  * For more details please see:
+http://kde.org/announcements/kde-frameworks-5.2.php
+
+---

Old:

  sonnet-5.1.0.tar.xz

New:

  sonnet-5.2.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.l8IUUS/_old  2014-09-12 17:05:10.0 +0200
+++ /var/tmp/diff_new_pack.l8IUUS/_new  2014-09-12 17:05:10.0 +0200
@@ -18,13 +18,13 @@
 
 %define sonum   5
 Name:   sonnet
-Version:5.1.0
+Version:5.2.0
 Release:0
 BuildRequires:  aspell-devel
 BuildRequires:  cmake = 2.8.12
 # Enchant plugin is currently disabled upstream
 #BuildRequires:  enchant-devel
-BuildRequires:  extra-cmake-modules = 1.1.0
+BuildRequires:  extra-cmake-modules = 1.2.0
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  libqt5-linguist-devel = 5.2.0

++ sonnet-5.1.0.tar.xz - sonnet-5.2.0.tar.xz ++
 931307 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit sonnet for openSUSE:Factory

2014-08-16 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2014-08-16 15:42:13

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is sonnet

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2014-07-10 
09:31:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2014-08-16 
15:42:57.0 +0200
@@ -1,0 +2,9 @@
+Sat Aug  2 10:20:21 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 5.1.0
+  * For more details please see:
+http://www.kde.org/announcements/kde-frameworks-5.1.php
+- Harden required Qt5 libs versions
+- Pass the location of lconvert executable
+
+---

Old:

  sonnet-5.0.0.tar.xz

New:

  sonnet-5.1.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.k6NU4u/_old  2014-08-16 15:42:58.0 +0200
+++ /var/tmp/diff_new_pack.k6NU4u/_new  2014-08-16 15:42:58.0 +0200
@@ -18,13 +18,13 @@
 
 %define sonum   5
 Name:   sonnet
-Version:5.0.0
+Version:5.1.0
 Release:0
 BuildRequires:  aspell-devel
 BuildRequires:  cmake = 2.8.12
 # Enchant plugin is currently disabled upstream
 #BuildRequires:  enchant-devel
-BuildRequires:  extra-cmake-modules = 1.0.0
+BuildRequires:  extra-cmake-modules = 1.1.0
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  libqt5-linguist-devel = 5.2.0
@@ -50,6 +50,7 @@
 Group:  System/GUI/KDE
 Obsoletes:  libKF5SonnetCore4
 Recommends: libKF5SonnetCore%sonum-lang = %{version}
+%requires_ge libQt5Core5
 
 %description -n libKF5SonnetCore%sonum
 Sonnet is a plugin-based spell checking library for Qt-based
@@ -59,6 +60,9 @@
 %package -n libKF5SonnetUi%sonum
 Summary:KDE spell checking library
 Group:  System/GUI/KDE
+%requires_ge libQt5Gui5
+%requires_ge libQt5Widgets5
+%requires_ge libKF5SonnetCore5
 
 %description -n libKF5SonnetUi%sonum
 Sonnet is a plugin-based spell checking library for Qt-based
@@ -83,7 +87,7 @@
 %setup -q
 
 %build
-  %cmake_kf5 -d build
+  %cmake_kf5 -d build -- -Dlconvert_executable=%{_kf5_libdir}/qt5/bin/lconvert
   %make_jobs
 
 %install
@@ -119,9 +123,7 @@
 %{_kf5_libdir}/libKF5SonnetCore.so
 %{_kf5_libdir}/libKF5SonnetUi.so
 %{_kf5_libdir}/cmake/KF5Sonnet/
-%{_kf5_includedir}/*.h
-%dir %{_kf5_includedir}/*/
-%{_kf5_includedir}/*/
+%{_kf5_includedir}/
 %{_kf5_mkspecsdir}/qt_Sonnet*.pri
 
 %changelog

++ sonnet-5.0.0.tar.xz - sonnet-5.1.0.tar.xz ++
 890284 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit sonnet for openSUSE:Factory

2014-07-10 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2014-07-10 08:18:11

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is sonnet

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2014-06-10 
14:37:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2014-07-10 
09:31:40.0 +0200
@@ -1,0 +2,10 @@
+Tue Jul  1 21:36:08 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 5.0.0
+  * Final release of KDE Frameworks 5
+  * API improvements and cleanups
+  * Buildsystem fixes
+  * For more details please see:
+http://www.kde.org/announcements/kde-frameworks-5.0.php
+
+---

Old:

  sonnet-4.100.0.tar.xz

New:

  sonnet-5.0.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.9FLyLk/_old  2014-07-10 09:31:41.0 +0200
+++ /var/tmp/diff_new_pack.9FLyLk/_new  2014-07-10 09:31:41.0 +0200
@@ -18,13 +18,13 @@
 
 %define sonum   5
 Name:   sonnet
-Version:4.100.0
+Version:5.0.0
 Release:0
 BuildRequires:  aspell-devel
 BuildRequires:  cmake = 2.8.12
 # Enchant plugin is currently disabled upstream
 #BuildRequires:  enchant-devel
-BuildRequires:  extra-cmake-modules = 0.0.14
+BuildRequires:  extra-cmake-modules = 1.0.0
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  libqt5-linguist-devel = 5.2.0
@@ -36,7 +36,7 @@
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source: 
http://download.kde.org/unstable/frameworks/%{version}/%{name}-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/frameworks/%{version}/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

++ sonnet-4.100.0.tar.xz - sonnet-5.0.0.tar.xz ++
 4867 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit sonnet for openSUSE:Factory

2014-06-10 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2014-06-10 14:36:50

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is sonnet

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2014-05-14 
20:28:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2014-06-10 
14:37:19.0 +0200
@@ -1,0 +2,11 @@
+Sun Jun  1 18:02:39 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 4.100.0
+  * API improvements and cleanups
+  * Buildsystem fixes
+  * For more details please see:
+http://www.kde.org/announcements/announce-frameworks5-beta3.php
+- Added libqt5-linguist-devel BuildRequires
+- Add baselibs.conf
+
+---

Old:

  sonnet-4.99.0.tar.xz

New:

  baselibs.conf
  sonnet-4.100.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.LVA6yk/_old  2014-06-10 14:37:19.0 +0200
+++ /var/tmp/diff_new_pack.LVA6yk/_new  2014-06-10 14:37:19.0 +0200
@@ -18,15 +18,16 @@
 
 %define sonum   5
 Name:   sonnet
-Version:4.99.0
+Version:4.100.0
 Release:0
 BuildRequires:  aspell-devel
 BuildRequires:  cmake = 2.8.12
 # Enchant plugin is currently disabled upstream
 #BuildRequires:  enchant-devel
-BuildRequires:  extra-cmake-modules = 0.0.13
+BuildRequires:  extra-cmake-modules = 0.0.14
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
+BuildRequires:  libqt5-linguist-devel = 5.2.0
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) = 5.2.0
@@ -35,7 +36,8 @@
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source0:sonnet-%{version}.tar.xz
+Source: 
http://download.kde.org/unstable/frameworks/%{version}/%{name}-%{version}.tar.xz
+Source1:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description

++ baselibs.conf ++
libKF5SonnetCore5
libKF5SonnetUi5
sonnet-devel
requires libKF5SonnetCore5-targettype = version
requires libKF5SonnetUi5-targettype = version++ 
sonnet-4.99.0.tar.xz - sonnet-4.100.0.tar.xz ++
 57446 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit sonnet for openSUSE:Factory

2014-05-14 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2014-05-14 20:27:31

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is sonnet

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2014-04-02 
17:22:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2014-05-14 
20:28:21.0 +0200
@@ -1,0 +2,9 @@
+Sun May  4 01:41:29 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 4.99.0
+  * API improvements and cleanups
+  * Buildsystem fixes
+  * For more details please see:
+http://www.kde.org/announcements/announce-frameworks5-beta2.php
+
+---

Old:

  sonnet-4.98.0.tar.xz

New:

  sonnet-4.99.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.Eg0ihr/_old  2014-05-14 20:28:22.0 +0200
+++ /var/tmp/diff_new_pack.Eg0ihr/_new  2014-05-14 20:28:22.0 +0200
@@ -18,13 +18,13 @@
 
 %define sonum   5
 Name:   sonnet
-Version:4.98.0
+Version:4.99.0
 Release:0
 BuildRequires:  aspell-devel
 BuildRequires:  cmake = 2.8.12
 # Enchant plugin is currently disabled upstream
 #BuildRequires:  enchant-devel
-BuildRequires:  extra-cmake-modules = 0.0.12
+BuildRequires:  extra-cmake-modules = 0.0.13
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
@@ -47,6 +47,7 @@
 Summary:KDE spell checking library
 Group:  System/GUI/KDE
 Obsoletes:  libKF5SonnetCore4
+Recommends: libKF5SonnetCore%sonum-lang = %{version}
 
 %description -n libKF5SonnetCore%sonum
 Sonnet is a plugin-based spell checking library for Qt-based
@@ -75,6 +76,7 @@
 applications. It supports several different plugins, including
 HSpell, Enchant, ASpell and HUNSPELL. Development files.
 
+%lang_package -n libKF5SonnetCore%sonum
 %prep
 %setup -q
 
@@ -84,7 +86,9 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}%{_kf5_sharedir}
+
+  %find_lang %{name}5 --with-qt --without-mo
 
 %post -n libKF5SonnetCore%sonum -p /sbin/ldconfig
 
@@ -94,6 +98,8 @@
 
 %postun -n libKF5SonnetUi%sonum -p /sbin/ldconfig
 
+%files -n libKF5SonnetCore%sonum-lang -f %{name}5.lang
+
 %files -n libKF5SonnetCore%sonum
 %defattr(-,root,root)
 %doc COPYING*

++ sonnet-4.98.0.tar.xz - sonnet-4.99.0.tar.xz ++
 954856 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit sonnet for openSUSE:Factory

2014-04-02 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2014-04-02 17:22:34

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is sonnet

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2014-03-10 
12:17:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2014-04-02 
17:22:48.0 +0200
@@ -1,0 +2,9 @@
+Sat Mar 29 19:47:56 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 4.98.0
+  * API improvements and cleanups
+  * Buildsystem fixes
+  * For more details please see:
+http://www.kde.org/announcements/announce-frameworks5-beta1.php
+
+---

Old:

  sonnet-4.97.0.tar.xz

New:

  sonnet-4.98.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.TiSqMR/_old  2014-04-02 17:22:49.0 +0200
+++ /var/tmp/diff_new_pack.TiSqMR/_new  2014-04-02 17:22:49.0 +0200
@@ -18,13 +18,13 @@
 
 %define sonum   5
 Name:   sonnet
-Version:4.97.0
+Version:4.98.0
 Release:0
 BuildRequires:  aspell-devel
 BuildRequires:  cmake = 2.8.12
 # Enchant plugin is currently disabled upstream
 #BuildRequires:  enchant-devel
-BuildRequires:  extra-cmake-modules = 0.0.11
+BuildRequires:  extra-cmake-modules = 0.0.12
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0

++ sonnet-4.97.0.tar.xz - sonnet-4.98.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-4.97.0/CMakeLists.txt 
new/sonnet-4.98.0/CMakeLists.txt
--- old/sonnet-4.97.0/CMakeLists.txt2014-03-01 12:51:54.0 +0100
+++ new/sonnet-4.98.0/CMakeLists.txt2014-03-28 19:17:50.0 +0100
@@ -3,7 +3,7 @@
 
 project(sonnet)
 
-find_package(ECM 0.0.11 REQUIRED NO_MODULE)
+find_package(ECM 0.0.12 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake )
 
@@ -20,7 +20,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 4.97.0)
+set(KF5_VERSION 4.98.0)
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX SONNET
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/sonnet_version.h
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-4.97.0/README.md new/sonnet-4.98.0/README.md
--- old/sonnet-4.97.0/README.md 2014-03-01 12:51:54.0 +0100
+++ new/sonnet-4.98.0/README.md 2014-03-28 19:17:50.0 +0100
@@ -1,5 +1,8 @@
-Sonnet
-==
+# Sonnet
+
+Multi-language spell checker
+
+## Introduction
 
 Sonnet is a plugin-based spell checking library for Qt-based
 applications. It supports several different plugins, including
@@ -11,8 +14,7 @@
 The simplest way to use Sonnet in your application is to use the
 SpellCheckDecorator class on your QTextEdit.
 
-Example

+## Example
 
 #include QTextEdit
 #include spellcheckdecorator.h
@@ -23,9 +25,9 @@
 Sonnet::SpellCheckDecorator *decorator = new 
Sonnet::SpellCheckDecorator(textEdit);
 }
 
-
-Links
--
+## Links
 
 - Home page: https://projects.kde.org/projects/frameworks/sonnet
-
+- Mailing list: https://mail.kde.org/mailman/listinfo/kde-frameworks-devel
+- IRC channel: #kde-devel on Freenode
+- Git repository: 
https://projects.kde.org/projects/frameworks/sonnet/repository
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-4.97.0/docs/index.docbook 
new/sonnet-4.98.0/docs/index.docbook
--- old/sonnet-4.97.0/docs/index.docbook2014-03-01 12:51:54.0 
+0100
+++ new/sonnet-4.98.0/docs/index.docbook2014-03-28 19:17:50.0 
+0100
@@ -1,5 +1,5 @@
 ?xml version=1.0 ?
-!DOCTYPE article PUBLIC -//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN 
dtd/kdex.dtd [
+!DOCTYPE article PUBLIC -//KDE//DTD DocBook XML V4.5-Based Variant V1.1//EN 
dtd/kdedbx45.dtd [
   !ENTITY kappname sonnet;
   !ENTITY % English INCLUDE  !-- change language only here --
   !ENTITY % addindex IGNORE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-4.97.0/src/Messages.sh 
new/sonnet-4.98.0/src/Messages.sh
--- old/sonnet-4.97.0/src/Messages.sh   1970-01-01 01:00:00.0 +0100
+++ new/sonnet-4.98.0/src/Messages.sh   2014-03-28 19:17:50.0 +0100
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+# Invoke the extractrc script on all .ui, .rc, and .kcfg files in the sources.
+# The results are stored in a pseudo .cpp file to be picked up by xgettext.
+lst=`find . -name \*.rc -o -name \*.ui -o -name 

commit sonnet for openSUSE:Factory

2014-03-10 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2014-03-10 12:17:36

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is sonnet

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2014-02-24 
06:53:32.0 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2014-03-10 
12:17:38.0 +0100
@@ -1,0 +2,8 @@
+Tue Mar  4 16:39:34 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 4.97.0:
+  * Buildsystem fixes
+  * For more details please see:
+http://www.kde.org/announcements/announce-frameworks5-alpha2.php
+
+---

Old:

  sonnet-4.96.0.tar.xz

New:

  sonnet-4.97.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.vVSu38/_old  2014-03-10 12:17:39.0 +0100
+++ /var/tmp/diff_new_pack.vVSu38/_new  2014-03-10 12:17:39.0 +0100
@@ -16,15 +16,15 @@
 #
 
 
-%define sonum   4
+%define sonum   5
 Name:   sonnet
-Version:4.96.0
+Version:4.97.0
 Release:0
 BuildRequires:  aspell-devel
 BuildRequires:  cmake = 2.8.12
 # Enchant plugin is currently disabled upstream
 #BuildRequires:  enchant-devel
-BuildRequires:  extra-cmake-modules = 0.0.10
+BuildRequires:  extra-cmake-modules = 0.0.11
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
@@ -46,6 +46,7 @@
 %package -n libKF5SonnetCore%sonum
 Summary:KDE spell checking library
 Group:  System/GUI/KDE
+Obsoletes:  libKF5SonnetCore4
 
 %description -n libKF5SonnetCore%sonum
 Sonnet is a plugin-based spell checking library for Qt-based

++ sonnet-4.96.0.tar.xz - sonnet-4.97.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-4.96.0/CMakeLists.txt 
new/sonnet-4.97.0/CMakeLists.txt
--- old/sonnet-4.96.0/CMakeLists.txt2014-02-05 01:56:21.0 +0100
+++ new/sonnet-4.97.0/CMakeLists.txt2014-03-01 12:51:54.0 +0100
@@ -3,7 +3,7 @@
 
 project(sonnet)
 
-find_package(ECM 0.0.10 REQUIRED NO_MODULE)
+find_package(ECM 0.0.11 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake )
 
@@ -18,12 +18,14 @@
 include(GenerateExportHeader)
 
 include(ECMSetupVersion)
+include(ECMGenerateHeaders)
 
-set(KF5_VERSION 4.96.0)
+set(KF5_VERSION 4.97.0)
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX SONNET
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/sonnet_version.h
-PACKAGE_VERSION_FILE 
${CMAKE_CURRENT_BINARY_DIR}/KF5SonnetConfigVersion.cmake)
+PACKAGE_VERSION_FILE 
${CMAKE_CURRENT_BINARY_DIR}/KF5SonnetConfigVersion.cmake
+SOVERSION 5)
 
 
 # Enable when kdoctools will be usable from the outside (macros are broken ATM)
@@ -38,9 +40,9 @@
 # create a Config.cmake and a ConfigVersion.cmake file and install them
 set(CMAKECONFIG_INSTALL_DIR ${CMAKECONFIG_INSTALL_PREFIX}/KF5Sonnet)
 
-include(CMakePackageConfigHelpers)
+include(ECMPackageConfigHelpers)
 
-configure_package_config_file(${CMAKE_CURRENT_SOURCE_DIR}/KF5SonnetConfig.cmake.in
 ${CMAKE_CURRENT_BINARY_DIR}/KF5SonnetConfig.cmake
+ecm_configure_package_config_file(${CMAKE_CURRENT_SOURCE_DIR}/KF5SonnetConfig.cmake.in
 ${CMAKE_CURRENT_BINARY_DIR}/KF5SonnetConfig.cmake
   INSTALL_DESTINATION  ${CMAKECONFIG_INSTALL_DIR}
   )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-4.96.0/src/CMakeLists.txt 
new/sonnet-4.97.0/src/CMakeLists.txt
--- old/sonnet-4.96.0/src/CMakeLists.txt2014-02-05 01:56:21.0 
+0100
+++ new/sonnet-4.97.0/src/CMakeLists.txt2014-03-01 12:51:54.0 
+0100
@@ -1,39 +1,3 @@
-# Generate local forwarding headers
-
-set(_INCDIR ${CMAKE_CURRENT_BINARY_DIR}/include/sonnet)
-file(MAKE_DIRECTORY ${_INCDIR})
-
-file(GLOB _SONNETCOREHEADERS RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}/core 
core/*.h)
-#message(STATUS _SONNETCOREHEADERS=${_SONNETCOREHEADERS})
-foreach(_SONNETCOREHEADER ${_SONNETCOREHEADERS})
-string(REGEX MATCH .*_p\\.h _ISPRIVATE ${_SONNETCOREHEADER})
-#message(STATUS _ISPRIVATE=${_ISPRIVATE} 
_SONNETCOREHEADER=${_SONNETCOREHEADER})
-if (NOT _ISPRIVATE)
-if (NOT EXISTS ${_INCDIR}/${_SONNETCOREHEADER})
-file(WRITE ${_INCDIR}/${_SONNETCOREHEADER} #include 
\${CMAKE_CURRENT_SOURCE_DIR}/core/${_SONNETCOREHEADER}\\n)
-endif()
-endif()
-endforeach()
-if (NOT EXISTS 

commit sonnet for openSUSE:Factory

2014-02-23 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2014-02-24 06:53:31

Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and  /work/SRC/openSUSE:Factory/.sonnet.new (New)


Package is sonnet

Changes:

New Changes file:

--- /dev/null   2014-02-13 01:09:38.344032506 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2014-02-24 
06:53:32.0 +0100
@@ -0,0 +1,5 @@
+---
+Sat Feb  8 02:20:16 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Init sonnet package
+

New:

  sonnet-4.96.0.tar.xz
  sonnet.changes
  sonnet.spec



Other differences:
--
++ sonnet.spec ++
#
# spec file for package sonnet
#
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An Open Source License is a
# 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/
#


%define sonum   4
Name:   sonnet
Version:4.96.0
Release:0
BuildRequires:  aspell-devel
BuildRequires:  cmake = 2.8.12
# Enchant plugin is currently disabled upstream
#BuildRequires:  enchant-devel
BuildRequires:  extra-cmake-modules = 0.0.10
BuildRequires:  fdupes
BuildRequires:  kf5-filesystem
BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
BuildRequires:  pkgconfig(Qt5Widgets) = 5.2.0
BuildRequires:  pkgconfig(hunspell)
Summary:KDE spell checking library
License:LGPL-2.1+
Group:  System/GUI/KDE
Url:http://www.kde.org
Source0:sonnet-%{version}.tar.xz
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
Sonnet is a plugin-based spell checking library for Qt-based
applications. It supports several different plugins, including
HSpell, Enchant, ASpell and HUNSPELL.

%package -n libKF5SonnetCore%sonum
Summary:KDE spell checking library
Group:  System/GUI/KDE

%description -n libKF5SonnetCore%sonum
Sonnet is a plugin-based spell checking library for Qt-based
applications. It supports several different plugins, including
HSpell, Enchant, ASpell and HUNSPELL.

%package -n libKF5SonnetUi%sonum
Summary:KDE spell checking library
Group:  System/GUI/KDE

%description -n libKF5SonnetUi%sonum
Sonnet is a plugin-based spell checking library for Qt-based
applications. It supports several different plugins, including
HSpell, Enchant, ASpell and HUNSPELL.

%package devel
Summary:KDE spell checking library: Build Environment
Group:  Development/Libraries/KDE
Requires:   extra-cmake-modules
Requires:   libKF5SonnetCore%sonum = %{version}
Requires:   libKF5SonnetUi%sonum = %{version}
Requires:   pkgconfig(Qt5Core) = 5.2.0

%description devel
Sonnet is a plugin-based spell checking library for Qt-based
applications. It supports several different plugins, including
HSpell, Enchant, ASpell and HUNSPELL. Development files.

%prep
%setup -q

%build
  %cmake_kf5 -d build
  %make_jobs

%install
  %kf5_makeinstall -C build
  %fdupes -s %{buildroot}

%post -n libKF5SonnetCore%sonum -p /sbin/ldconfig

%postun -n libKF5SonnetCore%sonum -p /sbin/ldconfig

%post -n libKF5SonnetUi%sonum -p /sbin/ldconfig

%postun -n libKF5SonnetUi%sonum -p /sbin/ldconfig

%files -n libKF5SonnetCore%sonum
%defattr(-,root,root)
%doc COPYING*
%{_kf5_libdir}/libKF5SonnetCore.so.*
%{_kf5_plugindir}/
%{_kf5_datadir}/sonnet/

%files -n libKF5SonnetUi%sonum
%defattr(-,root,root)
%doc COPYING*
%{_kf5_libdir}/libKF5SonnetUi.so.*

%files devel
%defattr(-,root,root)
%{_kf5_libdir}/libKF5SonnetCore.so
%{_kf5_libdir}/libKF5SonnetUi.so
%{_kf5_libdir}/cmake/KF5Sonnet/
%{_kf5_includedir}/*.h
%dir %{_kf5_includedir}/*/
%{_kf5_includedir}/*/
%{_kf5_mkspecsdir}/qt_Sonnet*.pri

%changelog
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org