Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package kidentitymanagement for
openSUSE:Factory checked in at 2021-09-04 22:33:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kidentitymanagement (Old)
and /work/SRC/openSUSE:Factory/.kidentitymanagement.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kidentitymanagement"
Sat Sep 4 22:33:06 2021 rev:72 rq:915904 version:21.08.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/kidentitymanagement/kidentitymanagement.changes
2021-08-16 10:07:24.827394547 +0200
+++
/work/SRC/openSUSE:Factory/.kidentitymanagement.new.1899/kidentitymanagement.changes
2021-09-04 22:34:50.528110728 +0200
@@ -1,0 +2,9 @@
+Wed Sep 1 12:38:24 UTC 2021 - Christophe Giboudeaux <[email protected]>
+
+- Update to 21.08.1
+ * New bugfix release
+ * For more details please see:
+ * https://kde.org/announcements/gear/21.08.1
+- No code change since 21.08.0
+
+-------------------------------------------------------------------
Old:
----
kidentitymanagement-21.08.0.tar.xz
kidentitymanagement-21.08.0.tar.xz.sig
New:
----
kidentitymanagement-21.08.1.tar.xz
kidentitymanagement-21.08.1.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kidentitymanagement.spec ++++++
--- /var/tmp/diff_new_pack.ur7oU8/_old 2021-09-04 22:34:51.048111417 +0200
+++ /var/tmp/diff_new_pack.ur7oU8/_new 2021-09-04 22:34:51.052111422 +0200
@@ -21,7 +21,7 @@
%{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print
$1"."$2}')}
%bcond_without lang
Name: kidentitymanagement
-Version: 21.08.0
+Version: 21.08.1
Release: 0
Summary: KDE PIM Libraries: Identity Management
License: LGPL-2.1-or-later
++++++ kidentitymanagement-21.08.0.tar.xz -> kidentitymanagement-21.08.1.tar.xz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kidentitymanagement-21.08.0/CMakeLists.txt
new/kidentitymanagement-21.08.1/CMakeLists.txt
--- old/kidentitymanagement-21.08.0/CMakeLists.txt 2021-07-31
12:09:55.000000000 +0200
+++ new/kidentitymanagement-21.08.1/CMakeLists.txt 2021-08-13
08:48:19.000000000 +0200
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.18.0")
+set(PIM_VERSION "5.18.1")
project(KIdentityManagement VERSION ${PIM_VERSION})
@@ -26,7 +26,7 @@
set(KIDENTITYMANAGEMENT_LIB_VERSION ${PIM_VERSION})
-set(PIMTEXTEDIT_LIB_VERSION "5.18.0")
+set(PIMTEXTEDIT_LIB_VERSION "5.18.1")
ecm_setup_version(PROJECT VARIABLE_PREFIX KIDENTITYMANAGEMENT
VERSION_HEADER
"${CMAKE_CURRENT_BINARY_DIR}/kidentitymanagement_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kidentitymanagement-21.08.0/autotests/CMakeLists.txt
new/kidentitymanagement-21.08.1/autotests/CMakeLists.txt
--- old/kidentitymanagement-21.08.0/autotests/CMakeLists.txt 2021-07-31
12:09:55.000000000 +0200
+++ new/kidentitymanagement-21.08.1/autotests/CMakeLists.txt 2021-08-13
08:48:19.000000000 +0200
@@ -1,6 +1,9 @@
include(ECMAddTests)
find_package(Qt5Test ${QT_REQUIRED_VERSION} CONFIG REQUIRED)
-add_definitions( -DKIDENTITYMANAGER_DATA_DIR="${CMAKE_CURRENT_SOURCE_DIR}/")
ecm_add_tests( identitytest.cpp signaturetest.cpp NAME_PREFIX "kpimidentity-"
LINK_LIBRARIES KF5IdentityManagement
KF5::PimTextEdit Qt::Test KF5::ConfigCore KF5::TextWidgets KF5::XmlGui
KF5::CoreAddons)
+
+target_compile_definitions(signaturetest PRIVATE
+ SIGNATURETEST_DATA_FILE="${CMAKE_CURRENT_SOURCE_DIR}/signaturetest.cpp"
+)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kidentitymanagement-21.08.0/autotests/signaturetest.cpp
new/kidentitymanagement-21.08.1/autotests/signaturetest.cpp
--- old/kidentitymanagement-21.08.0/autotests/signaturetest.cpp 2021-07-31
12:09:55.000000000 +0200
+++ new/kidentitymanagement-21.08.1/autotests/signaturetest.cpp 2021-08-13
08:48:19.000000000 +0200
@@ -72,15 +72,15 @@
QCOMPARE(sig2.withSeparator(), QStringLiteral("-- <br><b>Hello</b>
World"));
QVERIFY(!sig2.isEnabledSignature());
+ const QString dataFilePath = QStringLiteral(SIGNATURETEST_DATA_FILE);
// Read this very file in, we use it for the tests
- QFile thisFile(QStringLiteral(__FILE__));
+ QFile thisFile(dataFilePath);
thisFile.open(QIODevice::ReadOnly);
QString fileContent = QString::fromUtf8(thisFile.readAll());
if (!QStandardPaths::findExecutable(QStringLiteral("cat")).isEmpty()) {
Signature sig3;
- const QString tempFile =
KShell::quoteArg(QLatin1String(KIDENTITYMANAGER_DATA_DIR) +
QStringLiteral(__FILE__));
- sig3.setPath(QStringLiteral("cat ") + KShell::quoteArg(tempFile),
true);
+ sig3.setPath(QStringLiteral("cat ") + KShell::quoteArg(dataFilePath),
true);
QCOMPARE(sig3.rawText(), fileContent);
QVERIFY(!sig3.isInlinedHtml());
QVERIFY(sig3.text().isEmpty());
@@ -90,7 +90,7 @@
}
Signature sig4;
- sig4.setPath(QStringLiteral(__FILE__), false);
+ sig4.setPath(dataFilePath, false);
QCOMPARE(sig4.rawText(), fileContent);
QVERIFY(!sig4.isInlinedHtml());
QVERIFY(sig4.text().isEmpty());
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kidentitymanagement-21.08.0/po/ca/libkpimidentities5.po
new/kidentitymanagement-21.08.1/po/ca/libkpimidentities5.po
--- old/kidentitymanagement-21.08.0/po/ca/libkpimidentities5.po 2021-08-06
02:22:21.000000000 +0200
+++ new/kidentitymanagement-21.08.1/po/ca/libkpimidentities5.po 2021-08-31
02:36:20.000000000 +0200
@@ -1,23 +1,23 @@
# Translation of libkpimidentities5.po to Catalan
-# Copyright (C) 2007-2020 This_file_is_part_of_KDE
+# Copyright (C) 2007-2021 This_file_is_part_of_KDE
# This file is distributed under the license LGPL version 2.1 or
# version 3 or later versions approved by the membership of KDE e.V.
#
# Josep Ma. Ferrer <[email protected]>, 2007, 2008, 2010, 2012, 2017, 2020.
-# Antoni Bella P??rez <[email protected]>, 2014, 2018, 2019, 2020.
+# Antoni Bella P??rez <[email protected]>, 2014, 2018, 2019, 2020, 2021.
msgid ""
msgstr ""
"Project-Id-Version: kidentitymanagement\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2021-04-21 12:50+0000\n"
-"PO-Revision-Date: 2020-12-08 22:46+0100\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"PO-Revision-Date: 2021-08-16 16:39+0200\n"
+"Last-Translator: Antoni Bella P??rez <[email protected]>\n"
"Language-Team: Catalan <[email protected]>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 21.07.90\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: &\n"
@@ -25,7 +25,7 @@
#, kde-format
msgctxt "use default address from control center"
msgid "Default"
-msgstr "Valor per defecte"
+msgstr "Valor predeterminat"
#: identitymanager.cpp:189
#, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kidentitymanagement-21.08.0/po/ca@valencia/libkpimidentities5.po
new/kidentitymanagement-21.08.1/po/ca@valencia/libkpimidentities5.po
--- old/kidentitymanagement-21.08.0/po/ca@valencia/libkpimidentities5.po
2021-08-06 02:22:21.000000000 +0200
+++ new/kidentitymanagement-21.08.1/po/ca@valencia/libkpimidentities5.po
2021-08-31 02:36:20.000000000 +0200
@@ -1,23 +1,23 @@
# Translation of libkpimidentities5.po to Catalan (Valencian)
-# Copyright (C) 2007-2020 This_file_is_part_of_KDE
+# Copyright (C) 2007-2021 This_file_is_part_of_KDE
# This file is distributed under the license LGPL version 2.1 or
# version 3 or later versions approved by the membership of KDE e.V.
#
# Josep Ma. Ferrer <[email protected]>, 2007, 2008, 2010, 2012, 2017, 2020.
-# Antoni Bella P??rez <[email protected]>, 2014, 2018, 2019, 2020.
+# Antoni Bella P??rez <[email protected]>, 2014, 2018, 2019, 2020, 2021.
msgid ""
msgstr ""
"Project-Id-Version: kidentitymanagement\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2021-04-21 12:50+0000\n"
-"PO-Revision-Date: 2020-12-08 22:46+0100\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"PO-Revision-Date: 2021-08-16 16:39+0200\n"
+"Last-Translator: Antoni Bella P??rez <[email protected]>\n"
"Language-Team: Catalan <[email protected]>\n"
"Language: ca@valencia\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 21.07.90\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: &\n"
@@ -25,7 +25,7 @@
#, kde-format
msgctxt "use default address from control center"
msgid "Default"
-msgstr "Valor per defecte"
+msgstr "Valor predeterminat"
#: identitymanager.cpp:189
#, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kidentitymanagement-21.08.0/po/cs/libkpimidentities5.po
new/kidentitymanagement-21.08.1/po/cs/libkpimidentities5.po
--- old/kidentitymanagement-21.08.0/po/cs/libkpimidentities5.po 2021-08-06
02:22:21.000000000 +0200
+++ new/kidentitymanagement-21.08.1/po/cs/libkpimidentities5.po 2021-08-31
02:36:20.000000000 +0200
@@ -2,6 +2,7 @@
# This file is distributed under the same license as the PACKAGE package.
# V??t Pel????k <[email protected]>, 2010, 2011, 2019.
# Tom???? Chv??tal <[email protected]>, 2013.
+# Vit Pelcak <[email protected]>, 2021.
#
msgid ""
msgstr ""
@@ -16,7 +17,7 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Lokalize 19.08.0\n"
+"X-Generator: Lokalize 21.04.3\n"
#: identitymanager.cpp:164
#, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kidentitymanagement-21.08.0/po/de/libkpimidentities5.po
new/kidentitymanagement-21.08.1/po/de/libkpimidentities5.po
--- old/kidentitymanagement-21.08.0/po/de/libkpimidentities5.po 2021-08-06
02:22:21.000000000 +0200
+++ new/kidentitymanagement-21.08.1/po/de/libkpimidentities5.po 2021-08-31
02:36:20.000000000 +0200
@@ -1,7 +1,7 @@
# Stephan Johach <[email protected]>, 2007.
# Thomas Reitelbach <[email protected]>, 2008, 2010.
# Frederik Schwarzer <[email protected]>, 2008.
-# Burkhard L??ck <[email protected]>, 2008, 2014, 2018, 2019.
+# Burkhard L??ck <[email protected]>, 2008, 2014, 2018, 2019, 2021.
msgid ""
msgstr ""
"Project-Id-Version: libkpimidentities\n"
@@ -15,6 +15,7 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Lokalize 19.12.3\n"
#: identitymanager.cpp:164
#, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kidentitymanagement-21.08.0/po/fr/libkpimidentities5.po
new/kidentitymanagement-21.08.1/po/fr/libkpimidentities5.po
--- old/kidentitymanagement-21.08.0/po/fr/libkpimidentities5.po 2021-08-06
02:22:21.000000000 +0200
+++ new/kidentitymanagement-21.08.1/po/fr/libkpimidentities5.po 2021-08-31
02:36:20.000000000 +0200
@@ -2,7 +2,7 @@
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# S??bastien Renard <[email protected]>, 2007, 2008.
-# xavier <[email protected]>, 2013.
+# xavier <[email protected]>, 2013, 2021.
# Ludovic Grossard <[email protected]>, 2014.
# Vincent Pinon <[email protected]>, 2018.
# Simon Depiets <[email protected]>, 2019.
@@ -20,7 +20,7 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 19.03.70\n"
+"X-Generator: Lokalize 21.08.0\n"
"X-Environment: kde\n"
"X-Accelerator-Marker: &\n"
"X-Text-Markup: kde4\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kidentitymanagement-21.08.0/po/it/libkpimidentities5.po
new/kidentitymanagement-21.08.1/po/it/libkpimidentities5.po
--- old/kidentitymanagement-21.08.0/po/it/libkpimidentities5.po 2021-08-06
02:22:21.000000000 +0200
+++ new/kidentitymanagement-21.08.1/po/it/libkpimidentities5.po 2021-08-31
02:36:20.000000000 +0200
@@ -3,7 +3,7 @@
# This file is distributed under the same license as the PACKAGE package.
# Federico Zenith <[email protected]>, 2007.
# Luca Bellonda <[email protected]>, 2008.
-# Luigi Toscano <[email protected]>, 2018, 2019.
+# Luigi Toscano <[email protected]>, 2018, 2019, 2021.
#
msgid ""
msgstr ""
@@ -18,7 +18,7 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 20.12.0\n"
#: identitymanager.cpp:164
#, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kidentitymanagement-21.08.0/po/zh_CN/libkpimidentities5.po
new/kidentitymanagement-21.08.1/po/zh_CN/libkpimidentities5.po
--- old/kidentitymanagement-21.08.0/po/zh_CN/libkpimidentities5.po
2021-08-06 02:22:21.000000000 +0200
+++ new/kidentitymanagement-21.08.1/po/zh_CN/libkpimidentities5.po
2021-08-31 02:36:21.000000000 +0200
@@ -7,7 +7,7 @@
"Project-Id-Version: kdeorg\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2021-04-21 12:50+0000\n"
-"PO-Revision-Date: 2021-07-26 13:49\n"
+"PO-Revision-Date: 2021-08-30 11:45\n"
"Last-Translator: \n"
"Language-Team: Chinese Simplified\n"
"Language: zh_CN\n"