Hello community,

here is the log from the commit of package karchive for openSUSE:Factory 
checked in at 2019-09-23 12:20:58
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/karchive (Old)
 and      /work/SRC/openSUSE:Factory/.karchive.new.7948 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "karchive"

Mon Sep 23 12:20:58 2019 rev:70 rq:730906 version:5.62.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/karchive/karchive.changes        2019-08-19 
21:03:41.564908274 +0200
+++ /work/SRC/openSUSE:Factory/.karchive.new.7948/karchive.changes      
2019-09-23 12:21:41.817764685 +0200
@@ -1,0 +2,10 @@
+Sat Sep  7 20:36:29 UTC 2019 - Christophe Giboudeaux <[email protected]>
+
+- Update to 5.62.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.62.0.php
+- Changes since 5.61.0:
+  * Fix creating archives on Android content: URLs
+
+-------------------------------------------------------------------

Old:
----
  karchive-5.61.0.tar.xz
  karchive-5.61.0.tar.xz.sig

New:
----
  karchive-5.62.0.tar.xz
  karchive-5.62.0.tar.xz.sig

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

Other differences:
------------------
++++++ karchive.spec ++++++
--- /var/tmp/diff_new_pack.7vThRz/_old  2019-09-23 12:21:42.257764613 +0200
+++ /var/tmp/diff_new_pack.7vThRz/_new  2019-09-23 12:21:42.261764612 +0200
@@ -17,7 +17,7 @@
 
 
 %define lname   libKF5Archive5
-%define _tar_path 5.61
+%define _tar_path 5.62
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -25,7 +25,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:           karchive
-Version:        5.61.0
+Version:        5.62.0
 Release:        0
 Summary:        Qt 5 addon providing access to numerous types of archives
 License:        LGPL-2.1-or-later


++++++ karchive-5.61.0.tar.xz -> karchive-5.62.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/karchive-5.61.0/CMakeLists.txt 
new/karchive-5.62.0/CMakeLists.txt
--- old/karchive-5.61.0/CMakeLists.txt  2019-08-03 21:30:51.000000000 +0200
+++ new/karchive-5.62.0/CMakeLists.txt  2019-09-07 14:32:34.000000000 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.61.0") # handled by release scripts
+set(KF5_VERSION "5.62.0") # handled by release scripts
 project(KArchive VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.61.0  NO_MODULE)
+find_package(ECM 5.62.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/karchive-5.61.0/src/karchive.cpp 
new/karchive-5.62.0/src/karchive.cpp
--- old/karchive-5.61.0/src/karchive.cpp        2019-08-03 21:30:51.000000000 
+0200
+++ new/karchive-5.62.0/src/karchive.cpp        2019-09-07 14:32:34.000000000 
+0200
@@ -186,6 +186,12 @@
             // The use of QSaveFile can't be done in the ctor (no mode known 
yet)
             //qCDebug(KArchiveLog) << "Writing to a file using QSaveFile";
             d->saveFile = new QSaveFile(d->fileName);
+#ifdef Q_OS_ANDROID
+            // we cannot rename on to Android content: URLs
+            if (d->fileName.startsWith(QLatin1String("content://"))) {
+                d->saveFile->setDirectWriteFallback(true);
+            }
+#endif
             if (!d->saveFile->open(QIODevice::WriteOnly)) {
                 setErrorString(
                     tr("QSaveFile creation for %1 failed: %2")


Reply via email to