Hello community, here is the log from the commit of package kcontacts for openSUSE:Factory checked in at 2016-09-14 23:09:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kcontacts (Old) and /work/SRC/openSUSE:Factory/.kcontacts.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "kcontacts" Changes: -------- --- /work/SRC/openSUSE:Factory/kcontacts/kcontacts.changes 2016-08-29 14:37:57.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.kcontacts.new/kcontacts.changes 2016-09-14 23:09:15.000000000 +0200 @@ -1,0 +2,8 @@ +Fri Sep 9 08:18:10 UTC 2016 - tittiatcoke@gmail.com + +- Update to KDE Applications 16.08.1 + * KDE Applications 16.08.1 + * https://www.kde.org/announcements/announce-applications-16.08.1.php + + +------------------------------------------------------------------- Old: ---- kcontacts-16.08.0.tar.xz New: ---- kcontacts-16.08.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kcontacts.spec ++++++ --- /var/tmp/diff_new_pack.Pq3n0B/_old 2016-09-14 23:09:16.000000000 +0200 +++ /var/tmp/diff_new_pack.Pq3n0B/_new 2016-09-14 23:09:16.000000000 +0200 @@ -18,7 +18,7 @@ %define kf5_version 5.5.0 Name: kcontacts -Version: 16.08.0 +Version: 16.08.1 Release: 0 Summary: New address book API for KDE License: LGPL-2.1+ ++++++ kcontacts-16.08.0.tar.xz -> kcontacts-16.08.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcontacts-16.08.0/CMakeLists.txt new/kcontacts-16.08.1/CMakeLists.txt --- old/kcontacts-16.08.0/CMakeLists.txt 2016-08-11 22:51:14.000000000 +0200 +++ new/kcontacts-16.08.1/CMakeLists.txt 2016-08-22 22:51:27.000000000 +0200 @@ -18,7 +18,7 @@ include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE) include(ECMQtDeclareLoggingCategory) -set(PIM_VERSION "5.3.0") +set(PIM_VERSION "5.3.1") set(KCONTACTS_LIB_VERSION ${PIM_VERSION}) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcontacts-16.08.0/src/addressee.cpp new/kcontacts-16.08.1/src/addressee.cpp --- old/kcontacts-16.08.0/src/addressee.cpp 2016-08-11 22:51:14.000000000 +0200 +++ new/kcontacts-16.08.1/src/addressee.cpp 2016-08-22 22:51:27.000000000 +0200 @@ -1773,7 +1773,8 @@ d->mEmpty = false; Key::List::Iterator it; - for (it = d->mKeys.begin(); it != d->mKeys.end(); ++it) { + Key::List::Iterator end(d->mKeys.end()); + for (it = d->mKeys.begin(); it != end; ++it) { if ((*it).id() == key.id()) { *it = key; return; @@ -1792,8 +1793,7 @@ Key::List::Iterator it; for (it = d->mKeys.begin(); it != d->mKeys.end(); ++it) { if ((*it).id() == key.id()) { - //Just use d->mKeys.removeAll(key) when depending on Qt 5.4 - vectorRemoveAll(d->mKeys, key); + d->mKeys.removeAll(key); return; } }