Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kpty for openSUSE:Factory checked in at 2021-08-16 10:08:06 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kpty (Old) and /work/SRC/openSUSE:Factory/.kpty.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kpty" Mon Aug 16 10:08:06 2021 rev:94 rq:912157 version:5.85.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kpty/kpty.changes 2021-07-16 00:01:44.288922684 +0200 +++ /work/SRC/openSUSE:Factory/.kpty.new.1899/kpty.changes 2021-08-16 10:12:15.979050610 +0200 @@ -1,0 +2,9 @@ +Fri Aug 6 12:13:07 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- Update to 5.85.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.85.0 +- No code change since 5.84.0 + +------------------------------------------------------------------- Old: ---- kpty-5.84.0.tar.xz kpty-5.84.0.tar.xz.sig New: ---- kpty-5.85.0.tar.xz kpty-5.85.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kpty.spec ++++++ --- /var/tmp/diff_new_pack.xKe2oy/_old 2021-08-16 10:12:16.427050084 +0200 +++ /var/tmp/diff_new_pack.xKe2oy/_new 2021-08-16 10:12:16.431050080 +0200 @@ -17,14 +17,14 @@ %define lname libKF5Pty5 -%define _tar_path 5.84 +%define _tar_path 5.85 # Full KF5 version (e.g. 5.33.0) %{!?_kf5_version: %global _kf5_version %{version}} # Last major and minor KF5 version (e.g. 5.33) %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | awk -F. '{print $1"."$2}')} %bcond_without lang Name: kpty -Version: 5.84.0 +Version: 5.85.0 Release: 0 Summary: Primitives to interface with pseudo terminal devices License: LGPL-2.1-or-later ++++++ kpty-5.84.0.tar.xz -> kpty-5.85.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpty-5.84.0/CMakeLists.txt new/kpty-5.85.0/CMakeLists.txt --- old/kpty-5.84.0/CMakeLists.txt 2021-07-03 14:16:58.000000000 +0200 +++ new/kpty-5.85.0/CMakeLists.txt 2021-08-06 11:08:57.000000000 +0200 @@ -1,11 +1,11 @@ cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "5.84.0") # handled by release scripts -set(KF_DEP_VERSION "5.84.0") # handled by release scripts +set(KF_VERSION "5.85.0") # handled by release scripts +set(KF_DEP_VERSION "5.85.0") # handled by release scripts project(KPty VERSION ${KF_VERSION}) include(FeatureSummary) -find_package(ECM 5.84.0 NO_MODULE) +find_package(ECM 5.85.0 NO_MODULE) set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://commits.kde.org/extra-cmake-modules") feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpty-5.84.0/po/zh_CN/kpty5.po new/kpty-5.85.0/po/zh_CN/kpty5.po --- old/kpty-5.84.0/po/zh_CN/kpty5.po 2021-07-03 14:16:58.000000000 +0200 +++ new/kpty-5.85.0/po/zh_CN/kpty5.po 2021-08-06 11:08:57.000000000 +0200 @@ -15,7 +15,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-03-06 02:33+0100\n" -"PO-Revision-Date: 2021-06-20 07:36\n" +"PO-Revision-Date: 2021-07-26 13:47\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -32,12 +32,12 @@ #: kptydevice.cpp:278 #, kde-format msgid "Error reading from PTY" -msgstr "??? PTY ???????????????" +msgstr "?????? PTY ??????" #: kptydevice.cpp:311 #, kde-format msgid "Error writing to PTY" -msgstr "??? PTY ????????????" +msgstr "?????? PTY ??????" #: kptydevice.cpp:404 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpty-5.84.0/src/kptydevice.cpp new/kpty-5.85.0/src/kptydevice.cpp --- old/kpty-5.84.0/src/kptydevice.cpp 2021-07-03 14:16:58.000000000 +0200 +++ new/kpty-5.85.0/src/kptydevice.cpp 2021-08-06 11:08:57.000000000 +0200 @@ -30,7 +30,7 @@ #endif #if defined(Q_OS_FREEBSD) || defined(Q_OS_MAC) -// "the other end's output queue size" - kinda braindead, huh? +// "the other end's output queue size" -- that is is our end's input #define PTY_BYTES_AVAILABLE TIOCOUTQ #elif defined(TIOCINQ) // "our end's input queue size" @@ -353,7 +353,7 @@ bool KPtyDevicePrivate::doWait(int msecs, bool reading) { Q_Q(KPtyDevice); -#ifndef __linux__ +#ifndef Q_OS_LINUX struct timeval etv; #endif struct timeval tv, *tvp; @@ -363,8 +363,8 @@ } else { tv.tv_sec = msecs / 1000; tv.tv_usec = (msecs % 1000) * 1000; -#ifndef __linux__ - gettimeofday(&etv, 0); +#ifndef Q_OS_LINUX + gettimeofday(&etv, nullptr); timeradd(&tv, &etv, &etv); #endif tvp = &tv; @@ -384,9 +384,9 @@ FD_SET(q->masterFd(), &wfds); } -#ifndef __linux__ +#ifndef Q_OS_LINUX if (tvp) { - gettimeofday(&tv, 0); + gettimeofday(&tv, nullptr); timersub(&etv, &tv, &tv); if (tv.tv_sec < 0) { tv.tv_sec = tv.tv_usec = 0;
