Hello community,

here is the log from the commit of package pim-data-exporter for 
openSUSE:Factory checked in at 2018-07-19 22:54:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/pim-data-exporter (Old)
 and      /work/SRC/openSUSE:Factory/.pim-data-exporter.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "pim-data-exporter"

Thu Jul 19 22:54:44 2018 rev:21 rq:622769 version:18.04.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/pim-data-exporter/pim-data-exporter.changes      
2018-06-15 14:44:58.267204344 +0200
+++ /work/SRC/openSUSE:Factory/.pim-data-exporter.new/pim-data-exporter.changes 
2018-07-19 22:57:04.601567569 +0200
@@ -1,0 +2,10 @@
+Fri Jul 13 04:50:20 UTC 2018 - lbeltr...@kde.org
+
+- Update to 18.04.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.04.3.php
+- Changes since 18.04.2:
+  * Fix Bug 395911 - pimsettingsexporter "contacts" directory path incorrect 
(kde#395911)
+
+-------------------------------------------------------------------

Old:
----
  pim-data-exporter-18.04.2.tar.xz

New:
----
  pim-data-exporter-18.04.3.tar.xz

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

Other differences:
------------------
++++++ pim-data-exporter.spec ++++++
--- /var/tmp/diff_new_pack.eeyjYA/_old  2018-07-19 22:57:05.177565782 +0200
+++ /var/tmp/diff_new_pack.eeyjYA/_new  2018-07-19 22:57:05.181565770 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 
 Name:           pim-data-exporter
-Version:        18.04.2
+Version:        18.04.3
 Release:        0
 %define kf5_version 5.26.0
 # Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA)

++++++ pim-data-exporter-18.04.2.tar.xz -> pim-data-exporter-18.04.3.tar.xz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pim-data-exporter-18.04.2/CMakeLists.txt 
new/pim-data-exporter-18.04.3/CMakeLists.txt
--- old/pim-data-exporter-18.04.2/CMakeLists.txt        2018-06-05 
03:24:15.000000000 +0200
+++ new/pim-data-exporter-18.04.3/CMakeLists.txt        2018-07-10 
02:14:58.000000000 +0200
@@ -1,5 +1,5 @@
 cmake_minimum_required(VERSION 3.1)
-set(KDEPIM_VERSION_NUMBER "5.8.2")
+set(KDEPIM_VERSION_NUMBER "5.8.3")
 project(pim-data-exporter VERSION ${KDEPIM_VERSION_NUMBER})
 
 set(KF5_VERSION "5.44.0")
@@ -41,15 +41,15 @@
 set(QT_REQUIRED_VERSION "5.8.0")
 find_package(Qt5 ${QT_REQUIRED_VERSION} CONFIG REQUIRED Widgets Test)
 
-set(AKONADI_VERSION "5.8.2")
-set(IDENTITYMANAGEMENT_LIB_VERSION "5.8.2")
-set(KCONTACTS_LIB_VERSION "5.8.2")
-set(KMAILTRANSPORT_LIB_VERSION "5.8.2")
-set(KMIME_LIB_VERSION "5.8.2")
-set(KPIMTEXTEDIT_LIB_VERSION "5.8.2")
-set(LIBKDEPIM_LIB_VERSION_LIB "5.8.2")
-set(MAILCOMMON_LIB_VERSION_LIB "5.8.2")
-set(PIMCOMMON_LIB_VERSION_LIB "5.8.2")
+set(AKONADI_VERSION "5.8.3")
+set(IDENTITYMANAGEMENT_LIB_VERSION "5.8.3")
+set(KCONTACTS_LIB_VERSION "5.8.3")
+set(KMAILTRANSPORT_LIB_VERSION "5.8.3")
+set(KMIME_LIB_VERSION "5.8.3")
+set(KPIMTEXTEDIT_LIB_VERSION "5.8.3")
+set(LIBKDEPIM_LIB_VERSION_LIB "5.8.3")
+set(MAILCOMMON_LIB_VERSION_LIB "5.8.3")
+set(PIMCOMMON_LIB_VERSION_LIB "5.8.3")
 
 # Find KF5 package
 find_package(KF5Archive ${KF5_VERSION} REQUIRED)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pim-data-exporter-18.04.2/core/addressbook/exportaddressbookjob.cpp 
new/pim-data-exporter-18.04.3/core/addressbook/exportaddressbookjob.cpp
--- old/pim-data-exporter-18.04.2/core/addressbook/exportaddressbookjob.cpp     
2018-05-29 08:54:59.000000000 +0200
+++ new/pim-data-exporter-18.04.3/core/addressbook/exportaddressbookjob.cpp     
2018-06-29 07:03:44.000000000 +0200
@@ -93,7 +93,7 @@
         if (identifier.contains(QLatin1String("akonadi_vcarddir_resource_")) 
|| identifier.contains(QLatin1String("akonadi_contacts_resource_"))) {
             const QString archivePath = Utils::addressbookPath() + identifier 
+ QDir::separator();
 
-            QString url = Utils::resourcePath(agent, 
QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + 
QStringLiteral("/share/contacts/"));
+            QString url = Utils::resourcePath(agent, 
QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + 
QStringLiteral("/contacts/"));
             if (!mAgentPaths.contains(url)) {
                 mAgentPaths << url;
                 if (!url.isEmpty()) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pim-data-exporter-18.04.2/core/addressbook/importaddressbookjob.cpp 
new/pim-data-exporter-18.04.3/core/addressbook/importaddressbookjob.cpp
--- old/pim-data-exporter-18.04.2/core/addressbook/importaddressbookjob.cpp     
2018-05-29 08:54:59.000000000 +0200
+++ new/pim-data-exporter-18.04.3/core/addressbook/importaddressbookjob.cpp     
2018-06-29 07:03:44.000000000 +0200
@@ -106,7 +106,7 @@
                     KSharedConfig::Ptr resourceConfig = 
KSharedConfig::openConfig(copyToDirName + QLatin1Char('/') + resourceName);
 
                     //TODO fix default path
-                    const QString newUrl = 
Utils::adaptResourcePath(resourceConfig, 
QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + 
QLatin1String("/share/contacts"));
+                    const QString newUrl = 
Utils::adaptResourcePath(resourceConfig, 
QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + 
QLatin1String("/contacts"));
                     QFileInfo newUrlInfo(newUrl);
                     const QString dataFile = value.akonadiResources;
                     const KArchiveEntry *dataResouceEntry = 
mArchiveDirectory->entry(dataFile);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pim-data-exporter-18.04.2/po/cs/pimsettingexporter.po 
new/pim-data-exporter-18.04.3/po/cs/pimsettingexporter.po
--- old/pim-data-exporter-18.04.2/po/cs/pimsettingexporter.po   2018-06-05 
03:24:09.000000000 +0200
+++ new/pim-data-exporter-18.04.3/po/cs/pimsettingexporter.po   2018-07-10 
02:14:58.000000000 +0200
@@ -1,6 +1,6 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
-# Vit Pelcak <v...@pelcak.org>, 2012, 2013, 2014, 2015, 2016, 2017.
+# Vit Pelcak <v...@pelcak.org>, 2012, 2013, 2014, 2015, 2016, 2017, 2018.
 # Tomáš Chvátal <tomas.chva...@gmail.com>, 2012.
 #
 msgid ""
@@ -8,7 +8,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-01-02 03:16+0100\n"
-"PO-Revision-Date: 2017-11-14 17:22+0100\n"
+"PO-Revision-Date: 2018-06-15 16:02+0100\n"
 "Last-Translator: Vit Pelcak <v...@pelcak.org>\n"
 "Language-Team: Czech <kde-i18n-...@kde.org>\n"
 "Language: cs\n"
@@ -36,7 +36,7 @@
 #: console/main.cpp:39
 #, kde-format
 msgid "Copyright © 2015-2018 pimsettingexporter authors"
-msgstr ""
+msgstr "Copyright © 2015-2018 autoři pimsettingexporter"
 
 #: console/main.cpp:40 gui/pimsettingcommandlineoption.cpp:55
 #, kde-format
@@ -794,7 +794,7 @@
 #: gui/pimsettingcommandlineoption.cpp:54
 #, kde-format
 msgid "Copyright © 2012-2018 pimsettingexporter authors"
-msgstr ""
+msgstr "Copyright © 2012-2018 autoři pimsettingexporter"
 
 #: gui/pimsettingcommandlineoption.cpp:58
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pim-data-exporter-18.04.2/po/fr/pimsettingexporter.po 
new/pim-data-exporter-18.04.3/po/fr/pimsettingexporter.po
--- old/pim-data-exporter-18.04.2/po/fr/pimsettingexporter.po   2018-06-05 
03:24:10.000000000 +0200
+++ new/pim-data-exporter-18.04.3/po/fr/pimsettingexporter.po   2018-07-10 
02:14:58.000000000 +0200
@@ -4,14 +4,15 @@
 # Joëlle Cornavin <jc...@free.fr>, 2012, 2013.
 # Vincent Pinon <vincent.pi...@laposte.net>, 2013, 2014, 2015, 2016, 2017, 
2018.
 # Vincent PINON <vincent.pi...@st.com>, 2013, 2014.
+# Simon Depiets <sdepi...@gmail.com>, 2018.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: pimsettingexporter\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-01-02 03:16+0100\n"
-"PO-Revision-Date: 2018-01-11 20:59+0100\n"
-"Last-Translator: Vincent Pinon <vpi...@kde.org>\n"
+"PO-Revision-Date: 2018-06-14 10:53+0800\n"
+"Last-Translator: Simon Depiets <sdepi...@gmail.com>\n"
 "Language-Team: French <kde-francoph...@kde.org>\n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
@@ -427,7 +428,7 @@
 #: core/mail/exportmailjob.cpp:572
 #, kde-format
 msgid "vCard file \"%1\" cannot be saved."
-msgstr "Il est impossible d'enregistrer le fichier vCard « %1 »."
+msgstr "Impossible d'enregistrer le fichier vCard « %1 »."
 
 #: core/mail/exportmailjob.cpp:585
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pim-data-exporter-18.04.2/po/zh_CN/pimsettingexporter.po 
new/pim-data-exporter-18.04.3/po/zh_CN/pimsettingexporter.po
--- old/pim-data-exporter-18.04.2/po/zh_CN/pimsettingexporter.po        
2018-06-05 03:24:12.000000000 +0200
+++ new/pim-data-exporter-18.04.3/po/zh_CN/pimsettingexporter.po        
2018-07-10 02:14:58.000000000 +0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-01-02 03:16+0100\n"
-"PO-Revision-Date: 2018-05-18 06:29-0400\n"
+"PO-Revision-Date: 2018-07-03 17:39\n"
 "Last-Translator: guoyunhebrave <guoyunhebr...@gmail.com>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


Reply via email to