Hello community,

here is the log from the commit of package kpkpass for openSUSE:Factory checked 
in at 2019-08-16 15:40:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kpkpass (Old)
 and      /work/SRC/openSUSE:Factory/.kpkpass.new.22127 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kpkpass"

Fri Aug 16 15:40:04 2019 rev:13 rq:723699 version:19.08.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kpkpass/kpkpass.changes  2019-07-16 
08:34:25.427391991 +0200
+++ /work/SRC/openSUSE:Factory/.kpkpass.new.22127/kpkpass.changes       
2019-08-16 15:40:07.977795550 +0200
@@ -1,0 +2,30 @@
+Fri Aug  9 08:31:34 UTC 2019 - Christophe Giboudeaux <[email protected]>
+
+- Update to 19.08.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-19.08.0.php
+- No code change since 19.07.90
+
+-------------------------------------------------------------------
+Tue Aug 06 16:50:52 UTC 2019 - [email protected]
+
+- Update to 19.07.90
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-19.08-rc.php
+- No code changes since 19.07.80
+
+-------------------------------------------------------------------
+Tue Jul 23 11:59:08 UTC 2019 - [email protected]
+
+- Update to 19.07.80
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-19.08-beta.php
+- Changes since 19.04.3:
+  * When we use framework 5.59.0 we can use new logging file directory
+  * It was fixed in 5.13.0beta2
+  * Allow to not regenerate xdg mime file (only for dev). It takes some time 
to generate it
+
+-------------------------------------------------------------------

Old:
----
  kpkpass-19.04.3.tar.xz

New:
----
  applications.keyring
  kpkpass-19.08.0.tar.xz
  kpkpass-19.08.0.tar.xz.sig

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

Other differences:
------------------
++++++ kpkpass.spec ++++++
--- /var/tmp/diff_new_pack.H2sA49/_old  2019-08-16 15:40:08.833795301 +0200
+++ /var/tmp/diff_new_pack.H2sA49/_new  2019-08-16 15:40:08.873795290 +0200
@@ -16,14 +16,19 @@
 #
 
 
+%bcond_without lang
 Name:           kpkpass
-Version:        19.04.3
+Version:        19.08.0
 Release:        0
 Summary:        Library to parse Passbook files
 License:        LGPL-2.1-or-later
 Group:          System/GUI/KDE
-URL:            http://www.kde.org
-Source0:        
http://download.kde.org/stable/applications/%{version}/src/%{name}-%{version}.tar.xz
+URL:            https://www.kde.org
+Source:         
https://download.kde.org/stable/applications/%{version}/src/%{name}-%{version}.tar.xz
+%if %{with lang}
+Source1:        
https://download.kde.org/stable/applications/%{version}/src/%{name}-%{version}.tar.xz.sig
+Source2:        applications.keyring
+%endif
 BuildRequires:  extra-cmake-modules >= 1.0.0
 BuildRequires:  karchive-devel
 BuildRequires:  kf5-filesystem

++++++ kpkpass-19.04.3.tar.xz -> kpkpass-19.08.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpkpass-19.04.3/CMakeLists.txt 
new/kpkpass-19.08.0/CMakeLists.txt
--- old/kpkpass-19.04.3/CMakeLists.txt  2019-06-07 07:03:42.000000000 +0200
+++ new/kpkpass-19.08.0/CMakeLists.txt  2019-08-03 11:44:54.000000000 +0200
@@ -1,8 +1,8 @@
 cmake_minimum_required(VERSION 3.5)
-set(PIM_VERSION "5.11.3")
+set(PIM_VERSION "5.12.0")
 project(KPkPass VERSION ${PIM_VERSION})
 
-set(KF5_MIN_VERSION "5.56.0")
+set(KF5_MIN_VERSION "5.60.0")
 
 find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
@@ -22,19 +22,14 @@
     PACKAGE_VERSION_FILE 
"${CMAKE_CURRENT_BINARY_DIR}/KPimPkPassConfigVersion.cmake"
 )
 
-set(QT_REQUIRED_VERSION "5.10.0")
+set(QT_REQUIRED_VERSION "5.11.0")
 
 find_package(Qt5 ${QT_REQUIRED_VERSION} REQUIRED COMPONENTS Test Gui)
 find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS Archive)
 find_package(SharedMimeInfo 1.3 REQUIRED)
+option(NO_REGENERATE_MIME "Don't regenerate mime file (only for developper)" 
FALSE )
 
-
-# workaround for https://bugreports.qt.io/browse/QTBUG-74665 (bug in qt5.13 
reevaluate it)
-if (${Qt5Core_VERSION} STRGREATER "5.13")
-   MESSAGE(STATUS "Qt version: ${Qt5Core_VERSION} DISABLE compile without 
deprecated methods. bug QTBUG-74665")
-else()
-   add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000)
-endif()
+add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000)
 add_definitions(-DQT_NO_FOREACH)
 
 
@@ -63,4 +58,4 @@
         FILE KPimPkPassTargets.cmake
         NAMESPACE KPim::
 )
-install(FILES org_kde_kpkpass.categories DESTINATION ${KDE_INSTALL_CONFDIR})
+install(FILES org_kde_kpkpass.categories  DESTINATION  
${KDE_INSTALL_LOGGINGCATEGORIESDIR})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpkpass-19.04.3/src/CMakeLists.txt 
new/kpkpass-19.08.0/src/CMakeLists.txt
--- old/kpkpass-19.04.3/src/CMakeLists.txt      2019-06-07 07:03:42.000000000 
+0200
+++ new/kpkpass-19.08.0/src/CMakeLists.txt      2019-08-03 11:44:54.000000000 
+0200
@@ -47,5 +47,7 @@
 
 if (NOT ANDROID)
     install(FILES application-vnd-apple-pkpass.xml DESTINATION 
${XDG_MIME_INSTALL_DIR})
-    update_xdg_mimetypes(${XDG_MIME_INSTALL_DIR})
+    if (NOT NO_REGENERATE_MIME)
+       update_xdg_mimetypes(${XDG_MIME_INSTALL_DIR})
+    endif()
 endif()


Reply via email to