commit sonnet for openSUSE:Factory
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.changes 2014-03-10 12:17:38.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes 2014-04-02 17:22:48.000000000 +0200 @@ -1,0 +2,9 @@ +Sat Mar 29 19:47:56 UTC 2014 - hrvoje.senjan@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.000000000 +0200 +++ /var/tmp/diff_new_pack.TiSqMR/_new 2014-04-02 17:22:49.000000000 +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.txt 2014-03-01 12:51:54.000000000 +0100 +++ new/sonnet-4.98.0/CMakeLists.txt 2014-03-28 19:17:50.000000000 +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.000000000 +0100 +++ new/sonnet-4.98.0/README.md 2014-03-28 19:17:50.000000000 +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.docbook 2014-03-01 12:51:54.000000000 +0100 +++ new/sonnet-4.98.0/docs/index.docbook 2014-03-28 19:17:50.000000000 +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.000000000 +0100 +++ new/sonnet-4.98.0/src/Messages.sh 2014-03-28 19:17:50.000000000 +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 \*.kcfg` +if [ -n "$lst" ] ; then + $EXTRACTRC $lst >> rc.cpp +fi + +# If your framework contains tips-of-the-day, call preparetips as well. +if [ -f "data/tips" ] ; then + ( cd data && $PREPARETIPS > ../tips.cpp ) +fi + +# Extract strings from all source files. +# If your framework depends on KI18n, use $XGETTEXT. If it uses Qt translation +# system, use $EXTRACT_TR_STRINGS. +$EXTRACT_TR_STRINGS `find . -name \*.cpp -o -name \*.h -name \*.qml` -o $podir/sonnet5.pot -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de