Hello community,

here is the log from the commit of package kross for openSUSE:Factory checked 
in at 2015-03-16 09:36:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kross (Old)
 and      /work/SRC/openSUSE:Factory/.kross.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kross"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kross/kross.changes      2015-02-16 
17:32:16.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.kross.new/kross.changes 2015-03-16 
09:36:08.000000000 +0100
@@ -1,0 +2,7 @@
+Sat Mar  7 16:59:05 UTC 2015 - [email protected]
+
+- Update to 5.8.0
+  * For more details please see:
+    https://www.kde.org/announcements/kde-frameworks-5.8.0.php
+
+-------------------------------------------------------------------

Old:
----
  kross-5.7.0.tar.xz

New:
----
  kross-5.8.0.tar.xz

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

Other differences:
------------------
++++++ kross.spec ++++++
--- /var/tmp/diff_new_pack.eEhG0t/_old  2015-03-16 09:36:09.000000000 +0100
+++ /var/tmp/diff_new_pack.eEhG0t/_new  2015-03-16 09:36:09.000000000 +0100
@@ -16,13 +16,13 @@
 #
 
 
-%define _tar_path 5.7
+%define _tar_path 5.8
 Name:           kross
 Version:        %{_tar_path}.0
 Release:        0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12
-BuildRequires:  extra-cmake-modules >= 1.7.0
+BuildRequires:  extra-cmake-modules >= 1.8.0
 BuildRequires:  fdupes
 BuildRequires:  kcompletion-devel >= %{kf5_version}
 BuildRequires:  kdoctools-devel >= %{kf5_version}

++++++ kross-5.7.0.tar.xz -> kross-5.8.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kross-5.7.0/CMakeLists.txt 
new/kross-5.8.0/CMakeLists.txt
--- old/kross-5.7.0/CMakeLists.txt      2015-02-08 16:23:53.000000000 +0100
+++ new/kross-5.8.0/CMakeLists.txt      2015-03-07 15:49:23.000000000 +0100
@@ -2,7 +2,7 @@
 
 project(Kross)
 
-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})
 
@@ -16,8 +16,8 @@
 include(KDEFrameworkCompilerSettings)
 include(KDECMakeSettings)
 
-set(KF5_VERSION "5.7.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.7.0") # handled by release scripts
+set(KF5_VERSION "5.8.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.8.0") # handled by release scripts
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KROSS
                         VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kross_version.h"
                         PACKAGE_VERSION_FILE 
"${CMAKE_CURRENT_BINARY_DIR}/KF5KrossConfigVersion.cmake"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kross-5.7.0/autotests/metafunctiontest.cpp 
new/kross-5.8.0/autotests/metafunctiontest.cpp
--- old/kross-5.7.0/autotests/metafunctiontest.cpp      2015-02-08 
16:23:53.000000000 +0100
+++ new/kross-5.8.0/autotests/metafunctiontest.cpp      2015-03-07 
15:49:23.000000000 +0100
@@ -29,7 +29,7 @@
     MyFunction(QObject* sender, const QByteArray& signal)
         : Kross::MetaFunction(sender, signal) {}
 
-    int qt_metacall(QMetaObject::Call _c, int _id, void **_a) {
+    int qt_metacall(QMetaObject::Call _c, int _id, void **_a) Q_DECL_OVERRIDE {
         _id = QObject::qt_metacall(_c, _id, _a);
         if (_id >= 0 && _c == QMetaObject::InvokeMetaMethod) {
             switch (_id) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kross-5.7.0/src/core/metafunction.h 
new/kross-5.8.0/src/core/metafunction.h
--- old/kross-5.7.0/src/core/metafunction.h     2015-02-08 16:23:53.000000000 
+0100
+++ new/kross-5.8.0/src/core/metafunction.h     2015-03-07 15:49:23.000000000 
+0100
@@ -139,7 +139,7 @@
     * \return the dynamic build \a QMetaObject instance
     * for this QObject instance.
     */
-    const QMetaObject *metaObject() const
+    const QMetaObject *metaObject() const Q_DECL_OVERRIDE
     {
         return &staticMetaObject;
     }
@@ -149,7 +149,7 @@
     * name \p _clname and return the casted pointer or NULL
     * if casting failed.
     */
-    void *qt_metacast(const char *_clname)
+    void *qt_metacast(const char *_clname) Q_DECL_OVERRIDE
     {
         if (! _clname) {
             return 0;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kross-5.7.0/src/core/metatype.h 
new/kross-5.8.0/src/core/metatype.h
--- old/kross-5.7.0/src/core/metatype.h 2015-02-08 16:23:53.000000000 +0100
+++ new/kross-5.8.0/src/core/metatype.h 2015-03-07 15:49:23.000000000 +0100
@@ -70,12 +70,12 @@
 #endif
     }
 
-    virtual int typeId()
+    int typeId() Q_DECL_OVERRIDE
     {
         return qMetaTypeId<METATYPE>();
     }
     //virtual QVariant toVariant() { return QVariant(typeId(), m_variant); }
-    virtual void *toVoidStar()
+    void *toVoidStar() Q_DECL_OVERRIDE
     {
         return (void *) &m_variant;
     }
@@ -104,12 +104,12 @@
 #endif
     }
 
-    virtual int typeId()
+    int typeId() Q_DECL_OVERRIDE
     {
         return qVariantFromValue(m_value).type();
     }
     //virtual QVariant toVariant() { return qVariantFromValue(m_value); }
-    virtual void *toVoidStar()
+    void *toVoidStar() Q_DECL_OVERRIDE
     {
         return (void *) &m_value;
     }
@@ -139,11 +139,11 @@
             QMetaType::destroy(m_typeId, m_ptr);
         }
     }
-    virtual int typeId()
+    int typeId() Q_DECL_OVERRIDE
     {
         return m_typeId;
     }
-    virtual void *toVoidStar()
+    void *toVoidStar() Q_DECL_OVERRIDE
     {
         return (void *) &m_ptr; /*return m_ptr;*/
     }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kross-5.7.0/src/modules/form.h 
new/kross-5.8.0/src/modules/form.h
--- old/kross-5.7.0/src/modules/form.h  2015-02-08 16:23:53.000000000 +0100
+++ new/kross-5.8.0/src/modules/form.h  2015-03-07 15:49:23.000000000 +0100
@@ -162,7 +162,7 @@
 public:
     FormProgressDialog(const QString &caption, const QString &labelText);
     virtual ~FormProgressDialog();
-    virtual void done(int r);
+    void done(int r) Q_DECL_OVERRIDE;
 public Q_SLOTS:
     /**
     * Set the value of the progressbar. If -1 the progressbar will be hidden.
@@ -188,7 +188,7 @@
      * the user rejected the dialog (e.g. by pressing "Cancel" or just
      * closing the dialog by pressing the escape-key).
      */
-    int exec();
+    int exec() Q_DECL_OVERRIDE;
     /**
      * Same as the \a exec() method above provided for Python-lovers (python
      * does not like functions named "exec" and PyQt named it "exec_loop", so
@@ -323,7 +323,7 @@
      * the user rejected the dialog (e.g. by pressing "Cancel" or just
      * closing the dialog by pressing the escape-key).
      */
-    int exec()
+    int exec() Q_DECL_OVERRIDE
     {
         return QDialog::exec();
     }
@@ -469,7 +469,7 @@
      * the user rejected the dialog (e.g. by pressing "Cancel" or just
      * closing the dialog by pressing the escape-key).
      */
-    int exec()
+    int exec() Q_DECL_OVERRIDE
     {
         return QDialog::exec();
     }
@@ -492,11 +492,11 @@
     /**
      * Force page switching. This will also emit backClicked()
      */
-    void back();
+    void back() Q_DECL_OVERRIDE;
     /**
      * Force page switching. This will also emit nextClicked()
      */
-    void next();
+    void next() Q_DECL_OVERRIDE;
 
 private Q_SLOTS:
     virtual void slotButtonClicked(QAbstractButton *button);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kross-5.7.0/src/qts/interpreter.h 
new/kross-5.8.0/src/qts/interpreter.h
--- old/kross-5.7.0/src/qts/interpreter.h       2015-02-08 16:23:53.000000000 
+0100
+++ new/kross-5.8.0/src/qts/interpreter.h       2015-03-07 15:49:23.000000000 
+0100
@@ -60,7 +60,7 @@
     * the script and contains details like the scripting code.
     * \return a new \a EcmaScript instance.
     */
-    virtual Kross::Script *createScript(Kross::Action *action);
+    Kross::Script *createScript(Kross::Action *action) Q_DECL_OVERRIDE;
 
 private:
     class Private;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kross-5.7.0/src/qts/plugin.h 
new/kross-5.8.0/src/qts/plugin.h
--- old/kross-5.7.0/src/qts/plugin.h    2015-02-08 16:23:53.000000000 +0100
+++ new/kross-5.8.0/src/qts/plugin.h    2015-03-07 15:49:23.000000000 +0100
@@ -67,7 +67,7 @@
     * the extension which key is "kross".
     * \param engine The QScriptEngine instance.
     */
-    virtual void initialize(const QString &key, QScriptEngine *engine);
+    void initialize(const QString &key, QScriptEngine *engine) Q_DECL_OVERRIDE;
 
     /**
     * Returns the list of keys this plugin supports.
@@ -75,7 +75,7 @@
     * \return a QStringList with the single item "kross" to let
     * QtScript know, that we provide an extension with that key.
     */
-    virtual QStringList keys() const;
+    QStringList keys() const Q_DECL_OVERRIDE;
 
 private:
     /// \internal d-pointer class.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kross-5.7.0/src/qts/script.h 
new/kross-5.8.0/src/qts/script.h
--- old/kross-5.7.0/src/qts/script.h    2015-02-08 16:23:53.000000000 +0100
+++ new/kross-5.8.0/src/qts/script.h    2015-03-07 15:49:23.000000000 +0100
@@ -61,12 +61,12 @@
     /**
     * Executes the script.
     */
-    virtual void execute();
+    void execute() Q_DECL_OVERRIDE;
 
     /**
     * \return a list of function-names.
     */
-    virtual QStringList functionNames();
+    QStringList functionNames() Q_DECL_OVERRIDE;
 
     /**
     * Execute a function.
@@ -75,7 +75,7 @@
     * \param args The optional arguments for the function.
     * \return The return value of the function.
     */
-    virtual QVariant callFunction(const QString &name, const QVariantList 
&args = QVariantList());
+    QVariant callFunction(const QString &name, const QVariantList &args = 
QVariantList()) Q_DECL_OVERRIDE;
 
     /**
      * Evaluate some scripting code.
@@ -83,7 +83,7 @@
      * \param code The scripting code to evaluate.
      * \return The return value of the evaluation.
      */
-    virtual QVariant evaluate(const QByteArray &code);
+    QVariant evaluate(const QByteArray &code) Q_DECL_OVERRIDE;
 
     /**
     * \return the internal used QScriptEngine instance.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kross-5.7.0/src/qts/values_p.h 
new/kross-5.8.0/src/qts/values_p.h
--- old/kross-5.7.0/src/qts/values_p.h  2015-02-08 16:23:53.000000000 +0100
+++ new/kross-5.8.0/src/qts/values_p.h  2015-03-07 15:49:23.000000000 +0100
@@ -57,16 +57,16 @@
     explicit EcmaObject(QScriptEngine *engine, const QScriptValue &object = 
QScriptValue())
         : QScriptClass(engine), Kross::Object(), m_object(object) {}
     virtual ~EcmaObject() {}
-    virtual QString name() const
+    QString name() const Q_DECL_OVERRIDE
     {
         return "KrossObject";
     }
-    virtual QScriptValue prototype() const
+    QScriptValue prototype() const Q_DECL_OVERRIDE
     {
         return m_object;
     }
 
-    virtual QVariant callMethod(const QString &name, const QVariantList &args 
= QVariantList())
+    QVariant callMethod(const QString &name, const QVariantList &args = 
QVariantList()) Q_DECL_OVERRIDE
     {
         QScriptValue function = m_object.property(name);
         if (! function.isFunction()) {
@@ -84,7 +84,7 @@
         return result.toVariant();
     }
 
-    virtual QStringList methodNames()
+    QStringList methodNames() Q_DECL_OVERRIDE
     {
         QStringList methods;
         QScriptValueIterator it(m_object);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kross-5.7.0/src/ui/actioncollectionmodel.h 
new/kross-5.8.0/src/ui/actioncollectionmodel.h
--- old/kross-5.7.0/src/ui/actioncollectionmodel.h      2015-02-08 
16:23:53.000000000 +0100
+++ new/kross-5.8.0/src/ui/actioncollectionmodel.h      2015-03-07 
15:49:23.000000000 +0100
@@ -59,25 +59,25 @@
     explicit ActionCollectionModel(QObject *parent, ActionCollection 
*collection = 0, Mode mode = Mode(Icons | ToolTips));
     virtual ~ActionCollectionModel();
 
-    virtual int columnCount(const QModelIndex &parent = QModelIndex()) const;
-    virtual int rowCount(const QModelIndex &parent = QModelIndex()) const;
-    virtual QModelIndex index(int row, int column, const QModelIndex &parent = 
QModelIndex()) const;
-    virtual QModelIndex parent(const QModelIndex &index) const;
-    virtual Qt::ItemFlags flags(const QModelIndex &index) const;
-    virtual QVariant data(const QModelIndex &index, int role = 
Qt::DisplayRole) const;
-    virtual bool setData(const QModelIndex &index, const QVariant &value, int 
role = Qt::EditRole);
-
-    virtual bool insertRows(int row, int count, const QModelIndex &parent = 
QModelIndex());
-    virtual bool removeRows(int row, int count, const QModelIndex &parent = 
QModelIndex());
-    virtual bool insertColumns(int column, int count, const QModelIndex 
&parent = QModelIndex());
-    virtual bool removeColumns(int column, int count, const QModelIndex 
&parent = QModelIndex());
+    int columnCount(const QModelIndex &parent = QModelIndex()) const 
Q_DECL_OVERRIDE;
+    int rowCount(const QModelIndex &parent = QModelIndex()) const 
Q_DECL_OVERRIDE;
+    QModelIndex index(int row, int column, const QModelIndex &parent = 
QModelIndex()) const Q_DECL_OVERRIDE;
+    QModelIndex parent(const QModelIndex &index) const Q_DECL_OVERRIDE;
+    Qt::ItemFlags flags(const QModelIndex &index) const Q_DECL_OVERRIDE;
+    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const 
Q_DECL_OVERRIDE;
+    bool setData(const QModelIndex &index, const QVariant &value, int role = 
Qt::EditRole) Q_DECL_OVERRIDE;
+
+    bool insertRows(int row, int count, const QModelIndex &parent = 
QModelIndex()) Q_DECL_OVERRIDE;
+    bool removeRows(int row, int count, const QModelIndex &parent = 
QModelIndex()) Q_DECL_OVERRIDE;
+    bool insertColumns(int column, int count, const QModelIndex &parent = 
QModelIndex()) Q_DECL_OVERRIDE;
+    bool removeColumns(int column, int count, const QModelIndex &parent = 
QModelIndex()) Q_DECL_OVERRIDE;
 
     //Qt::DropActions supportedDragActions() const;
-    virtual QStringList mimeTypes() const;
-    virtual QMimeData *mimeData(const QModelIndexList &indexes) const;
-    virtual bool dropMimeData(const QMimeData *data, Qt::DropAction action, 
int row, int column, const QModelIndex &parent);
+    QStringList mimeTypes() const Q_DECL_OVERRIDE;
+    QMimeData *mimeData(const QModelIndexList &indexes) const Q_DECL_OVERRIDE;
+    bool dropMimeData(const QMimeData *data, Qt::DropAction action, int row, 
int column, const QModelIndex &parent) Q_DECL_OVERRIDE;
 
-    virtual Qt::DropActions supportedDropActions() const;
+    Qt::DropActions supportedDropActions() const Q_DECL_OVERRIDE;
 
     QModelIndex indexForCollection(ActionCollection *collection) const;
     QModelIndex indexForAction(Action *action) const;
@@ -134,9 +134,9 @@
 
 private:
     /// Set the \a ActionCollectionModel source model we are proxy for.
-    virtual void setSourceModel(QAbstractItemModel *sourceModel);
+    void setSourceModel(QAbstractItemModel *sourceModel) Q_DECL_OVERRIDE;
     /// Implements a filter for the QModelIndex instances.
-    virtual bool filterAcceptsRow(int source_row, const QModelIndex 
&source_parent) const;
+    bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) 
const Q_DECL_OVERRIDE;
 };
 
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kross-5.7.0/src/ui/actioncollectionview.h 
new/kross-5.8.0/src/ui/actioncollectionview.h
--- old/kross-5.7.0/src/ui/actioncollectionview.h       2015-02-08 
16:23:53.000000000 +0100
+++ new/kross-5.8.0/src/ui/actioncollectionview.h       2015-03-07 
15:49:23.000000000 +0100
@@ -180,7 +180,7 @@
     * Set the model this view should use to \p model . Use an instance of
     * \a ActionCollectionModel or \a ActionCollectionProxyModel as model.
     */
-    virtual void setModel(QAbstractItemModel *model);
+    void setModel(QAbstractItemModel *model) Q_DECL_OVERRIDE;
 
     /**
     * \return true if the collection was modified.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kross-5.7.0/src/ui/scriptingplugin.h 
new/kross-5.8.0/src/ui/scriptingplugin.h
--- old/kross-5.7.0/src/ui/scriptingplugin.h    2015-02-08 16:23:53.000000000 
+0100
+++ new/kross-5.8.0/src/ui/scriptingplugin.h    2015-03-07 15:49:23.000000000 
+0100
@@ -86,7 +86,7 @@
     /**
      * Re-implement in order to load additional kross scripting rc files.
      */
-    virtual void setDOMDocument(const QDomDocument &document, bool merge = 
false);
+    void setDOMDocument(const QDomDocument &document, bool merge = false) 
Q_DECL_OVERRIDE;
 
     /**
      * Add a QObject to the list of children. The object will be published to 
the scripting code.

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to