Hello community, here is the log from the commit of package ktnef for openSUSE:Factory checked in at 2019-10-14 13:30:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ktnef (Old) and /work/SRC/openSUSE:Factory/.ktnef.new.2352 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ktnef" Mon Oct 14 13:30:02 2019 rev:49 rq:737821 version:19.08.2 Changes: -------- --- /work/SRC/openSUSE:Factory/ktnef/ktnef.changes 2019-09-09 12:27:00.169819638 +0200 +++ /work/SRC/openSUSE:Factory/.ktnef.new.2352/ktnef.changes 2019-10-14 13:30:04.411184611 +0200 @@ -1,0 +2,10 @@ +Fri Oct 11 07:43:11 UTC 2019 - Luca Beltrame <[email protected]> + +- Update to 19.08.2 + * New bugfix release + * For more details please see: + * https://www.kde.org/announcements/announce-applications-19.08.2.php +- Changes since 19.08.1: + * Port to QString::asprintf to fix compilation with Qt 5.14 + +------------------------------------------------------------------- Old: ---- ktnef-19.08.1.tar.xz ktnef-19.08.1.tar.xz.sig New: ---- ktnef-19.08.2.tar.xz ktnef-19.08.2.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ktnef.spec ++++++ --- /var/tmp/diff_new_pack.shsEkW/_old 2019-10-14 13:30:05.547181650 +0200 +++ /var/tmp/diff_new_pack.shsEkW/_new 2019-10-14 13:30:05.567181598 +0200 @@ -22,7 +22,7 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: ktnef -Version: 19.08.1 +Version: 19.08.2 Release: 0 Summary: KDE PIM Libraries: TNEF support License: LGPL-2.1-or-later ++++++ ktnef-19.08.1.tar.xz -> ktnef-19.08.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ktnef-19.08.1/CMakeLists.txt new/ktnef-19.08.2/CMakeLists.txt --- old/ktnef-19.08.1/CMakeLists.txt 2019-09-03 03:47:21.000000000 +0200 +++ new/ktnef-19.08.2/CMakeLists.txt 2019-10-08 02:23:30.000000000 +0200 @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.5) -set(PIM_VERSION "5.12.1") +set(PIM_VERSION "5.12.2") project(KTnef VERSION ${PIM_VERSION}) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ktnef-19.08.1/po/zh_CN/libktnef5.po new/ktnef-19.08.2/po/zh_CN/libktnef5.po --- old/ktnef-19.08.1/po/zh_CN/libktnef5.po 2019-09-03 03:47:21.000000000 +0200 +++ new/ktnef-19.08.2/po/zh_CN/libktnef5.po 2019-10-08 02:23:30.000000000 +0200 @@ -7,7 +7,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2019-08-30 07:49+0200\n" -"PO-Revision-Date: 2019-08-16 17:08\n" +"PO-Revision-Date: 2019-09-05 09:50\n" "Last-Translator: Guo Yunhe (guoyunhe)\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ktnef-19.08.1/src/ktnefparser.cpp new/ktnef-19.08.2/src/ktnefparser.cpp --- old/ktnef-19.08.1/src/ktnefparser.cpp 2019-08-26 06:58:21.000000000 +0200 +++ new/ktnef-19.08.2/src/ktnefparser.cpp 2019-09-09 13:32:23.000000000 +0200 @@ -928,7 +928,7 @@ QString mapiname = QLatin1String(""); if (mapi.tag >= 0x8000 && mapi.tag <= 0xFFFE) { if (mapi.name.type == 0) { - mapiname = QString().sprintf(" [name = 0x%04x]", mapi.name.value.toUInt()); + mapiname = QString::asprintf(" [name = 0x%04x]", mapi.name.value.toUInt()); } else { mapiname = QStringLiteral(" [name = %1]").arg(mapi.name.value.toString()); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ktnef-19.08.1/src/ktnefproperty.cpp new/ktnef-19.08.2/src/ktnefproperty.cpp --- old/ktnef-19.08.1/src/ktnefproperty.cpp 2019-08-26 06:58:21.000000000 +0200 +++ new/ktnef-19.08.2/src/ktnefproperty.cpp 2019-09-09 13:32:23.000000000 +0200 @@ -108,7 +108,7 @@ int i; int txtCount = beautify ? qMin(arr.size(), 32) : arr.size(); for (i = 0; i < txtCount; ++i) { - s.append(QString().sprintf("%02X", (uchar)arr[ i ])); + s.append(QString::asprintf("%02X", (uchar)arr[ i ])); if (beautify) { s.append(QLatin1String(" ")); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ktnef-19.08.1/src/ktnefpropertyset.cpp new/ktnef-19.08.2/src/ktnefpropertyset.cpp --- old/ktnef-19.08.1/src/ktnefpropertyset.cpp 2019-08-26 06:58:21.000000000 +0200 +++ new/ktnef-19.08.2/src/ktnefpropertyset.cpp 2019-09-09 13:32:23.000000000 +0200 @@ -94,7 +94,7 @@ if ((*it)->name().type() == QVariant::String) { s = (*it)->name().toString(); } else { - s = QString().sprintf("0X%04X", (*it)->name().toUInt()); + s = QString::asprintf("0X%04X", (*it)->name().toUInt()); } if (s.toUpper() == name.toUpper()) { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ktnef-19.08.1/src/mapi.cpp new/ktnef-19.08.2/src/mapi.cpp --- old/ktnef-19.08.1/src/mapi.cpp 2019-08-26 06:58:21.000000000 +0200 +++ new/ktnef-19.08.2/src/mapi.cpp 2019-09-09 13:32:23.000000000 +0200 @@ -214,9 +214,9 @@ } auto it = MAPI_TagMap()->constFind(key); if (it == MAPI_TagMap()->constEnd()) { - return QString().sprintf("0x%04X", key); + return QString::asprintf("0x%04X", key); } else { - return QString().sprintf("0x%04X ________: ", key) + *it; + return QString::asprintf("0x%04X ________: ", key) + *it; } } @@ -231,11 +231,11 @@ auto it = MAPI_NamedTagMap()->constFind(key); if (it != MAPI_NamedTagMap()->constEnd()) { if (tag >= 0) { - return QString().sprintf("0x%04X [0x%04X]: ", tag, key) + *it; + return QString::asprintf("0x%04X [0x%04X]: ", tag, key) + *it; } else { - return QString().sprintf("0x%04X ________:", key) + *it; + return QString::asprintf("0x%04X ________:", key) + *it; } } else { - return QString().sprintf( "0x%04X ________:", key ); + return QString::asprintf( "0x%04X ________:", key ); } }
