Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package mbox-importer for openSUSE:Factory 
checked in at 2021-08-16 10:10:58
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/mbox-importer (Old)
 and      /work/SRC/openSUSE:Factory/.mbox-importer.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "mbox-importer"

Mon Aug 16 10:10:58 2021 rev:57 rq:911789 version:21.08.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/mbox-importer/mbox-importer.changes      
2021-07-10 00:02:37.802989110 +0200
+++ /work/SRC/openSUSE:Factory/.mbox-importer.new.1899/mbox-importer.changes    
2021-08-16 10:16:50.886712310 +0200
@@ -1,0 +2,24 @@
+Fri Aug  6 09:42:38 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 21.08.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/gear/21.08.0
+- No code change since 21.07.90
+
+-------------------------------------------------------------------
+Fri Jul 30 10:05:53 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 21.07.90
+  * New feature release
+- No code change since 21.07.80
+
+-------------------------------------------------------------------
+Sat Jul 17 20:07:03 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 21.07.80
+  * New feature release
+- No code change since 21.04.3
+- Only install the license files once
+
+-------------------------------------------------------------------

Old:
----
  mbox-importer-21.04.3.tar.xz
  mbox-importer-21.04.3.tar.xz.sig

New:
----
  mbox-importer-21.08.0.tar.xz
  mbox-importer-21.08.0.tar.xz.sig

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

Other differences:
------------------
++++++ mbox-importer.spec ++++++
--- /var/tmp/diff_new_pack.RBnEws/_old  2021-08-16 10:16:51.286711829 +0200
+++ /var/tmp/diff_new_pack.RBnEws/_new  2021-08-16 10:16:51.290711824 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:           mbox-importer
-Version:        21.04.3
+Version:        21.08.0
 Release:        0
 Summary:        Tool for importing mbox archives into akonadi
 License:        GPL-2.0-or-later AND LGPL-2.1-or-later
@@ -43,7 +43,6 @@
 BuildRequires:  cmake(KF5Service)
 BuildRequires:  cmake(Qt5Gui)
 BuildRequires:  cmake(Qt5Widgets)
-Recommends:     %{name}-lang
 # It can only build on the same platforms as Qt Webengine
 ExclusiveArch:  %{ix86} x86_64 %{arm} aarch64 mips mips64
 
@@ -73,7 +72,6 @@
 
 %if %{with lang}
 %files lang -f %{name}.lang
-%license LICENSES/*
 %endif
 
 %changelog


++++++ mbox-importer-21.04.3.tar.xz -> mbox-importer-21.08.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mbox-importer-21.04.3/.clang-format 
new/mbox-importer-21.08.0/.clang-format
--- old/mbox-importer-21.04.3/.clang-format     2021-06-16 07:20:52.000000000 
+0200
+++ new/mbox-importer-21.08.0/.clang-format     1970-01-01 01:00:00.000000000 
+0100
@@ -1,76 +0,0 @@
----
-# SPDX-FileCopyrightText: 2019 Christoph Cullmann <cullm...@kde.org>
-# SPDX-FileCopyrightText: 2019 Gernot Gebhard <gebh...@absint.com>
-#
-# SPDX-License-Identifier: MIT
-
-# Style for C++
-Language: Cpp
-
-# base is WebKit coding style: https://webkit.org/code-style-guidelines/
-# below are only things set that diverge from this style!
-BasedOnStyle: WebKit
-
-# enforce C++11 (e.g. for std::vector<std::vector<lala>>
-Standard: Cpp11
-
-# 4 spaces indent
-TabWidth: 4
-
-# 2 * 80 wide lines
-ColumnLimit: 160
-
-# sort includes inside line separated groups
-SortIncludes: true
-
-# break before braces on function, namespace and class definitions.
-BreakBeforeBraces: Linux
-
-# CrlInstruction *a;
-PointerAlignment: Right
-
-# horizontally aligns arguments after an open bracket.
-AlignAfterOpenBracket: Align
-
-# don't move all parameters to new line
-AllowAllParametersOfDeclarationOnNextLine: false
-
-# no single line functions
-AllowShortFunctionsOnASingleLine: None
-
-# always break before you encounter multi line strings
-AlwaysBreakBeforeMultilineStrings: true
-
-# don't move arguments to own lines if they are not all on the same
-BinPackArguments: false
-
-# don't move parameters to own lines if they are not all on the same
-BinPackParameters: false
-
-# In case we have an if statement whith multiple lines the operator should be 
at the beginning of the line
-# but we do not want to break assignments
-BreakBeforeBinaryOperators: NonAssignment
-
-# format C++11 braced lists like function calls
-Cpp11BracedListStyle: true
-
-# do not put a space before C++11 braced lists
-SpaceBeforeCpp11BracedList: false
-
-# remove empty lines
-KeepEmptyLinesAtTheStartOfBlocks: false
-
-# no namespace indentation to keep indent level low
-NamespaceIndentation: None
-
-# we use template< without space.
-SpaceAfterTemplateKeyword: false
-
-# macros for which the opening brace stays attached.
-ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH, forever, Q_FOREVER, 
QBENCHMARK, QBENCHMARK_ONCE ]
-
-# keep lambda formatting multi-line if not empty
-AllowShortLambdasOnASingleLine: Empty
-
-# We do not want clang-format to put all arguments on a new line
-AllowAllArgumentsOnNextLine: false
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mbox-importer-21.04.3/.gitignore 
new/mbox-importer-21.08.0/.gitignore
--- old/mbox-importer-21.04.3/.gitignore        2021-06-16 07:20:52.000000000 
+0200
+++ new/mbox-importer-21.08.0/.gitignore        2021-07-31 12:06:53.000000000 
+0200
@@ -19,3 +19,8 @@
 CMakeLists.txt.user*
 *.unc-backup*
 compile_commands.json
+.clang-format
+.clangd
+.idea
+/cmake-build*
+.cache
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mbox-importer-21.04.3/CMakeLists.txt 
new/mbox-importer-21.08.0/CMakeLists.txt
--- old/mbox-importer-21.04.3/CMakeLists.txt    2021-06-16 07:20:52.000000000 
+0200
+++ new/mbox-importer-21.08.0/CMakeLists.txt    2021-07-31 12:06:53.000000000 
+0200
@@ -1,8 +1,8 @@
-set(PIM_VERSION "5.17.3")
-cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
+set(PIM_VERSION "5.18.0")
+cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
 project(mbox-importer VERSION ${PIM_VERSION})
 
-set(KF5_MIN_VERSION "5.79.0")
+set(KF5_MIN_VERSION "5.83.0")
 
 find_package(ECM ${KF5_MIN_VERSION} CONFIG REQUIRED)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
@@ -28,8 +28,8 @@
 
 
 # Do NOT add quote
-set(KDEPIM_DEV_VERSION)
-set(RELEASE_SERVICE_VERSION "21.04.3")
+set(KDEPIM_DEV_VERSION )
+set(RELEASE_SERVICE_VERSION "21.08.0")
 # add an extra space
 if(DEFINED KDEPIM_DEV_VERSION)
     set(KDEPIM_DEV_VERSION " ${KDEPIM_DEV_VERSION}")
@@ -37,17 +37,17 @@
 
 set(KDEPIM_VERSION "${PIM_VERSION}${KDEPIM_DEV_VERSION} 
(${RELEASE_SERVICE_VERSION})")
 
-set(AKONADI_VERSION "5.17.3")
+set(AKONADI_VERSION "5.18.0")
 
 set(KDEPIM_LIB_VERSION "${PIM_VERSION}")
 set(KDEPIM_LIB_SOVERSION "5")
 
-set(QT_REQUIRED_VERSION "5.14.0")
+set(QT_REQUIRED_VERSION "5.15.0")
 find_package(Qt5 ${QT_REQUIRED_VERSION} CONFIG REQUIRED Gui Widgets)
-set(LIBMAILIMPORTER_VERSION "5.17.3")
-set(MAILCOMMON_LIB_VERSION "5.17.3")
-set(PIMCOMMON_LIB_VERSION "5.17.3")
-set(GRANTLEETHEME_LIB_VERSION "5.17.3")
+set(LIBMAILIMPORTER_VERSION "5.18.0")
+set(MAILCOMMON_LIB_VERSION "5.18.0")
+set(PIMCOMMON_LIB_VERSION "5.18.0")
+set(GRANTLEETHEME_LIB_VERSION "5.18.0")
 
 # Find KF5 package
 find_package(KF5Config ${KF5_MIN_VERSION} CONFIG REQUIRED)
@@ -66,19 +66,15 @@
 include_directories(${mbox-importer_SOURCE_DIR} ${mbox-importer_BINARY_DIR})
 
 add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050f00)
-add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055000)
+add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055400)
 
-set(CMAKE_CXX_STANDARD 14)
+set(CMAKE_CXX_STANDARD 17)
 set(CMAKE_CXX_STANDARD_REQUIRED ON)
-option(USE_UNITY_CMAKE_SUPPORT "Use UNITY cmake support (speedup compile 
time)" FALSE)
+option(USE_UNITY_CMAKE_SUPPORT "Use UNITY cmake support (speedup compile 
time)" OFF)
 
-set(COMPILE_WITH_UNITY_CMAKE_SUPPORT false)
+set(COMPILE_WITH_UNITY_CMAKE_SUPPORT OFF)
 if (USE_UNITY_CMAKE_SUPPORT)
-    if(${CMAKE_VERSION} VERSION_LESS "3.16.0")
-        message(STATUS "CMAKE version is less than 3.16.0 . We can't use cmake 
unify build support")
-    else()
-        set(COMPILE_WITH_UNITY_CMAKE_SUPPORT true)
-    endif()
+    set(COMPILE_WITH_UNITY_CMAKE_SUPPORT ON)
 endif()
 add_subdirectory(src)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mbox-importer-21.04.3/CMakePresets.json 
new/mbox-importer-21.08.0/CMakePresets.json
--- old/mbox-importer-21.04.3/CMakePresets.json 2021-06-16 07:20:52.000000000 
+0200
+++ new/mbox-importer-21.08.0/CMakePresets.json 2021-07-31 12:06:53.000000000 
+0200
@@ -1,5 +1,5 @@
 {
-    "version": 1,
+    "version": 2,
     "configurePresets": [
         {
             "name": "dev",
@@ -23,6 +23,20 @@
             }
         },
         {
+            "name": "dev-clang",
+            "displayName": "dev-clang",
+            "generator": "Ninja",
+            "binaryDir": "${sourceDir}/build-clang",
+            "cacheVariables": {
+                "CMAKE_BUILD_TYPE": "Debug",
+                "CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
+            },
+            "environment": {
+                "CXX": "clang++",
+                "CCACHE_DISABLE": "ON"
+            }
+        },
+        {
             "name": "unity",
             "displayName": "Build with CMake unity support.",
             "generator": "Ninja",
@@ -51,6 +65,64 @@
                 "CMAKE_BUILD_TYPE": "RelWithDebInfo",
                "CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
             }
+        },
+        {
+            "name": "clazy",
+            "displayName": "clazy",
+            "generator": "Ninja",
+            "binaryDir": "${sourceDir}/build-clazy",
+            "cacheVariables": {
+                "CMAKE_BUILD_TYPE": "Debug"
+            },
+            "environment": {
+                "CXX": "clazy",
+                "CCACHE_DISABLE": "ON"
+            }
+        }
+
+    ],
+    "buildPresets": [
+        {
+            "name": "dev",
+            "configurePreset": "dev"
+        },
+        {
+            "name": "release",
+            "configurePreset": "release"
+        },
+        {
+            "name": "dev-clang",
+            "configurePreset": "dev-clang"
+        },
+        {
+            "name": "asan",
+            "configurePreset": "asan"
+        },
+        {
+            "name": "unity",
+            "configurePreset": "unity"
+        },
+        {
+            "name": "clazy",
+            "configurePreset": "clazy",
+            "environment": {
+                "CLAZY_CHECKS" : 
"level0,level1,detaching-member,ifndef-define-typo,isempty-vs-count,qrequiredresult-candidates,reserve-candidates,signal-with-return-value,unneeded-cast,function-args-by-ref,function-args-by-value,returning-void-expression,no-ctor-missing-parent-argument,isempty-vs-count,qhash-with-char-pointer-key,raw-environment-function,qproperty-type-mismatch,old-style-connect,qstring-allocations,container-inside-loop,heap-allocated-small-trivial-type,inefficient-qlist,qstring-varargs,level2,detaching-member,heap-allocated-small-trivial-type,isempty-vs-count,qstring-varargs,qvariant-template-instantiation,raw-environment-function,reserve-candidates,signal-with-return-value,thread-with-slots,no-ctor-missing-parent-argument,no-missing-typeinfo",
+                "CCACHE_DISABLE" : "ON"
+            }
         }
+    ],
+    "testPresets": [
+    { 
+      "name": "dev",
+      "configurePreset": "dev",
+      "output": {"outputOnFailure": true},
+      "execution": {"noTestsAction": "error", "stopOnFailure": false}
+    },
+    { 
+      "name": "asan",
+      "configurePreset": "asan",
+      "output": {"outputOnFailure": true},
+      "execution": {"noTestsAction": "error", "stopOnFailure": true}
+    }
     ]
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mbox-importer-21.04.3/po/el/mboximporter.po 
new/mbox-importer-21.08.0/po/el/mboximporter.po
--- old/mbox-importer-21.04.3/po/el/mboximporter.po     2021-07-06 
07:28:05.000000000 +0200
+++ new/mbox-importer-21.08.0/po/el/mboximporter.po     2021-08-06 
02:23:53.000000000 +0200
@@ -1,13 +1,13 @@
 # Copyright (C) YEAR This file is copyright:
 # This file is distributed under the same license as the mbox-importer package.
 #
-# Stelios <ssta...@gmail.com>, 2020.
+# Stelios <ssta...@gmail.com>, 2020, 2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: mbox-importer\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-01-02 02:35+0100\n"
-"PO-Revision-Date: 2020-08-05 10:33+0300\n"
+"PO-Revision-Date: 2021-06-30 09:59+0300\n"
 "Last-Translator: Stelios <ssta...@gmail.com>\n"
 "Language-Team: Greek <kde-i18n...@kde.org>\n"
 "Language: el\n"
@@ -38,10 +38,9 @@
 msgstr "???????????????? ?????????????????? ????????????????????????"
 
 #: main.cpp:32
-#, fuzzy, kde-format
-#| msgid "Copyright ?? 2013-2020 MBoxImporter authors"
+#, kde-format
 msgid "Copyright ?? 2013-2021 MBoxImporter authors"
-msgstr "Copyright ?? 2013-2020 ???? ???????????????????? ?????? MBoxImporter"
+msgstr "Copyright ?? 2013-2021 ???? ???????????????????? ?????? MBoxImporter"
 
 #: main.cpp:33
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mbox-importer-21.04.3/po/hi/mboximporter.po 
new/mbox-importer-21.08.0/po/hi/mboximporter.po
--- old/mbox-importer-21.04.3/po/hi/mboximporter.po     1970-01-01 
01:00:00.000000000 +0100
+++ new/mbox-importer-21.08.0/po/hi/mboximporter.po     2021-08-06 
02:23:53.000000000 +0200
@@ -0,0 +1,87 @@
+# Copyright (C) YEAR This file is copyright:
+# This file is distributed under the same license as the mbox-importer package.
+#
+# Sameer Singh <lumarzel...@gmail.com>, 2021.
+# Raghavendra Kamath <ra...@raghukamath.com>, 2021.
+msgid ""
+msgstr ""
+"Project-Id-Version: mbox-importer\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2021-01-02 02:35+0100\n"
+"PO-Revision-Date: 2021-06-29 16:41+0530\n"
+"Last-Translator: Raghavendra Kamath <ra...@raghukamath.com>\n"
+"Language-Team: kde-hindi\n"
+"Language: hi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n!=1);\n"
+"X-Generator: Lokalize 21.04.2\n"
+
+#, kde-format
+msgctxt "NAME OF TRANSLATORS"
+msgid "Your names"
+msgstr "???????????? ????????????, ??????????????????????????? ????????????"
+
+#, kde-format
+msgctxt "EMAIL OF TRANSLATORS"
+msgid "Your emails"
+msgstr "lumarzel...@gmail.com, ra...@raghukamath.com"
+
+#: main.cpp:28
+#, kde-format
+msgid "MBox importer tool"
+msgstr "????????????????????? ??????????????? ????????????"
+
+#: main.cpp:30
+#, kde-format
+msgid "MBox Import Tool"
+msgstr "????????????????????? ???????????? ????????????"
+
+#: main.cpp:32
+#, kde-format
+msgid "Copyright ?? 2013-2021 MBoxImporter authors"
+msgstr "?????????????????????????????? ???????????????????????? ?? 
????????????-???????????? ????????????????????? ??????????????? ?????? 
????????????"
+
+#: main.cpp:33
+#, kde-format
+msgid "Laurent Montel"
+msgstr "?????????????????? ??????????????????"
+
+#: main.cpp:33
+#, kde-format
+msgid "Maintainer"
+msgstr "????????????????????????"
+
+#: main.cpp:45
+#, kde-format
+msgid "URL of mbox to be imported"
+msgstr "???????????? ???????????? ???????????? ????????????????????? ?????? 
??????????????????"
+
+#: mboxmainwindow.cpp:27
+#, kde-format
+msgctxt "@title:window"
+msgid "Import mbox file"
+msgstr "????????????????????? ??????????????? ???????????? ????????????"
+
+#: mboxmainwindow.cpp:60
+#, kde-format
+msgid "Import in progress"
+msgstr "???????????? ?????????????????? ?????? ??????"
+
+#: mboxmainwindow.cpp:66
+#, kde-format
+msgid "Import finished"
+msgstr "???????????? ?????????????????????"
+
+#. i18n: ectx: property (text), widget (QLabel, label)
+#: ui/mboximportwidget.ui:20
+#, kde-format
+msgid "Please select the folder to import to:"
+msgstr "??????????????? ???????????? ???????????? ???????????? 
????????????????????? ?????? ??????????????? ???????????? :"
+
+#. i18n: ectx: property (text), widget (QPushButton, importMails)
+#: ui/mboximportwidget.ui:48
+#, kde-format
+msgid "Import Mails"
+msgstr "????????? ?????????????????? ????????????"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mbox-importer-21.04.3/po/pl/mboximporter.po 
new/mbox-importer-21.08.0/po/pl/mboximporter.po
--- old/mbox-importer-21.04.3/po/pl/mboximporter.po     2021-07-06 
07:28:05.000000000 +0200
+++ new/mbox-importer-21.08.0/po/pl/mboximporter.po     2021-08-06 
02:23:53.000000000 +0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-01-02 02:35+0100\n"
-"PO-Revision-Date: 2021-04-04 08:10+0200\n"
+"PO-Revision-Date: 2021-04-04 07:57+0200\n"
 "Last-Translator: ??ukasz Wojni??owicz <lukasz.wojnilow...@gmail.com>\n"
 "Language-Team: Polish <kde-i18n-...@kde.org>\n"
 "Language: pl\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mbox-importer-21.04.3/po/ro/mboximporter.po 
new/mbox-importer-21.08.0/po/ro/mboximporter.po
--- old/mbox-importer-21.04.3/po/ro/mboximporter.po     2021-07-06 
07:28:05.000000000 +0200
+++ new/mbox-importer-21.08.0/po/ro/mboximporter.po     2021-08-06 
02:23:53.000000000 +0200
@@ -1,13 +1,13 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
-# Sergiu Bivol <ser...@cip.md>, 2013, 2020.
+# Sergiu Bivol <ser...@cip.md>, 2013, 2020, 2021.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-01-02 02:35+0100\n"
-"PO-Revision-Date: 2020-09-13 12:40+0100\n"
+"PO-Revision-Date: 2021-07-25 09:11+0100\n"
 "Last-Translator: Sergiu Bivol <ser...@cip.md>\n"
 "Language-Team: Romanian\n"
 "Language: ro\n"
@@ -39,10 +39,9 @@
 msgstr "Unealt?? pentru importul MBox"
 
 #: main.cpp:32
-#, fuzzy, kde-format
-#| msgid "Copyright ?? 2013-2020 MBoxImporter authors"
+#, kde-format
 msgid "Copyright ?? 2013-2021 MBoxImporter authors"
-msgstr "Drept de autor ?? 2013-2020 Autorii MBoxImporter"
+msgstr "Drept de autor ?? 2013-2021 Autorii MBoxImporter"
 
 #: main.cpp:33
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mbox-importer-21.04.3/po/zh_CN/mboximporter.po 
new/mbox-importer-21.08.0/po/zh_CN/mboximporter.po
--- old/mbox-importer-21.04.3/po/zh_CN/mboximporter.po  2021-07-06 
07:28:05.000000000 +0200
+++ new/mbox-importer-21.08.0/po/zh_CN/mboximporter.po  2021-08-06 
02:23:53.000000000 +0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-01-02 02:35+0100\n"
-"PO-Revision-Date: 2021-06-20 07:37\n"
+"PO-Revision-Date: 2021-07-26 13:50\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mbox-importer-21.04.3/sanitizers.supp 
new/mbox-importer-21.08.0/sanitizers.supp
--- old/mbox-importer-21.04.3/sanitizers.supp   2021-06-16 07:20:52.000000000 
+0200
+++ new/mbox-importer-21.08.0/sanitizers.supp   2021-07-31 12:06:53.000000000 
+0200
@@ -1,3 +1,5 @@
+# SPDX-FileCopyrightText: 2021 Laurent Montel <mon...@kde.org>
+# SPDX-License-Identifier: CC0-1.0
 # Suppression file for ASAN/LSAN
 
 leak:libspeechd
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mbox-importer-21.04.3/src/mboximporterinfogui.h 
new/mbox-importer-21.08.0/src/mboximporterinfogui.h
--- old/mbox-importer-21.04.3/src/mboximporterinfogui.h 2021-06-16 
07:20:52.000000000 +0200
+++ new/mbox-importer-21.08.0/src/mboximporterinfogui.h 2021-07-31 
12:06:53.000000000 +0200
@@ -4,8 +4,7 @@
    SPDX-License-Identifier: GPL-2.0-or-later
 */
 
-#ifndef MBOXIMPORTERINFOGUI_H
-#define MBOXIMPORTERINFOGUI_H
+#pragma once
 
 #include "filterinfogui.h"
 class MBoxImportWidget;
@@ -32,4 +31,3 @@
     MBoxImportWidget *const mParent;
 };
 
-#endif /* MBOXIMPORTERINFOGUI_H */
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mbox-importer-21.04.3/src/mboximportkernel.h 
new/mbox-importer-21.08.0/src/mboximportkernel.h
--- old/mbox-importer-21.04.3/src/mboximportkernel.h    2021-06-16 
07:20:52.000000000 +0200
+++ new/mbox-importer-21.08.0/src/mboximportkernel.h    2021-07-31 
12:06:53.000000000 +0200
@@ -4,8 +4,7 @@
    SPDX-License-Identifier: GPL-2.0-or-later
 */
 
-#ifndef MBOXIMPORTKERNEL_H
-#define MBOXIMPORTKERNEL_H
+#pragma once
 
 #include <MailCommon/MailInterfaces>
 
@@ -51,4 +50,3 @@
     Akonadi::EntityMimeTypeFilterModel *mCollectionModel = nullptr;
 };
 
-#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mbox-importer-21.04.3/src/mboximportwidget.h 
new/mbox-importer-21.08.0/src/mboximportwidget.h
--- old/mbox-importer-21.04.3/src/mboximportwidget.h    2021-06-16 
07:20:52.000000000 +0200
+++ new/mbox-importer-21.08.0/src/mboximportwidget.h    2021-07-31 
12:06:53.000000000 +0200
@@ -4,8 +4,7 @@
    SPDX-License-Identifier: GPL-2.0-or-later
 */
 
-#ifndef MBOXIMPORTWIDGET_H
-#define MBOXIMPORTWIDGET_H
+#pragma once
 
 #include <QWidget>
 
@@ -44,4 +43,3 @@
     Ui::MBoxImportWidget *const ui;
 };
 
-#endif // MBOXIMPORTWIDGET_H
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mbox-importer-21.04.3/src/mboxmainwindow.h 
new/mbox-importer-21.08.0/src/mboxmainwindow.h
--- old/mbox-importer-21.04.3/src/mboxmainwindow.h      2021-06-16 
07:20:52.000000000 +0200
+++ new/mbox-importer-21.08.0/src/mboxmainwindow.h      2021-07-31 
12:06:53.000000000 +0200
@@ -4,8 +4,7 @@
    SPDX-License-Identifier: GPL-2.0-or-later
 */
 
-#ifndef MBOXMAINWINDOW_H
-#define MBOXMAINWINDOW_H
+#pragma once
 
 #include <QDialog>
 
@@ -25,4 +24,3 @@
     MBoxImportWidget *mImportWidget = nullptr;
 };
 
-#endif // MBOXMAINWINDOW_H
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/mbox-importer-21.04.3/src/org.kde.mboximporter.desktop 
new/mbox-importer-21.08.0/src/org.kde.mboximporter.desktop
--- old/mbox-importer-21.04.3/src/org.kde.mboximporter.desktop  2021-06-16 
07:20:52.000000000 +0200
+++ new/mbox-importer-21.08.0/src/org.kde.mboximporter.desktop  2021-07-31 
12:06:53.000000000 +0200
@@ -14,7 +14,7 @@
 Name[fi]=MBoxImporter
 Name[fr]=MBoxImporter
 Name[gl]=MBoxImporter
-Name[hi]=MBox ???????????????
+Name[hi]=????????????????????? ???????????????
 Name[hu]=MBoxImporter
 Name[ia]=MBoxImporter
 Name[it]=MBoxImporter
@@ -31,6 +31,7 @@
 Name[ru]=???????????? ?????????????????? ??????????
 Name[sk]=MBoxImporter
 Name[sl]=MBoxImporter
+Name[sq]=MBoxImporter
 Name[sr]=?????????????? ???? ????????????
 Name[sr@ijekavian]=?????????????? ???? ????????????
 Name[sr@ijekavianlatin]=Uvoznik iz mboxa

Reply via email to