commit kpty for openSUSE:Factory
Hello community, here is the log from the commit of package kpty for openSUSE:Factory checked in at 2014-04-02 17:22:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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 2014-03-10 12:17:49.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.kpty.new/kpty.changes 2014-04-02 17:22:33.000000000 +0200 @@ -1,0 +2,9 @@ +Sat Mar 29 19:47:49 UTC 2014 - hrvoje.senjan@gmail.com + +- Update to 4.98.0 + * API improvements and cleanups + * Buildsystem fixes + * For more details please see: + http://www.kde.org/announcements/announce-frameworks5-beta1.php + +------------------------------------------------------------------- Old: ---- kpty-4.97.0.tar.xz New: ---- kpty-4.98.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kpty.spec ++++++ --- /var/tmp/diff_new_pack.HxuzPT/_old 2014-04-02 17:22:34.000000000 +0200 +++ /var/tmp/diff_new_pack.HxuzPT/_new 2014-04-02 17:22:34.000000000 +0200 @@ -18,10 +18,10 @@ %define lname libKF5Pty5 Name: kpty -Version: 4.97.0 +Version: 4.98.0 Release: 0 BuildRequires: cmake >= 2.8.12 -BuildRequires: extra-cmake-modules >= 0.0.11 +BuildRequires: extra-cmake-modules >= 0.0.12 BuildRequires: fdupes BuildRequires: kcoreaddons-devel >= %{_kf5_version} BuildRequires: kf5-filesystem ++++++ kpty-4.97.0.tar.xz -> kpty-4.98.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpty-4.97.0/CMakeLists.txt new/kpty-4.98.0/CMakeLists.txt --- old/kpty-4.97.0/CMakeLists.txt 2014-03-01 12:51:31.000000000 +0100 +++ new/kpty-4.98.0/CMakeLists.txt 2014-03-28 19:17:25.000000000 +0100 @@ -2,11 +2,11 @@ project(KPty) -find_package(ECM 0.0.11 REQUIRED NO_MODULE) +find_package(ECM 0.0.12 REQUIRED NO_MODULE) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR}) set(REQUIRED_QT_VERSION 5.2) -set(KF5_VERSION "4.97.0") +set(KF5_VERSION "4.98.0") include(KDEInstallDirs) include(KDEFrameworkCompilerSettings) include(KDECMakeSettings) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpty-4.97.0/autotests/kptyprocesstest.cpp new/kpty-4.98.0/autotests/kptyprocesstest.cpp --- old/kpty-4.97.0/autotests/kptyprocesstest.cpp 2014-03-01 12:51:31.000000000 +0100 +++ new/kpty-4.98.0/autotests/kptyprocesstest.cpp 2014-03-28 19:17:25.000000000 +0100 @@ -75,12 +75,11 @@ p2.start(); // read the second processes greeting from the first process' pty - QVERIFY(p.pty()->waitForReadyRead(1500)); for (int i = 0; i < 5; ++i) { + QVERIFY(p.pty()->waitForReadyRead(500)); if (p.pty()->canReadLine()) { break; } - QThread::msleep(500); } QCOMPARE(p.pty()->readAll(), QByteArray("hello from me\r\n")); @@ -89,12 +88,11 @@ QVERIFY(p2.pty()->waitForBytesWritten(1000)); // read the result back from the first process' pty - QVERIFY(p.pty()->waitForReadyRead(1500)); for (int i = 0; i < 5; ++i) { + QVERIFY(p.pty()->waitForReadyRead(500)); if (p.pty()->canReadLine()) { break; } - QThread::msleep(500); } QCOMPARE(p.pty()->readAll(), QByteArray("hello from process 2\r\n")); @@ -103,12 +101,11 @@ QVERIFY(p.pty()->waitForBytesWritten(1000)); // read the result back from the second process' pty - QVERIFY(p2.pty()->waitForReadyRead(1500)); for (int i = 0; i < 5; ++i) { - if (p.pty()->canReadLine()) { + QVERIFY(p2.pty()->waitForReadyRead(500)); + if (p2.pty()->canReadLine()) { break; } - QThread::msleep(500); } QCOMPARE(p2.pty()->readAll(), QByteArray("hi from process 1\r\n")); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpty-4.97.0/src/Messages.sh new/kpty-4.98.0/src/Messages.sh --- old/kpty-4.97.0/src/Messages.sh 1970-01-01 01:00:00.000000000 +0100 +++ new/kpty-4.98.0/src/Messages.sh 2014-03-28 19:17:25.000000000 +0100 @@ -0,0 +1,18 @@ +#!/bin/sh + +# Invoke the extractrc script on all .ui, .rc, and .kcfg files in the sources. +# The results are stored in a pseudo .cpp file to be picked up by xgettext. +lst=`find . -name \*.rc -o -name \*.ui -o -name \*.kcfg` +if [ -n "$lst" ] ; then + $EXTRACTRC $lst >> rc.cpp +fi + +# If your framework contains tips-of-the-day, call preparetips as well. +if [ -f "data/tips" ] ; then + ( cd data && $PREPARETIPS > ../tips.cpp ) +fi + +# Extract strings from all source files. +# If your framework depends on KI18n, use $XGETTEXT. If it uses Qt translation +# system, use $EXTRACT_TR_STRINGS. +$XGETTEXT `find . -name \*.cpp -o -name \*.h -name \*.qml` -o $podir/kpty5.pot -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de