Hello community,

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

Package is "kdewebkit"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kdewebkit/kdewebkit.changes      2015-02-16 
17:30:56.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.kdewebkit.new/kdewebkit.changes 2015-03-16 
09:28:46.000000000 +0100
@@ -1,0 +2,7 @@
+Sat Mar  7 16:58:38 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:
----
  kdewebkit-5.7.0.tar.xz

New:
----
  kdewebkit-5.8.0.tar.xz

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

Other differences:
------------------
++++++ kdewebkit.spec ++++++
--- /var/tmp/diff_new_pack.PrzlBS/_old  2015-03-16 09:28:47.000000000 +0100
+++ /var/tmp/diff_new_pack.PrzlBS/_new  2015-03-16 09:28:47.000000000 +0100
@@ -17,13 +17,13 @@
 
 
 %define lname   libKF5WebKit5
-%define _tar_path 5.7
+%define _tar_path 5.8
 Name:           kdewebkit
 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:  kbookmarks-devel >=  %{kf5_version}
 BuildRequires:  kcompletion-devel >=  %{kf5_version}

++++++ kdewebkit-5.7.0.tar.xz -> kdewebkit-5.8.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdewebkit-5.7.0/CMakeLists.txt 
new/kdewebkit-5.8.0/CMakeLists.txt
--- old/kdewebkit-5.7.0/CMakeLists.txt  2015-01-23 21:29:37.000000000 +0100
+++ new/kdewebkit-5.8.0/CMakeLists.txt  2015-02-25 15:19:01.000000000 +0100
@@ -2,7 +2,7 @@
 
 project(KDEWebKit)
 
-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})
 
@@ -18,8 +18,8 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-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 KDEWEBKIT
                         VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kdewebkit_version.h"
                         PACKAGE_VERSION_FILE 
"${CMAKE_CURRENT_BINARY_DIR}/KF5WebKitConfigVersion.cmake"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdewebkit-5.7.0/src/kgraphicswebview.h 
new/kdewebkit-5.8.0/src/kgraphicswebview.h
--- old/kdewebkit-5.7.0/src/kgraphicswebview.h  2015-01-23 21:29:37.000000000 
+0100
+++ new/kdewebkit-5.8.0/src/kgraphicswebview.h  2015-02-25 15:19:01.000000000 
+0100
@@ -177,7 +177,7 @@
      * @see QWidget::wheelEvent
      * @internal
      */
-    void wheelEvent(QGraphicsSceneWheelEvent *event);
+    void wheelEvent(QGraphicsSceneWheelEvent *event) Q_DECL_OVERRIDE;
 
     /**
      * @reimp
@@ -187,7 +187,7 @@
      * @see QWidget::mousePressEvent
      * @internal
      */
-    virtual void mousePressEvent(QGraphicsSceneMouseEvent *event);
+    void mousePressEvent(QGraphicsSceneMouseEvent *event) Q_DECL_OVERRIDE;
 
     /**
      * @reimp
@@ -197,7 +197,7 @@
      * @see QWidget::mouseReleaseEvent
      * @internal
      */
-    virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
+    void mouseReleaseEvent(QGraphicsSceneMouseEvent *event) Q_DECL_OVERRIDE;
 
 private:
     friend class KWebViewPrivate<KGraphicsWebView>;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdewebkit-5.7.0/src/kwebpage.h 
new/kdewebkit-5.8.0/src/kwebpage.h
--- old/kdewebkit-5.7.0/src/kwebpage.h  2015-01-23 21:29:37.000000000 +0100
+++ new/kdewebkit-5.8.0/src/kwebpage.h  2015-02-25 15:19:01.000000000 +0100
@@ -319,7 +319,7 @@
      * @see KProtocolManager::userAgentForHost.
      * @see QWebPage::userAgentForUrl.
      */
-    virtual QString userAgentForUrl(const QUrl &url) const;
+    QString userAgentForUrl(const QUrl &url) const Q_DECL_OVERRIDE;
 
     /**
      * @reimp
@@ -334,7 +334,7 @@
      *
      * @see QWebPage::acceptNavigationRequest
      */
-    virtual bool acceptNavigationRequest(QWebFrame *frame, const 
QNetworkRequest &request, NavigationType type);
+    bool acceptNavigationRequest(QWebFrame *frame, const QNetworkRequest 
&request, NavigationType type) Q_DECL_OVERRIDE;
 
     /**
      * Attempts to handle @p reply and returns true on success, false 
otherwise.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdewebkit-5.7.0/src/kwebpluginfactory.h 
new/kdewebkit-5.8.0/src/kwebpluginfactory.h
--- old/kdewebkit-5.7.0/src/kwebpluginfactory.h 2015-01-23 21:29:37.000000000 
+0100
+++ new/kdewebkit-5.8.0/src/kwebpluginfactory.h 2015-02-25 15:19:01.000000000 
+0100
@@ -68,7 +68,7 @@
     virtual QObject *create(const QString &mimeType,
                             const QUrl &url,
                             const QStringList &argumentNames,
-                            const QStringList &argumentValues) const;
+                            const QStringList &argumentValues) const 
Q_DECL_OVERRIDE;
 
     /**
      * @reimp
@@ -78,7 +78,7 @@
      * @see QWebPluginFactory::plugins
      * @internal
      */
-    virtual QList<Plugin> plugins() const;
+    QList<Plugin> plugins() const Q_DECL_OVERRIDE;
 
 protected:
     /**
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdewebkit-5.7.0/src/kwebview.h 
new/kdewebkit-5.8.0/src/kwebview.h
--- old/kdewebkit-5.7.0/src/kwebview.h  2015-01-23 21:29:37.000000000 +0100
+++ new/kdewebkit-5.8.0/src/kwebview.h  2015-02-25 15:19:01.000000000 +0100
@@ -178,7 +178,7 @@
      * @see QWidget::wheelEvent
      * @internal
      */
-    void wheelEvent(QWheelEvent *event);
+    void wheelEvent(QWheelEvent *event) Q_DECL_OVERRIDE;
 
     /**
      * @reimp
@@ -188,7 +188,7 @@
      * @see QWidget::mousePressEvent
      * @internal
      */
-    virtual void mousePressEvent(QMouseEvent *event);
+    void mousePressEvent(QMouseEvent *event) Q_DECL_OVERRIDE;
 
     /**
      * @reimp
@@ -198,7 +198,7 @@
      * @see QWidget::mouseReleaseEvent
      * @internal
      */
-    virtual void mouseReleaseEvent(QMouseEvent *event);
+    void mouseReleaseEvent(QMouseEvent *event) Q_DECL_OVERRIDE;
 
 private:
     friend class KWebViewPrivate<KWebView>;

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

Reply via email to