Hello community,

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

Package is "kpty"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kpty/kpty.changes        2015-02-16 
17:32:05.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.kpty.new/kpty.changes   2015-03-16 
09:34:50.000000000 +0100
@@ -1,0 +2,7 @@
+Sat Mar  7 16:58:59 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:
----
  kpty-5.7.0.tar.xz

New:
----
  kpty-5.8.0.tar.xz

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

Other differences:
------------------
++++++ kpty.spec ++++++
--- /var/tmp/diff_new_pack.y1pIje/_old  2015-03-16 09:34:50.000000000 +0100
+++ /var/tmp/diff_new_pack.y1pIje/_new  2015-03-16 09:34:50.000000000 +0100
@@ -17,13 +17,13 @@
 
 
 %define lname   libKF5Pty5
-%define _tar_path 5.7
+%define _tar_path 5.8
 Name:           kpty
 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:  kcoreaddons-devel >= %{kf5_version}
 BuildRequires:  kf5-filesystem

++++++ kpty-5.7.0.tar.xz -> kpty-5.8.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpty-5.7.0/CMakeLists.txt 
new/kpty-5.8.0/CMakeLists.txt
--- old/kpty-5.7.0/CMakeLists.txt       2015-02-08 16:23:32.000000000 +0100
+++ new/kpty-5.8.0/CMakeLists.txt       2015-03-07 15:49:01.000000000 +0100
@@ -2,12 +2,12 @@
 
 project(KPty)
 
-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})
 
 set(REQUIRED_QT_VERSION 5.2)
-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
 include(KDEInstallDirs)
 include(KDEFrameworkCompilerSettings)
 include(KDECMakeSettings)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpty-5.7.0/src/kptydevice.h 
new/kpty-5.8.0/src/kptydevice.h
--- old/kpty-5.7.0/src/kptydevice.h     2015-02-08 16:23:32.000000000 +0100
+++ new/kpty-5.8.0/src/kptydevice.h     2015-03-07 15:49:01.000000000 +0100
@@ -60,7 +60,7 @@
      *
      * @return true if a pty pair was successfully opened
      */
-    virtual bool open(OpenMode mode = ReadWrite | Unbuffered);
+    bool open(OpenMode mode = ReadWrite | Unbuffered) Q_DECL_OVERRIDE;
 
     /**
      * Open using an existing pty master. The ownership of the fd
@@ -80,7 +80,7 @@
     /**
      * Close the pty master/slave pair.
      */
-    virtual void close();
+    void close() Q_DECL_OVERRIDE;
 
     /**
      * Sets whether the KPtyDevice monitors the pty for incoming data.
@@ -109,30 +109,30 @@
     /**
      * @return always true
      */
-    virtual bool isSequential() const;
+    bool isSequential() const Q_DECL_OVERRIDE;
 
     /**
      * @reimp
      */
-    bool canReadLine() const;
+    bool canReadLine() const Q_DECL_OVERRIDE;
 
     /**
      * @reimp
      */
-    bool atEnd() const;
+    bool atEnd() const Q_DECL_OVERRIDE;
 
     /**
      * @reimp
      */
-    qint64 bytesAvailable() const;
+    qint64 bytesAvailable() const Q_DECL_OVERRIDE;
 
     /**
      * @reimp
      */
-    qint64 bytesToWrite() const;
+    qint64 bytesToWrite() const Q_DECL_OVERRIDE;
 
-    bool waitForBytesWritten(int msecs = -1);
-    bool waitForReadyRead(int msecs = -1);
+    bool waitForBytesWritten(int msecs = -1) Q_DECL_OVERRIDE;
+    bool waitForReadyRead(int msecs = -1) Q_DECL_OVERRIDE;
 
 Q_SIGNALS:
     /**
@@ -143,9 +143,9 @@
     void readEof();
 
 protected:
-    virtual qint64 readData(char *data, qint64 maxSize);
-    virtual qint64 readLineData(char *data, qint64 maxSize);
-    virtual qint64 writeData(const char *data, qint64 maxSize);
+    qint64 readData(char *data, qint64 maxSize) Q_DECL_OVERRIDE;
+    qint64 readLineData(char *data, qint64 maxSize) Q_DECL_OVERRIDE;
+    qint64 writeData(const char *data, qint64 maxSize) Q_DECL_OVERRIDE;
 
 private:
     Q_PRIVATE_SLOT(d_func(), bool _k_canRead())
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpty-5.7.0/src/kptyprocess.h 
new/kpty-5.8.0/src/kptyprocess.h
--- old/kpty-5.7.0/src/kptyprocess.h    2015-02-08 16:23:32.000000000 +0100
+++ new/kpty-5.8.0/src/kptyprocess.h    2015-03-07 15:49:01.000000000 +0100
@@ -128,7 +128,7 @@
     /**
      * @reimp
      */
-    virtual void setupChildProcess() Q_DECL_OVERRIDE;
+    void setupChildProcess() Q_DECL_OVERRIDE;
 
 private:
     Q_PRIVATE_SLOT(d_func(), void _k_onStateChanged(QProcess::ProcessState))

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

Reply via email to