Hello community, here is the log from the commit of package kparts for openSUSE:Factory checked in at 2015-03-16 09:33:43 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kparts (Old) and /work/SRC/openSUSE:Factory/.kparts.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kparts" Changes: -------- --- /work/SRC/openSUSE:Factory/kparts/kparts.changes 2015-02-16 17:32:02.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.kparts.new/kparts.changes 2015-03-16 09:33:45.000000000 +0100 @@ -1,0 +2,7 @@ +Sat Mar 7 16:58:54 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: ---- kparts-5.7.0.tar.xz New: ---- kparts-5.8.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kparts.spec ++++++ --- /var/tmp/diff_new_pack.pzFg6A/_old 2015-03-16 09:33:46.000000000 +0100 +++ /var/tmp/diff_new_pack.pzFg6A/_new 2015-03-16 09:33:46.000000000 +0100 @@ -17,13 +17,13 @@ %define lname libKF5Parts5 -%define _tar_path 5.7 +%define _tar_path 5.8 Name: kparts 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} ++++++ kparts-5.7.0.tar.xz -> kparts-5.8.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kparts-5.7.0/CMakeLists.txt new/kparts-5.8.0/CMakeLists.txt --- old/kparts-5.7.0/CMakeLists.txt 2015-02-08 16:23:04.000000000 +0100 +++ new/kparts-5.8.0/CMakeLists.txt 2015-03-07 15:48:27.000000000 +0100 @@ -2,7 +2,7 @@ project(KParts) -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}) @@ -17,8 +17,8 @@ include(ECMSetupVersion) -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 KPARTS VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/kparts_version.h" PACKAGE_VERSION_FILE "${CMAKE_CURRENT_BINARY_DIR}/KF5PartsConfigVersion.cmake" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kparts-5.7.0/autotests/parttest.cpp new/kparts-5.8.0/autotests/parttest.cpp --- old/kparts-5.7.0/autotests/parttest.cpp 2015-02-08 16:23:04.000000000 +0100 +++ new/kparts-5.8.0/autotests/parttest.cpp 2015-03-07 15:48:27.000000000 +0100 @@ -42,7 +42,7 @@ return m_openFileCalled; } protected: - /*reimp*/ bool openFile() + bool openFile() Q_DECL_OVERRIDE { m_openFileCalled = true; return true; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kparts-5.7.0/src/browseropenorsavequestion.cpp new/kparts-5.8.0/src/browseropenorsavequestion.cpp --- old/kparts-5.7.0/src/browseropenorsavequestion.cpp 2015-02-08 16:23:04.000000000 +0100 +++ new/kparts-5.8.0/src/browseropenorsavequestion.cpp 2015-03-07 15:48:27.000000000 +0100 @@ -190,7 +190,7 @@ KSharedConfig::Ptr dontAskConfig; public Q_SLOTS: - virtual void reject() + void reject() Q_DECL_OVERRIDE { selectedService = 0; QDialog::reject(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kparts-5.7.0/src/browserrun.h new/kparts-5.8.0/src/browserrun.h --- old/kparts-5.7.0/src/browserrun.h 2015-02-08 16:23:04.000000000 +0100 +++ new/kparts-5.8.0/src/browserrun.h 2015-03-07 15:48:27.000000000 +0100 @@ -157,11 +157,11 @@ /** * Reimplemented from KRun */ - virtual void scanFile(); + void scanFile() Q_DECL_OVERRIDE; /** * Reimplemented from KRun */ - virtual void init(); + void init() Q_DECL_OVERRIDE; /** * Reimplemented from KRun */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kparts-5.7.0/src/mainwindow.h new/kparts-5.8.0/src/mainwindow.h --- old/kparts-5.7.0/src/mainwindow.h 2015-02-08 16:23:04.000000000 +0100 +++ new/kparts-5.8.0/src/mainwindow.h 2015-03-07 15:48:27.000000000 +0100 @@ -55,7 +55,7 @@ virtual ~MainWindow(); public Q_SLOTS: - virtual void configureToolbars(); + void configureToolbars() Q_DECL_OVERRIDE; protected Q_SLOTS: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kparts-5.7.0/src/part.h new/kparts-5.8.0/src/part.h --- old/kparts-5.7.0/src/part.h 2015-02-08 16:23:04.000000000 +0100 +++ new/kparts-5.8.0/src/part.h 2015-03-07 15:48:27.000000000 +0100 @@ -184,7 +184,7 @@ /** * @internal */ - virtual void customEvent(QEvent *event); + void customEvent(QEvent *event) Q_DECL_OVERRIDE; /** * Convenience method which is called when the Part received a PartActivateEvent . diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kparts-5.7.0/src/partmanager.h new/kparts-5.8.0/src/partmanager.h --- old/kparts-5.7.0/src/partmanager.h 2015-02-08 16:23:04.000000000 +0100 +++ new/kparts-5.8.0/src/partmanager.h 2015-03-07 15:48:27.000000000 +0100 @@ -134,7 +134,7 @@ /** * @internal */ - virtual bool eventFilter(QObject *obj, QEvent *ev); + bool eventFilter(QObject *obj, QEvent *ev) Q_DECL_OVERRIDE; /** * Adds a part to the manager. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kparts-5.7.0/src/plugin.h new/kparts-5.8.0/src/plugin.h --- old/kparts-5.7.0/src/plugin.h 2015-02-08 16:23:04.000000000 +0100 +++ new/kparts-5.8.0/src/plugin.h 2015-03-07 15:48:27.000000000 +0100 @@ -73,12 +73,12 @@ /** * Reimplemented for internal reasons */ - virtual QString xmlFile() const; + QString xmlFile() const Q_DECL_OVERRIDE; /** * Reimplemented for internal reasons */ - virtual QString localXMLFile() const; + QString localXMLFile() const Q_DECL_OVERRIDE; /** * Load the plugin libraries from the directories appropriate diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kparts-5.7.0/src/readonlypart.h new/kparts-5.8.0/src/readonlypart.h --- old/kparts-5.7.0/src/readonlypart.h 2015-02-08 16:23:04.000000000 +0100 +++ new/kparts-5.8.0/src/readonlypart.h 2015-03-07 15:48:27.000000000 +0100 @@ -266,7 +266,7 @@ * PartActivateEvent because it's handled by the mainwindow * (which gets the even after the PartActivateEvent events have been sent) */ - virtual void guiActivateEvent(GUIActivateEvent *event); + void guiActivateEvent(GUIActivateEvent *event) Q_DECL_OVERRIDE; /** * @internal diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kparts-5.7.0/src/readwritepart.h new/kparts-5.8.0/src/readwritepart.h --- old/kparts-5.7.0/src/readwritepart.h 2015-02-08 16:23:04.000000000 +0100 +++ new/kparts-5.8.0/src/readwritepart.h 2015-03-07 15:48:27.000000000 +0100 @@ -103,7 +103,7 @@ * * @return false on cancel */ - virtual bool closeUrl(); + bool closeUrl() Q_DECL_OVERRIDE; /** * Call this method instead of the above if you need control if diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kparts-5.7.0/src/statusbarextension.h new/kparts-5.8.0/src/statusbarextension.h --- old/kparts-5.7.0/src/statusbarextension.h 2015-02-08 16:23:04.000000000 +0100 +++ new/kparts-5.8.0/src/statusbarextension.h 2015-03-07 15:48:27.000000000 +0100 @@ -110,7 +110,7 @@ static StatusBarExtension *childObject(QObject *obj); /** @internal */ - virtual bool eventFilter(QObject *watched, QEvent *ev); + bool eventFilter(QObject *watched, QEvent *ev) Q_DECL_OVERRIDE; private: // for future extensions diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kparts-5.7.0/tests/notepad.h new/kparts-5.8.0/tests/notepad.h --- old/kparts-5.7.0/tests/notepad.h 2015-02-08 16:23:04.000000000 +0100 +++ new/kparts-5.8.0/tests/notepad.h 2015-03-07 15:48:27.000000000 +0100 @@ -42,13 +42,13 @@ const QVariantList &args = QVariantList()); virtual ~NotepadPart(); - virtual void setReadWrite(bool rw); + void setReadWrite(bool rw) Q_DECL_OVERRIDE; static KAboutData *createAboutData(); protected: - virtual bool openFile(); - virtual bool saveFile(); + bool openFile() Q_DECL_OVERRIDE; + bool saveFile() Q_DECL_OVERRIDE; protected Q_SLOTS: void slotSearchReplace(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kparts-5.7.0/tests/parts.h new/kparts-5.8.0/tests/parts.h --- old/kparts-5.7.0/tests/parts.h 2015-02-08 16:23:04.000000000 +0100 +++ new/kparts-5.8.0/tests/parts.h 2015-03-07 15:48:27.000000000 +0100 @@ -43,7 +43,7 @@ void slotFooBar(); protected: - virtual bool openFile(); + bool openFile() Q_DECL_OVERRIDE; protected: QTextEdit *m_edit; @@ -62,7 +62,7 @@ // part caption when the part is used in a multi-part environment // (i.e. in a part manager) // There is a default impl for ReadOnlyPart... - virtual void guiActivateEvent(KParts::GUIActivateEvent *); + void guiActivateEvent(KParts::GUIActivateEvent *) Q_DECL_OVERRIDE; KAboutData m_componentData; }; -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
