Hello community,

here is the log from the commit of package baloo5 for openSUSE:Factory checked 
in at 2019-07-26 12:07:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/baloo5 (Old)
 and      /work/SRC/openSUSE:Factory/.baloo5.new.4126 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "baloo5"

Fri Jul 26 12:07:04 2019 rev:66 rq:715848 version:5.60.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/baloo5/baloo5.changes    2019-06-22 
11:06:54.988088598 +0200
+++ /work/SRC/openSUSE:Factory/.baloo5.new.4126/baloo5.changes  2019-07-26 
12:07:12.534879855 +0200
@@ -1,0 +2,12 @@
+Sun Jul 14 06:41:36 UTC 2019 - [email protected]
+
+- Update to 5.60.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.60.0.php
+- Changes since 5.59.0:
+  * Too many changes to list here
+- Refreshed patches:
+  * 0001-Do-not-use-qfileinfo-metadatachangetime-if-Qt-lt-5.10.patch
+
+-------------------------------------------------------------------

Old:
----
  baloo-5.59.0.tar.xz

New:
----
  baloo-5.60.0.tar.xz

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

Other differences:
------------------
++++++ baloo5.spec ++++++
--- /var/tmp/diff_new_pack.2Vfk0h/_old  2019-07-26 12:07:13.518879700 +0200
+++ /var/tmp/diff_new_pack.2Vfk0h/_new  2019-07-26 12:07:13.522879699 +0200
@@ -16,14 +16,14 @@
 #
 
 
-%define _tar_path 5.59
+%define _tar_path 5.60
 # 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:           baloo5
-Version:        5.59.0
+Version:        5.60.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

++++++ 0001-Do-not-use-qfileinfo-metadatachangetime-if-Qt-lt-5.10.patch ++++++
--- /var/tmp/diff_new_pack.2Vfk0h/_old  2019-07-26 12:07:13.538879696 +0200
+++ /var/tmp/diff_new_pack.2Vfk0h/_new  2019-07-26 12:07:13.538879696 +0200
@@ -12,43 +12,43 @@
 Reverted by Antonio Larrosa <[email protected]> so Qt 5.9 is still
 supported
 
-diff --git a/src/file/modifiedfileindexer.cpp 
b/src/file/modifiedfileindexer.cpp
-index b609b7b..6ac9f82 100644
---- a/src/file/modifiedfileindexer.cpp
-+++ b/src/file/modifiedfileindexer.cpp
-@@ -79,7 +79,11 @@ void ModifiedFileIndexer::run()
-         }
+Index: 
baloo-5.56.0git.20190612T213500~4fcbfee9/src/file/modifiedfileindexer.cpp
+===================================================================
+--- 
baloo-5.56.0git.20190612T213500~4fcbfee9.orig/src/file/modifiedfileindexer.cpp  
   2019-06-14 07:23:40.371658015 +0200
++++ baloo-5.56.0git.20190612T213500~4fcbfee9/src/file/modifiedfileindexer.cpp  
2019-06-14 07:25:35.688925462 +0200
+@@ -71,7 +71,11 @@
  
-         bool mTimeChanged = timeInfo.mTime != 
fileInfo.lastModified().toTime_t();
+         DocumentTimeDB::TimeInfo timeInfo = tr.documentTimeInfo(fileId);
+         bool mTimeChanged = timeInfo.mTime != 
fileInfo.lastModified().toSecsSinceEpoch();
 +#if QT_VERSION >= QT_VERSION_CHECK(5,10,0)
-         bool cTimeChanged = timeInfo.cTime != 
fileInfo.metadataChangeTime().toTime_t();
+         bool cTimeChanged = timeInfo.cTime != 
fileInfo.metadataChangeTime().toSecsSinceEpoch();
 +#else
-+        bool cTimeChanged = timeInfo.cTime != fileInfo.created().toTime_t();
++        bool cTimeChanged = timeInfo.cTime != 
fileInfo.created().toSecsSinceEpoch()
 +#endif
  
          if (!mTimeChanged && !cTimeChanged) {
              continue;
-diff --git a/src/file/unindexedfileiterator.cpp 
b/src/file/unindexedfileiterator.cpp
-index 80f4b49..4417874 100644
---- a/src/file/unindexedfileiterator.cpp
-+++ b/src/file/unindexedfileiterator.cpp
-@@ -114,7 +114,11 @@ bool UnIndexedFileIterator::shouldIndex(const QString& 
filePath, const QString&
-         m_mTimeChanged = true;
-     }
- 
+Index: 
baloo-5.56.0git.20190612T213500~4fcbfee9/src/file/unindexedfileiterator.cpp
+===================================================================
+--- 
baloo-5.56.0git.20190612T213500~4fcbfee9.orig/src/file/unindexedfileiterator.cpp
   2019-06-14 07:23:36.771618450 +0200
++++ 
baloo-5.56.0git.20190612T213500~4fcbfee9/src/file/unindexedfileiterator.cpp     
   2019-06-14 07:23:40.371658015 +0200
+@@ -100,7 +100,11 @@
+         if (timeInfo.mTime != fileInfo.lastModified().toSecsSinceEpoch()) {
+             m_mTimeChanged = true;
+         }
 +#if QT_VERSION >= QT_VERSION_CHECK(5,10,0)
-     auto fileMTime = fileInfo.metadataChangeTime().toTime_t();
+         if (timeInfo.cTime != 
fileInfo.metadataChangeTime().toSecsSinceEpoch()) {
 +#else
-+    auto fileMTime = fileInfo.created().toTime_t();
++        if (timeInfo.cTime != fileInfo.created().toSecsSinceEpoch()) {
 +#endif
-     if (timeInfo.cTime != fileMTime) {
-         m_cTimeChanged = true;
+             m_cTimeChanged = true;
+         }
      }
-diff --git a/src/tools/balooshow/main.cpp b/src/tools/balooshow/main.cpp
-index 78f24de..4419bc1 100644
---- a/src/tools/balooshow/main.cpp
-+++ b/src/tools/balooshow/main.cpp
-@@ -232,7 +232,11 @@ int main(int argc, char* argv[])
+Index: baloo-5.56.0git.20190612T213500~4fcbfee9/src/tools/balooshow/main.cpp
+===================================================================
+--- baloo-5.56.0git.20190612T213500~4fcbfee9.orig/src/tools/balooshow/main.cpp 
2019-06-14 07:23:36.771618450 +0200
++++ baloo-5.56.0git.20190612T213500~4fcbfee9/src/tools/balooshow/main.cpp      
2019-06-14 07:23:40.371658015 +0200
+@@ -269,7 +269,11 @@
                          int propNum = prop.toInt(&ok);
                          QString value = word.mid(posOfNonNumeric + 1);
                          if (!ok) {
@@ -60,6 +60,3 @@
                              stream << errorPrefix.subs(error).toString();
                              continue;
                          }
--- 
-cgit v1.1
-

++++++ baloo-5.59.0.tar.xz -> baloo-5.60.0.tar.xz ++++++
++++ 25609 lines of diff (skipped)


Reply via email to