Hello community,

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

Package is "kidletime"

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

New:
----
  kidletime-5.8.0.tar.xz

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

Other differences:
------------------
++++++ kidletime.spec ++++++
--- /var/tmp/diff_new_pack.kICRrl/_old  2015-03-16 09:30:57.000000000 +0100
+++ /var/tmp/diff_new_pack.kICRrl/_new  2015-03-16 09:30:57.000000000 +0100
@@ -17,12 +17,12 @@
 
 
 %define lname   libKF5IdleTime5
-%define _tar_path 5.7
+%define _tar_path 5.8
 Name:           kidletime
 Version:        %{_tar_path}.0
 Release:        0
 BuildRequires:  cmake >= 2.8.12
-BuildRequires:  extra-cmake-modules >= 1.7.0
+BuildRequires:  extra-cmake-modules >= 1.8.0
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  pkgconfig(Qt5Core) >= 5.2.0

++++++ kidletime-5.7.0.tar.xz -> kidletime-5.8.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kidletime-5.7.0/CMakeLists.txt 
new/kidletime-5.8.0/CMakeLists.txt
--- old/kidletime-5.7.0/CMakeLists.txt  2015-01-23 21:40:20.000000000 +0100
+++ new/kidletime-5.8.0/CMakeLists.txt  2015-02-25 15:20:06.000000000 +0100
@@ -3,7 +3,7 @@
 project(KIdleTime)
 
 # ECM setup
-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})
 
 include(FeatureSummary)
@@ -13,7 +13,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-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 KIDLETIME
                         VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kidletime_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kidletime-5.7.0/src/widgetbasedpoller.h 
new/kidletime-5.8.0/src/widgetbasedpoller.h
--- old/kidletime-5.7.0/src/widgetbasedpoller.h 2015-01-23 21:40:20.000000000 
+0100
+++ new/kidletime-5.8.0/src/widgetbasedpoller.h 2015-02-25 15:20:06.000000000 
+0100
@@ -32,20 +32,20 @@
     WidgetBasedPoller(QObject *parent = 0);
     virtual ~WidgetBasedPoller();
 
-    bool isAvailable();
-    bool setUpPoller();
-    void unloadPoller();
+    bool isAvailable() Q_DECL_OVERRIDE;
+    bool setUpPoller() Q_DECL_OVERRIDE;
+    void unloadPoller() Q_DECL_OVERRIDE;
 
 protected:
-    bool eventFilter(QObject *object, QEvent *event);
+    bool eventFilter(QObject *object, QEvent *event) Q_DECL_OVERRIDE;
 
 public Q_SLOTS:
-    void addTimeout(int nextTimeout);
-    void removeTimeout(int nextTimeout);
-    QList<int> timeouts() const;
-    int forcePollRequest();
-    virtual void catchIdleEvent();
-    virtual void stopCatchingIdleEvents();
+    void addTimeout(int nextTimeout) Q_DECL_OVERRIDE;
+    void removeTimeout(int nextTimeout) Q_DECL_OVERRIDE;
+    QList<int> timeouts() const Q_DECL_OVERRIDE;
+    int forcePollRequest() Q_DECL_OVERRIDE;
+    void catchIdleEvent() Q_DECL_OVERRIDE;
+    void stopCatchingIdleEvents() Q_DECL_OVERRIDE;
 
 private Q_SLOTS:
     int poll();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kidletime-5.7.0/src/xscreensaverbasedpoller.h 
new/kidletime-5.8.0/src/xscreensaverbasedpoller.h
--- old/kidletime-5.7.0/src/xscreensaverbasedpoller.h   2015-01-23 
21:40:20.000000000 +0100
+++ new/kidletime-5.8.0/src/xscreensaverbasedpoller.h   2015-02-25 
15:20:06.000000000 +0100
@@ -32,14 +32,14 @@
     virtual ~XScreensaverBasedPoller();
 
 public Q_SLOTS:
-    void simulateUserActivity();
+    void simulateUserActivity() Q_DECL_OVERRIDE;
 
 private:
-    bool additionalSetUp();
+    bool additionalSetUp() Q_DECL_OVERRIDE;
 
 private Q_SLOTS:
     void screensaverActivated(bool activated);
-    int getIdleTime();
+    int getIdleTime() Q_DECL_OVERRIDE;
 
 private:
     OrgFreedesktopScreenSaverInterface *m_screenSaverIface;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kidletime-5.7.0/src/xsyncbasedpoller.cpp 
new/kidletime-5.8.0/src/xsyncbasedpoller.cpp
--- old/kidletime-5.7.0/src/xsyncbasedpoller.cpp        2015-01-23 
21:40:20.000000000 +0100
+++ new/kidletime-5.8.0/src/xsyncbasedpoller.cpp        2015-02-25 
15:20:06.000000000 +0100
@@ -34,7 +34,7 @@
     {
         delete q;
     }
-    bool nativeEventFilter(const QByteArray &eventType, void *message, long 
*result)
+    bool nativeEventFilter(const QByteArray &eventType, void *message, long 
*result) Q_DECL_OVERRIDE
     {
         Q_UNUSED(result);
         if (isActive && eventType == "xcb_generic_event_t") {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kidletime-5.7.0/src/xsyncbasedpoller.h 
new/kidletime-5.8.0/src/xsyncbasedpoller.h
--- old/kidletime-5.7.0/src/xsyncbasedpoller.h  2015-01-23 21:40:20.000000000 
+0100
+++ new/kidletime-5.8.0/src/xsyncbasedpoller.h  2015-02-25 15:20:06.000000000 
+0100
@@ -38,22 +38,22 @@
 
     virtual ~XSyncBasedPoller();
 
-    bool isAvailable();
-    bool setUpPoller();
-    void unloadPoller();
+    bool isAvailable() Q_DECL_OVERRIDE;
+    bool setUpPoller() Q_DECL_OVERRIDE;
+    void unloadPoller() Q_DECL_OVERRIDE;
 
     bool xcbEvent(xcb_generic_event_t *event);
 protected:
     XSyncBasedPoller(QObject *parent = 0);
 
 public Q_SLOTS:
-    void addTimeout(int nextTimeout);
-    void removeTimeout(int nextTimeout);
-    QList<int> timeouts() const;
-    int forcePollRequest();
-    void catchIdleEvent();
-    void stopCatchingIdleEvents();
-    void simulateUserActivity();
+    void addTimeout(int nextTimeout) Q_DECL_OVERRIDE;
+    void removeTimeout(int nextTimeout) Q_DECL_OVERRIDE;
+    QList<int> timeouts() const Q_DECL_OVERRIDE;
+    int forcePollRequest() Q_DECL_OVERRIDE;
+    void catchIdleEvent() Q_DECL_OVERRIDE;
+    void stopCatchingIdleEvents() Q_DECL_OVERRIDE;
+    void simulateUserActivity() Q_DECL_OVERRIDE;
 
 private Q_SLOTS:
     int poll();

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

Reply via email to