Hello community, here is the log from the commit of package kpty for openSUSE:Factory checked in at 2016-07-15 12:38:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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 2016-07-03 12:24:40.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.kpty.new/kpty.changes 2016-07-15 12:39:02.000000000 +0200 @@ -1,0 +2,7 @@ +Wed Jul 6 15:05:52 UTC 2016 - [email protected] + +- Update to 5.24.0 + * For more details please see: + https://www.kde.org/announcements/kde-frameworks-5.24.0.php + +------------------------------------------------------------------- Old: ---- kpty-5.23.0.tar.xz New: ---- kpty-5.24.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kpty.spec ++++++ --- /var/tmp/diff_new_pack.JGtZmq/_old 2016-07-15 12:39:03.000000000 +0200 +++ /var/tmp/diff_new_pack.JGtZmq/_new 2016-07-15 12:39:03.000000000 +0200 @@ -18,9 +18,9 @@ %bcond_without lang %define lname libKF5Pty5 -%define _tar_path 5.23 +%define _tar_path 5.24 Name: kpty -Version: 5.23.0 +Version: 5.24.0 Release: 0 %define kf5_version %{version} BuildRequires: cmake >= 2.8.12 ++++++ kpty-5.23.0.tar.xz -> kpty-5.24.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpty-5.23.0/CMakeLists.txt new/kpty-5.24.0/CMakeLists.txt --- old/kpty-5.23.0/CMakeLists.txt 2016-06-06 13:44:50.000000000 +0200 +++ new/kpty-5.24.0/CMakeLists.txt 2016-07-03 11:22:19.000000000 +0200 @@ -3,15 +3,15 @@ project(KPty) include(FeatureSummary) -find_package(ECM 5.23.0 NO_MODULE) +find_package(ECM 5.24.0 NO_MODULE) set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://projects.kde.org/projects/kdesupport/extra-cmake-modules") feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/cmake) set(REQUIRED_QT_VERSION 5.4.0) -set(KF5_VERSION "5.23.0") # handled by release scripts -set(KF5_DEP_VERSION "5.23.0") # handled by release scripts +set(KF5_VERSION "5.24.0") # handled by release scripts +set(KF5_DEP_VERSION "5.24.0") # handled by release scripts include(KDEInstallDirs) include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpty-5.23.0/autotests/kptyprocesstest.cpp new/kpty-5.24.0/autotests/kptyprocesstest.cpp --- old/kpty-5.23.0/autotests/kptyprocesstest.cpp 2016-06-06 13:44:50.000000000 +0200 +++ new/kpty-5.24.0/autotests/kptyprocesstest.cpp 2016-07-03 11:22:19.000000000 +0200 @@ -25,6 +25,7 @@ #include <QTest> #include <QSignalSpy> #include <QThread> +#include <QDebug> void KPtyProcessTest::test_suspend_pty() { @@ -125,8 +126,11 @@ p.start(); p.pty()->write("test\n"); p.pty()->waitForBytesWritten(1000); - p.waitForFinished(1000); - p.pty()->waitForReadyRead(1000); + QVERIFY(p.waitForFinished(5000)); + while (p.pty()->bytesAvailable() < 18) { + qDebug() << p.pty()->bytesAvailable() << "bytes available, waiting"; + QVERIFY(p.pty()->waitForReadyRead(5000)); + } QString output = p.pty()->readAll(); QCOMPARE(output, QLatin1String("1: test\r\n2: test\r\n")); } @@ -198,6 +202,7 @@ qRegisterMetaType<QProcess::ExitStatus>(); QSignalSpy finishedSpy(&sp, SIGNAL(finished(int,QProcess::ExitStatus))); QVERIFY(finishedSpy.wait(2000)); + log.replace("<<", "<"); // It's OK if bytesWritten is emitted multiple times... QCOMPARE(QLatin1String(log), QLatin1String(want)); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpty-5.23.0/po/it/kpty5.po new/kpty-5.24.0/po/it/kpty5.po --- old/kpty-5.23.0/po/it/kpty5.po 2016-06-06 13:44:50.000000000 +0200 +++ new/kpty-5.24.0/po/it/kpty5.po 2016-07-03 11:22:19.000000000 +0200 @@ -23,8 +23,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 1.5\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" #: kptydevice.cpp:324 msgid "Error reading from PTY"
