Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package baloo5 for openSUSE:Factory checked 
in at 2022-03-14 19:34:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/baloo5 (Old)
 and      /work/SRC/openSUSE:Factory/.baloo5.new.25692 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "baloo5"

Mon Mar 14 19:34:04 2022 rev:100 rq:961214 version:5.92.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/baloo5/baloo5.changes    2022-03-11 
11:40:27.758553548 +0100
+++ /work/SRC/openSUSE:Factory/.baloo5.new.25692/baloo5.changes 2022-03-14 
19:34:06.425913497 +0100
@@ -1,0 +2,10 @@
+Mon Mar  7 22:57:35 UTC 2022 - Christophe Giboudeaux <[email protected]>
+
+- Update to 5.92.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.92.0
+- Changes since 5.91.0:
+  * Use libc rename() calls rather than QFile to simulate renames
+
+-------------------------------------------------------------------

Old:
----
  baloo-5.91.0.tar.xz
  baloo-5.91.0.tar.xz.sig

New:
----
  baloo-5.92.0.tar.xz
  baloo-5.92.0.tar.xz.sig

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

Other differences:
------------------
++++++ baloo5.spec ++++++
--- /var/tmp/diff_new_pack.RzZ2ku/_old  2022-03-14 19:34:07.017914207 +0100
+++ /var/tmp/diff_new_pack.RzZ2ku/_new  2022-03-14 19:34:07.021914211 +0100
@@ -16,14 +16,14 @@
 #
 
 
-%define _tar_path 5.91
+%define _tar_path 5.92
 # 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 released
 Name:           baloo5
-Version:        5.91.0
+Version:        5.92.0
 Release:        0
 Summary:        Framework for searching and managing metadata
 License:        GPL-2.0-or-later AND LGPL-2.1-or-later AND LGPL-3.0-only

++++++ baloo-5.91.0.tar.xz -> baloo-5.92.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.91.0/CMakeLists.txt 
new/baloo-5.92.0/CMakeLists.txt
--- old/baloo-5.91.0/CMakeLists.txt     2022-02-05 22:17:22.000000000 +0100
+++ new/baloo-5.92.0/CMakeLists.txt     2022-03-05 13:54:37.000000000 +0100
@@ -1,8 +1,8 @@
 # set minimum version requirements
 cmake_minimum_required(VERSION 3.16)
 set(REQUIRED_QT_VERSION 5.15.2)
-set(KF_VERSION "5.91.0") # handled by release scripts
-set(KF_DEP_VERSION "5.91.0") # handled by release scripts
+set(KF_VERSION "5.92.0") # handled by release scripts
+set(KF_DEP_VERSION "5.92.0") # handled by release scripts
 
 # set up project
 project(Baloo VERSION ${KF_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.91.0/autotests/unit/file/kinotifytest.cpp 
new/baloo-5.92.0/autotests/unit/file/kinotifytest.cpp
--- old/baloo-5.91.0/autotests/unit/file/kinotifytest.cpp       2022-02-05 
22:17:22.000000000 +0100
+++ new/baloo-5.92.0/autotests/unit/file/kinotifytest.cpp       2022-03-05 
13:54:37.000000000 +0100
@@ -16,6 +16,8 @@
 #include <QDir>
 #include <QTest>
 
+#include <stdio.h>
+
 class KInotifyTest : public QObject
 {
     Q_OBJECT
@@ -150,7 +152,7 @@
 
     // actually move the file
     const QString f2(QStringLiteral("%1/randomJunk2").arg(dir.path()));
-    QFile::rename(f1, f2);
+    rename(f1.toLocal8Bit().constData(), f2.toLocal8Bit().constData());
 
     // check the desired signal
     QVERIFY(spy.wait());
@@ -161,7 +163,7 @@
 
     // test a subsequent rename
     const QString f3(QStringLiteral("%1/randomJunk3").arg(dir.path()));
-    QFile::rename(f2, f3);
+    rename(f2.toLocal8Bit().constData(), f3.toLocal8Bit().constData());
 
     // check the desired signal
     QVERIFY(spy.wait());
@@ -187,7 +189,7 @@
 
     // actually move the file
     const QString f2(QStringLiteral("%1/randomJunk2").arg(dir.path()));
-    QFile::rename(f1, f2);
+    rename(f1.toLocal8Bit().constData(), f2.toLocal8Bit().constData());
 
     // check the desired signal
     QVERIFY(spy.wait());
@@ -226,7 +228,7 @@
     QSignalSpy spy(&kn, SIGNAL(moved(QString,QString)));
 
     // actually move the file
-    QFile::rename(src, dest);
+    rename(src.toLocal8Bit().constData(), dest.toLocal8Bit().constData());
 
     // check the desired signal
     QVERIFY(spy.wait());
@@ -237,7 +239,7 @@
 
     // test a subsequent move (back to the original folder)
     const QString dest2(QStringLiteral("%1/randomJunk3").arg(dir1.path()));
-    QFile::rename(dest, dest2);
+    rename(dest.toLocal8Bit().constData(), dest2.toLocal8Bit().constData());
 
     // check the desired signal
     QVERIFY(spy.wait());
@@ -263,7 +265,7 @@
 
     // actually rename the folder
     const QString d2(QStringLiteral("%1/randomJunk2/").arg(dir.path()));
-    QFile::rename(d1, d2);
+    rename(d1.toLocal8Bit().constData(), d2.toLocal8Bit().constData());
 
     // check the desired signal
     QVERIFY(spy.wait());
@@ -278,7 +280,7 @@
 
     // test a subsequent rename
     const QString d3(QStringLiteral("%1/randomJunk3/").arg(dir.path()));
-    QFile::rename(d2, d3);
+    rename(d2.toLocal8Bit().constData(), d3.toLocal8Bit().constData());
 
     // check the desired signal
     QVERIFY(spy.wait());
@@ -326,7 +328,7 @@
     QSignalSpy spy(&kn, SIGNAL(moved(QString,QString)));
 
     // actually move the file
-    QFile::rename(src, dest);
+    rename(src.toLocal8Bit().constData(), dest.toLocal8Bit().constData());
 
     // check the desired signal
     QVERIFY(spy.wait());
@@ -341,7 +343,7 @@
 
     // test a subsequent move
     const QString dest2(QStringLiteral("%1/randomJunk3/").arg(dir1.path()));
-    QFile::rename(dest, dest2);
+    rename(dest.toLocal8Bit().constData(), dest2.toLocal8Bit().constData());
 
     // check the desired signal
     QVERIFY(spy.wait());
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.91.0/po/cs/kio5_timeline.po 
new/baloo-5.92.0/po/cs/kio5_timeline.po
--- old/baloo-5.91.0/po/cs/kio5_timeline.po     2022-02-05 22:17:22.000000000 
+0100
+++ new/baloo-5.92.0/po/cs/kio5_timeline.po     2022-03-05 13:54:37.000000000 
+0100
@@ -1,21 +1,22 @@
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
 # V??t Pel????k <[email protected]>, 2011, 2017, 2020.
+# Vit Pelcak <[email protected]>, 2022.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-08-19 00:13+0000\n"
-"PO-Revision-Date: 2020-05-18 20:56+0200\n"
-"Last-Translator: Vit Pelcak <[email protected]>\n"
+"PO-Revision-Date: 2022-03-04 10:54+0100\n"
+"Last-Translator: Vit Pelcak <[email protected]>\n"
 "Language-Team: Czech <[email protected]>\n"
 "Language: cs\n"
 "MIME-Version: 1.0\n"
 "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 20.04.0\n"
+"X-Generator: Lokalize 21.12.2\n"
 
 #: kio_timeline.cpp:77
 #, kde-format
@@ -25,7 +26,7 @@
 "ask [email protected] if you have problems understanding how to translate "
 "this"
 msgid "MMMM yyyy"
-msgstr "MMMM rrrr"
+msgstr "MMMM yyyy"
 
 #: kio_timeline.cpp:118
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.91.0/po/sk/balooengine5.po 
new/baloo-5.92.0/po/sk/balooengine5.po
--- old/baloo-5.91.0/po/sk/balooengine5.po      2022-02-05 22:17:22.000000000 
+0100
+++ new/baloo-5.92.0/po/sk/balooengine5.po      2022-03-05 13:54:37.000000000 
+0100
@@ -1,19 +1,20 @@
 # translation of balooengine5.po to Slovak
 # Roman Paholik <[email protected]>, 2018.
 # Mthw <[email protected]>, 2019.
+# Matej Mrenica <[email protected]>, 2022.
 msgid ""
 msgstr ""
 "Project-Id-Version: balooengine5\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-04-16 00:16+0000\n"
-"PO-Revision-Date: 2019-01-28 12:42+0100\n"
-"Last-Translator: Mthw <[email protected]>\n"
-"Language-Team: Slovak <[email protected]>\n"
+"PO-Revision-Date: 2022-02-14 19:32+0100\n"
+"Last-Translator: Matej Mrenica <[email protected]>\n"
+"Language-Team: Slovak <[email protected]>\n"
 "Language: sk\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 18.12.1\n"
+"X-Generator: Lokalize 21.12.2\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
 #: experimental/databasesanitizer.cpp:262
@@ -50,64 +51,64 @@
 #: indexerstate.cpp:14
 #, kde-format
 msgid "Unknown"
-msgstr ""
+msgstr "Nezn??me"
 
 #: indexerstate.cpp:17
 #, kde-format
 msgid "Idle"
-msgstr ""
+msgstr "Ne??inn??"
 
 #: indexerstate.cpp:20
 #, kde-format
 msgid "Suspended"
-msgstr ""
+msgstr "Pozastaven??"
 
 #: indexerstate.cpp:23
 #, kde-format
 msgid "Initial Indexing"
-msgstr ""
+msgstr "Po??iato??n?? indexovanie"
 
 #: indexerstate.cpp:26
 #, kde-format
 msgid "Indexing new files"
-msgstr ""
+msgstr "Indexovanie nov??ch s??borov"
 
 #: indexerstate.cpp:29
 #, kde-format
 msgid "Indexing modified files"
-msgstr ""
+msgstr "Indexovanie zmenen??ch s??borov"
 
 #: indexerstate.cpp:32
 #, kde-format
 msgid "Indexing Extended Attributes"
-msgstr ""
+msgstr "Indexovanie roz????ren??ch atrib??tov"
 
 #: indexerstate.cpp:35
 #, kde-format
 msgid "Indexing file content"
-msgstr ""
+msgstr "Indexovanie obsahu s??borov"
 
 #: indexerstate.cpp:38
 #, kde-format
 msgid "Checking for unindexed files"
-msgstr ""
+msgstr "Kontrolovanie neindexovan??ch s??borov"
 
 #: indexerstate.cpp:41
 #, kde-format
 msgid "Checking for stale index entries"
-msgstr ""
+msgstr "Kontrola zastaran??ch polo??iek indexu"
 
 #: indexerstate.cpp:44
 #, kde-format
 msgid "Idle (Powersave)"
-msgstr ""
+msgstr "Ne??inn?? (??spora bat??rie)"
 
 #: indexerstate.cpp:47
 #, kde-format
 msgid "Not Running"
-msgstr ""
+msgstr "Nebe????"
 
 #: indexerstate.cpp:50
 #, kde-format
 msgid "Starting"
-msgstr ""
+msgstr "Sp??????a sa"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.91.0/po/sk/baloosearch5.po 
new/baloo-5.92.0/po/sk/baloosearch5.po
--- old/baloo-5.91.0/po/sk/baloosearch5.po      2022-02-05 22:17:22.000000000 
+0100
+++ new/baloo-5.92.0/po/sk/baloosearch5.po      2022-03-05 13:54:37.000000000 
+0100
@@ -1,20 +1,20 @@
 # translation of baloosearch.po to Slovak
 # Roman Paholik <[email protected]>, 2013, 2015.
 # Mthw <[email protected]>, 2019.
-# Matej Mrenica <[email protected]>, 2020.
+# Matej Mrenica <[email protected]>, 2020, 2022.
 msgid ""
 msgstr ""
 "Project-Id-Version: baloosearch\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-08-19 00:13+0000\n"
-"PO-Revision-Date: 2020-04-11 10:54+0200\n"
+"PO-Revision-Date: 2022-02-14 13:57+0100\n"
 "Last-Translator: Matej Mrenica <[email protected]>\n"
 "Language-Team: Slovak <[email protected]>\n"
 "Language: sk\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 20.03.90\n"
+"X-Generator: Lokalize 21.12.2\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
 #, kde-format
@@ -85,7 +85,7 @@
 #: main.cpp:49
 #, kde-format
 msgid "Show document IDs"
-msgstr ""
+msgstr "Zobrazi?? ID dokumentov"
 
 #: main.cpp:50
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.91.0/po/zh_CN/balooctl5.po 
new/baloo-5.92.0/po/zh_CN/balooctl5.po
--- old/baloo-5.91.0/po/zh_CN/balooctl5.po      2022-02-05 22:17:22.000000000 
+0100
+++ new/baloo-5.92.0/po/zh_CN/balooctl5.po      2022-03-05 13:54:37.000000000 
+0100
@@ -10,7 +10,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-19 00:15+0000\n"
-"PO-Revision-Date: 2022-01-08 15:22\n"
+"PO-Revision-Date: 2022-02-26 05:16\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.91.0/po/zh_CN/baloodb5.po 
new/baloo-5.92.0/po/zh_CN/baloodb5.po
--- old/baloo-5.91.0/po/zh_CN/baloodb5.po       2022-02-05 22:17:22.000000000 
+0100
+++ new/baloo-5.92.0/po/zh_CN/baloodb5.po       2022-03-05 13:54:37.000000000 
+0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2020-08-03 02:05+0200\n"
-"PO-Revision-Date: 2022-01-08 15:22\n"
+"PO-Revision-Date: 2022-02-26 05:16\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.91.0/po/zh_CN/balooengine5.po 
new/baloo-5.92.0/po/zh_CN/balooengine5.po
--- old/baloo-5.91.0/po/zh_CN/balooengine5.po   2022-02-05 22:17:22.000000000 
+0100
+++ new/baloo-5.92.0/po/zh_CN/balooengine5.po   2022-03-05 13:54:37.000000000 
+0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-04-16 00:16+0000\n"
-"PO-Revision-Date: 2022-01-08 15:22\n"
+"PO-Revision-Date: 2022-02-26 05:16\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
@@ -111,7 +111,7 @@
 #: indexerstate.cpp:47
 #, kde-format
 msgid "Not Running"
-msgstr "?????????"
+msgstr "??????????????????"
 
 #: indexerstate.cpp:50
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.91.0/po/zh_CN/baloosearch5.po 
new/baloo-5.92.0/po/zh_CN/baloosearch5.po
--- old/baloo-5.91.0/po/zh_CN/baloosearch5.po   2022-02-05 22:17:22.000000000 
+0100
+++ new/baloo-5.92.0/po/zh_CN/baloosearch5.po   2022-03-05 13:54:37.000000000 
+0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-08-19 00:13+0000\n"
-"PO-Revision-Date: 2022-01-08 15:22\n"
+"PO-Revision-Date: 2022-02-26 05:16\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.91.0/po/zh_CN/balooshow5.po 
new/baloo-5.92.0/po/zh_CN/balooshow5.po
--- old/baloo-5.91.0/po/zh_CN/balooshow5.po     2022-02-05 22:17:22.000000000 
+0100
+++ new/baloo-5.92.0/po/zh_CN/balooshow5.po     2022-03-05 13:54:37.000000000 
+0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-02-02 00:41+0000\n"
-"PO-Revision-Date: 2022-01-08 15:22\n"
+"PO-Revision-Date: 2022-02-26 05:16\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.91.0/po/zh_CN/kio5_baloosearch.po 
new/baloo-5.92.0/po/zh_CN/kio5_baloosearch.po
--- old/baloo-5.91.0/po/zh_CN/kio5_baloosearch.po       2022-02-05 
22:17:22.000000000 +0100
+++ new/baloo-5.92.0/po/zh_CN/kio5_baloosearch.po       2022-03-05 
13:54:37.000000000 +0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-06-05 00:13+0000\n"
-"PO-Revision-Date: 2022-01-08 15:22\n"
+"PO-Revision-Date: 2022-02-26 05:16\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.91.0/po/zh_CN/kio5_tags.po 
new/baloo-5.92.0/po/zh_CN/kio5_tags.po
--- old/baloo-5.91.0/po/zh_CN/kio5_tags.po      2022-02-05 22:17:22.000000000 
+0100
+++ new/baloo-5.92.0/po/zh_CN/kio5_tags.po      2022-03-05 13:54:37.000000000 
+0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-12-21 00:39+0000\n"
-"PO-Revision-Date: 2022-01-08 15:22\n"
+"PO-Revision-Date: 2022-02-26 05:16\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.91.0/po/zh_CN/kio5_timeline.po 
new/baloo-5.92.0/po/zh_CN/kio5_timeline.po
--- old/baloo-5.91.0/po/zh_CN/kio5_timeline.po  2022-02-05 22:17:22.000000000 
+0100
+++ new/baloo-5.92.0/po/zh_CN/kio5_timeline.po  2022-03-05 13:54:37.000000000 
+0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-08-19 00:13+0000\n"
-"PO-Revision-Date: 2022-01-08 15:22\n"
+"PO-Revision-Date: 2022-02-26 05:16\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"

Reply via email to