Hello community,

here is the log from the commit of package frameworkintegration for 
openSUSE:Factory checked in at 2018-12-19 13:38:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/frameworkintegration (Old)
 and      /work/SRC/openSUSE:Factory/.frameworkintegration.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "frameworkintegration"

Wed Dec 19 13:38:43 2018 rev:64 rq:658538 version:5.53.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/frameworkintegration/frameworkintegration.changes    
    2018-11-14 14:31:55.855411342 +0100
+++ 
/work/SRC/openSUSE:Factory/.frameworkintegration.new.28833/frameworkintegration.changes
     2018-12-19 13:39:54.876083976 +0100
@@ -1,0 +2,10 @@
+Sun Dec 09 19:43:42 UTC 2018 - [email protected]
+
+- Update to 5.53.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.53.0.php
+- Changes since 5.52.0:
+  * Add option BUILD_KPACKAGE_INSTALL_HANDLERS to skip building install 
handlers
+
+-------------------------------------------------------------------

Old:
----
  frameworkintegration-5.52.0.tar.xz

New:
----
  frameworkintegration-5.53.0.tar.xz

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

Other differences:
------------------
++++++ frameworkintegration.spec ++++++
--- /var/tmp/diff_new_pack.smcIfT/_old  2018-12-19 13:39:55.412083218 +0100
+++ /var/tmp/diff_new_pack.smcIfT/_new  2018-12-19 13:39:55.412083218 +0100
@@ -17,13 +17,13 @@
 
 
 %define lname   libKF5Style5
-%define _tar_path 5.52
+%define _tar_path 5.53
 # 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}')}
 Name:           frameworkintegration
-Version:        5.52.0
+Version:        5.53.0
 Release:        0
 Summary:        Plugins responsible for better integration of Qt applications 
in KDE Workspace
 License:        LGPL-2.1-or-later

++++++ frameworkintegration-5.52.0.tar.xz -> frameworkintegration-5.53.0.tar.xz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/frameworkintegration-5.52.0/CMakeLists.txt 
new/frameworkintegration-5.53.0/CMakeLists.txt
--- old/frameworkintegration-5.52.0/CMakeLists.txt      2018-11-03 
12:58:29.000000000 +0100
+++ new/frameworkintegration-5.53.0/CMakeLists.txt      2018-12-01 
15:38:00.000000000 +0100
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.52.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.52.0") # handled by release scripts
+set(KF5_VERSION "5.53.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.53.0") # handled by release scripts
 project(FrameworkIntegration VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.52.0  NO_MODULE)
+find_package(ECM 5.53.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)
 
@@ -22,7 +22,7 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
-set(REQUIRED_QT_VERSION 5.8.0)
+set(REQUIRED_QT_VERSION 5.9.0)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED DBus Widgets)
 
 
@@ -35,13 +35,18 @@
 find_package(KF5ConfigWidgets ${KF5_DEP_VERSION} REQUIRED)
 find_package(KF5IconThemes ${KF5_DEP_VERSION} REQUIRED)
 find_package(KF5Notifications ${KF5_DEP_VERSION} REQUIRED)
-find_package(KF5WidgetsAddons ${KF5_DEP_VERSION} REQUIRED)
-find_package(KF5Package ${KF5_DEP_VERSION} REQUIRED)
-find_package(KF5NewStuff ${KF5_DEP_VERSION} REQUIRED)
-find_package(KF5I18n ${KF5_DEP_VERSION} REQUIRED)
 
-find_package(packagekitqt5)
-find_package(AppStreamQt 0.10.4)
+
+option(BUILD_KPACKAGE_INSTALL_HANDLERS "Build the KPackage install handler 
binaries (recommended)" ON)
+if (BUILD_KPACKAGE_INSTALL_HANDLERS)
+   find_package(KF5NewStuff ${KF5_DEP_VERSION} REQUIRED)
+   find_package(KF5WidgetsAddons ${KF5_DEP_VERSION} REQUIRED)
+   find_package(KF5Package ${KF5_DEP_VERSION} REQUIRED)
+   find_package(KF5I18n ${KF5_DEP_VERSION} REQUIRED)
+
+   find_package(packagekitqt5)
+   find_package(AppStreamQt 0.10.4)
+endif()
 
 add_subdirectory(src)
 if (BUILD_TESTING)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.52.0/plasma_workspace.notifyrc 
new/frameworkintegration-5.53.0/plasma_workspace.notifyrc
--- old/frameworkintegration-5.52.0/plasma_workspace.notifyrc   2018-11-03 
12:58:29.000000000 +0100
+++ new/frameworkintegration-5.53.0/plasma_workspace.notifyrc   2018-12-01 
15:38:00.000000000 +0100
@@ -20,7 +20,7 @@
 Comment[he]= סביבת העבודה של Plasma
 Comment[hu]=Plasma munkaterület
 Comment[ia]=Spatio de Labor de Plasma
-Comment[id]=Ruang Kerja Plasma
+Comment[id]=Workspace Plasma
 Comment[it]=Spazio di lavoro Plasma
 Comment[ko]=Plasma 작업 공간
 Comment[lt]=Plasma darbalaukio erdvė
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/frameworkintegration-5.52.0/src/CMakeLists.txt 
new/frameworkintegration-5.53.0/src/CMakeLists.txt
--- old/frameworkintegration-5.52.0/src/CMakeLists.txt  2018-11-03 
12:58:29.000000000 +0100
+++ new/frameworkintegration-5.53.0/src/CMakeLists.txt  2018-12-01 
15:38:00.000000000 +0100
@@ -1,4 +1,6 @@
 add_subdirectory(integrationplugin)
 add_subdirectory(kstyle)
 add_subdirectory(infopage)
-add_subdirectory(kpackage-install-handlers)
+if (BUILD_KPACKAGE_INSTALL_HANDLERS)
+       add_subdirectory(kpackage-install-handlers)
+endif()


Reply via email to