Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kcontacts for openSUSE:Factory 
checked in at 2021-02-17 18:10:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kcontacts (Old)
 and      /work/SRC/openSUSE:Factory/.kcontacts.new.28504 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kcontacts"

Wed Feb 17 18:10:28 2021 rev:65 rq:871679 version:5.79.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kcontacts/kcontacts.changes      2021-01-13 
18:17:18.585005885 +0100
+++ /work/SRC/openSUSE:Factory/.kcontacts.new.28504/kcontacts.changes   
2021-02-17 18:11:40.633947340 +0100
@@ -1,0 +2,11 @@
+Mon Feb  8 08:46:07 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 5.79.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.79.0
+- Changes since 5.78.0:
+  * Also set the test locale on Windows
+  * Compile benchmark tests, but don't run them automatically with ctest
+
+-------------------------------------------------------------------

Old:
----
  kcontacts-5.78.0.tar.xz
  kcontacts-5.78.0.tar.xz.sig

New:
----
  kcontacts-5.79.0.tar.xz
  kcontacts-5.79.0.tar.xz.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kcontacts.spec ++++++
--- /var/tmp/diff_new_pack.yyILuL/_old  2021-02-17 18:11:41.181947788 +0100
+++ /var/tmp/diff_new_pack.yyILuL/_new  2021-02-17 18:11:41.185947791 +0100
@@ -16,14 +16,14 @@
 #
 
 
-%define _tar_path 5.78
+%define _tar_path 5.79
 # 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:           kcontacts
-Version:        5.78.0
+Version:        5.79.0
 Release:        0
 Summary:        KDE Frameworks based address book API
 License:        LGPL-2.1-or-later


++++++ kcontacts-5.78.0.tar.xz -> kcontacts-5.79.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcontacts-5.78.0/.gitignore 
new/kcontacts-5.79.0/.gitignore
--- old/kcontacts-5.78.0/.gitignore     2021-01-02 14:09:39.000000000 +0100
+++ new/kcontacts-5.79.0/.gitignore     2021-02-06 19:12:22.000000000 +0100
@@ -20,3 +20,4 @@
 CMakeLists.txt.user*
 *.unc-backup*
 .cmake/
+/.clang-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcontacts-5.78.0/CMakeLists.txt 
new/kcontacts-5.79.0/CMakeLists.txt
--- old/kcontacts-5.78.0/CMakeLists.txt 2021-01-02 14:09:39.000000000 +0100
+++ new/kcontacts-5.79.0/CMakeLists.txt 2021-02-06 19:12:22.000000000 +0100
@@ -1,13 +1,13 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.78.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.78.0") # handled by release scripts
+set(KF_VERSION "5.79.0") # handled by release scripts
+set(KF_DEP_VERSION "5.79.0") # handled by release scripts
 
-project(KContacts VERSION ${KF5_VERSION})
+project(KContacts VERSION ${KF_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.78.0 NO_MODULE)
+find_package(ECM 5.79.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)
 
@@ -31,7 +31,7 @@
 option(BUILD_QCH "Build API documentation in QCH format (for e.g. Qt 
Assistant, Qt Creator & KDevelop)" OFF)
 add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. 
Qt Assistant, Qt Creator & KDevelop)")
 
-set(KCONTACTS_LIB_VERSION ${KF5_VERSION})
+set(KCONTACTS_LIB_VERSION ${KF_VERSION})
 
 ecm_setup_version(PROJECT VARIABLE_PREFIX KContacts
                         VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kcontacts_version.h"
@@ -41,7 +41,7 @@
 
 ########### Find packages ###########
 find_package(Qt5 ${REQUIRED_QT_VERSION} REQUIRED COMPONENTS Gui)
-find_package(KF5 ${KF5_DEP_VERSION} REQUIRED COMPONENTS CoreAddons I18n Config 
Codecs)
+find_package(KF5 ${KF_DEP_VERSION} REQUIRED COMPONENTS CoreAddons I18n Config 
Codecs)
 find_package(IsoCodes MODULE)
 set_package_properties("IsoCodes" PROPERTIES PURPOSE "Needed for country name 
translations." TYPE RUNTIME)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcontacts-5.78.0/KF5ContactsConfig.cmake.in 
new/kcontacts-5.79.0/KF5ContactsConfig.cmake.in
--- old/kcontacts-5.78.0/KF5ContactsConfig.cmake.in     2021-01-02 
14:09:39.000000000 +0100
+++ new/kcontacts-5.79.0/KF5ContactsConfig.cmake.in     2021-02-06 
19:12:22.000000000 +0100
@@ -1,9 +1,9 @@
 @PACKAGE_INIT@
 include(CMakeFindDependencyMacro)
-find_dependency(KF5CoreAddons "@KF5_DEP_VERSION@")
-find_dependency(KF5Config "@KF5_DEP_VERSION@")
-find_dependency(KF5I18n "@KF5_DEP_VERSION@")
-find_dependency(KF5Codecs "@KF5_DEP_VERSION@")
+find_dependency(KF5CoreAddons "@KF_DEP_VERSION@")
+find_dependency(KF5Config "@KF_DEP_VERSION@")
+find_dependency(KF5I18n "@KF_DEP_VERSION@")
+find_dependency(KF5Codecs "@KF_DEP_VERSION@")
 
 include("${CMAKE_CURRENT_LIST_DIR}/KF5ContactsTargets.cmake")
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcontacts-5.78.0/autotests/CMakeLists.txt 
new/kcontacts-5.79.0/autotests/CMakeLists.txt
--- old/kcontacts-5.78.0/autotests/CMakeLists.txt       2021-01-02 
14:09:39.000000000 +0100
+++ new/kcontacts-5.79.0/autotests/CMakeLists.txt       2021-02-06 
19:12:22.000000000 +0100
@@ -38,9 +38,11 @@
     orgtest.cpp
     datetimetest.cpp
     clientpidmaptest.cpp
-    vcardtool_benchmark.cpp
     NAME_PREFIX "kcontacts-" LINK_LIBRARIES KF5Contacts Qt5::Test 
KF5::ConfigCore)
 
 ecm_add_tests(picturetest.cpp
     NAME_PREFIX "kcontacts-" LINK_LIBRARIES KF5Contacts Qt5::Test 
KF5::ConfigCore Qt5::Gui)
 
+# Benchmark, compiled, but not run automatically with ctest
+add_executable(vcardtool_benchmark vcardtool_benchmark.cpp)
+target_link_libraries(vcardtool_benchmark KF5Contacts Qt5::Test 
KF5::ConfigCore)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcontacts-5.78.0/autotests/addresstest.cpp 
new/kcontacts-5.79.0/autotests/addresstest.cpp
--- old/kcontacts-5.78.0/autotests/addresstest.cpp      2021-01-02 
14:09:39.000000000 +0100
+++ new/kcontacts-5.79.0/autotests/addresstest.cpp      2021-02-06 
19:12:22.000000000 +0100
@@ -15,14 +15,12 @@
 #include <QStandardPaths>
 
 QTEST_MAIN(AddressTest)
-#ifndef Q_OS_WIN
 void initLocale()
 {
-    qputenv("LC_ALL", "it_CH.utf-8");
+    QLocale::setDefault(QLocale(QLocale::Italian, QLocale::Switzerland));
 }
 
 Q_CONSTRUCTOR_FUNCTION(initLocale)
-#endif
 
 void AddressTest::initTestCase()
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcontacts-5.78.0/po/zh_CN/kcontacts5.po 
new/kcontacts-5.79.0/po/zh_CN/kcontacts5.po
--- old/kcontacts-5.78.0/po/zh_CN/kcontacts5.po 2021-01-02 14:09:39.000000000 
+0100
+++ new/kcontacts-5.79.0/po/zh_CN/kcontacts5.po 2021-02-06 19:12:22.000000000 
+0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2020-06-26 02:00+0200\n"
-"PO-Revision-Date: 2021-01-01 14:21\n"
+"PO-Revision-Date: 2021-02-04 11:58\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcontacts-5.78.0/src/vcardtool.cpp 
new/kcontacts-5.79.0/src/vcardtool.cpp
--- old/kcontacts-5.78.0/src/vcardtool.cpp      2021-01-02 14:09:39.000000000 
+0100
+++ new/kcontacts-5.79.0/src/vcardtool.cpp      2021-02-06 19:12:22.000000000 
+0100
@@ -910,11 +910,7 @@
                     if (lineStr.startsWith(QLatin1String("geo:"))) { //VCard 
4.0
                         lineStr.remove(QStringLiteral("geo:"));
                         const QStringList geoParts
-#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
-                            = lineStr.split(QLatin1Char(','), 
QString::KeepEmptyParts);
-#else
                             = lineStr.split(QLatin1Char(','), 
Qt::KeepEmptyParts);
-#endif
                         if (geoParts.size() >= 2) {
                             geo.setLatitude(geoParts.at(0).toFloat());
                             geo.setLongitude(geoParts.at(1).toFloat());
@@ -922,11 +918,7 @@
                         }
                     } else {
                         const QStringList geoParts
-#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
-                            = lineStr.split(QLatin1Char(';'), 
QString::KeepEmptyParts);
-#else
                             = lineStr.split(QLatin1Char(';'), 
Qt::KeepEmptyParts);
-#endif
                         if (geoParts.size() >= 2) {
                             geo.setLatitude(geoParts.at(0).toFloat());
                             geo.setLongitude(geoParts.at(1).toFloat());
@@ -1209,11 +1201,7 @@
                     if (key.startsWith(QLatin1String("messaging/"))) {
                         QUrl url;
                         url.setScheme(normalizeImppServiceType(key.mid(10, 
dash - 10)));
-#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
-                        const auto values = 
(*lineIt).value().toString().split(QChar(0xE000), QString::SkipEmptyParts);
-#else
                         const auto values = 
(*lineIt).value().toString().split(QChar(0xE000), Qt::SkipEmptyParts);
-#endif
                         for (const auto &value : values) {
                             url.setPath(value);
                             Impp impp;

Reply via email to