Hello community,

here is the log from the commit of package kactivities5 for openSUSE:Factory 
checked in at 2017-01-31 11:54:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kactivities5 (Old)
 and      /work/SRC/openSUSE:Factory/.kactivities5.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kactivities5"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kactivities5/kactivities5.changes        
2016-12-17 11:04:25.458246927 +0100
+++ /work/SRC/openSUSE:Factory/.kactivities5.new/kactivities5.changes   
2017-02-03 17:43:46.493119942 +0100
@@ -1,0 +2,7 @@
+Sun Jan  8 23:37:46 UTC 2017 - hrvoje.sen...@gmail.com
+
+- Update to 5.30.0
+  * For more details please see:
+    https://www.kde.org/announcements/kde-frameworks-5.30.0.php
+
+-------------------------------------------------------------------

Old:
----
  kactivities-5.29.0.tar.xz

New:
----
  kactivities-5.30.0.tar.xz

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

Other differences:
------------------
++++++ kactivities5.spec ++++++
--- /var/tmp/diff_new_pack.kZfNmc/_old  2017-02-03 17:43:46.881065031 +0100
+++ /var/tmp/diff_new_pack.kZfNmc/_new  2017-02-03 17:43:46.881065031 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kactivities5
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5Activities5
-%define _tar_path 5.29
+%define _tar_path 5.30
 Name:           kactivities5
-Version:        5.29.0
+Version:        5.30.0
 Release:        0
 %define kf5_version %{version}
 Summary:        KDE Plasma Activities support
@@ -29,7 +29,7 @@
 Source:         
http://download.kde.org/stable/frameworks/%{_tar_path}/kactivities-%{version}.tar.xz
 Source1:        baselibs.conf
 BuildRequires:  boost-devel
-BuildRequires:  cmake >= 2.8.12
+BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem

++++++ kactivities-5.29.0.tar.xz -> kactivities-5.30.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kactivities-5.29.0/CMakeLists.txt 
new/kactivities-5.30.0/CMakeLists.txt
--- old/kactivities-5.29.0/CMakeLists.txt       2016-12-03 11:07:36.000000000 
+0100
+++ new/kactivities-5.30.0/CMakeLists.txt       2017-01-08 16:14:23.000000000 
+0100
@@ -1,8 +1,11 @@
 # vim:set softtabstop=3 shiftwidth=3 tabstop=3 expandtab:
 
-cmake_minimum_required (VERSION 2.8.12)
+cmake_minimum_required(VERSION 3.0)
 
-project (KActivities)
+# KDE Frameworks
+set(KF5_VERSION "5.30.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.30.0") # handled by release scripts
+project (KActivities VERSION ${KF5_VERSION})
 
 option (KACTIVITIES_LIBRARY_ONLY "If true, compiles only the KActivities 
library, without the QML imports." OFF)
 option (KACTIVITIES_ENABLE_EXCEPTIONS "If you have Boost 1.53, you need to 
build KActivities with exceptions enabled. This is UNTESTED and EXPERIMENTAL!" 
OFF)
@@ -36,7 +39,7 @@
 
 # Extra CMake stuff
 include(FeatureSummary)
-find_package(ECM 5.29.0  NO_MODULE)
+find_package(ECM 5.30.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)
 
@@ -52,14 +55,10 @@
 set (CMAKE_AUTOMOC ON)
 find_package (Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED COMPONENTS Core DBus)
 
-# KDE Frameworks
-set(KF5_VERSION "5.29.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.29.0") # handled by release scripts
-
 # Basic includes
 include (CPack)
 
-include (ECMPackageConfigHelpers)
+include (CMakePackageConfigHelpers)
 include (ECMSetupVersion)
 
 message ("We are using the ${CMAKE_CXX_COMPILER_ID} compiler")
@@ -74,7 +73,7 @@
 # libKActivities
 
 ecm_setup_version (
-   ${KF5_VERSION}
+   PROJECT
    VARIABLE_PREFIX KACTIVITIES
    VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/kactivities_version.h"
    PACKAGE_VERSION_FILE 
"${CMAKE_CURRENT_BINARY_DIR}/KF5ActivitiesConfigVersion.cmake"
@@ -90,7 +89,7 @@
    NAMESPACE KF5::
    )
 
-ecm_configure_package_config_file (
+configure_package_config_file (
    "${CMAKE_CURRENT_SOURCE_DIR}/KF5ActivitiesConfig.cmake.in"
    "${CMAKE_CURRENT_BINARY_DIR}/KF5ActivitiesConfig.cmake"
    INSTALL_DESTINATION  ${CMAKECONFIG_INSTALL_DIR}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kactivities-5.29.0/KF5ActivitiesConfig.cmake.in 
new/kactivities-5.30.0/KF5ActivitiesConfig.cmake.in
--- old/kactivities-5.29.0/KF5ActivitiesConfig.cmake.in 2016-12-03 
11:07:36.000000000 +0100
+++ new/kactivities-5.30.0/KF5ActivitiesConfig.cmake.in 2017-01-08 
16:14:23.000000000 +0100
@@ -1,5 +1,6 @@
 @PACKAGE_INIT@
 
+include(CMakeFindDependencyMacro)
 find_dependency(Qt5Core @REQUIRED_QT_VERSION@)
 
 include("${CMAKE_CURRENT_LIST_DIR}/KF5ActivitiesLibraryTargets.cmake")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kactivities-5.29.0/autotests/common/test.h 
new/kactivities-5.30.0/autotests/common/test.h
--- old/kactivities-5.29.0/autotests/common/test.h      2016-12-03 
11:07:36.000000000 +0100
+++ new/kactivities-5.30.0/autotests/common/test.h      2017-01-08 
16:14:23.000000000 +0100
@@ -140,7 +140,7 @@
 // Pretty print
 #include <iostream>
 
-#if defined(Q_NO_DEBUG) or (not defined(Q_OS_LINUX))
+#if defined(Q_NO_DEBUG) || !defined(Q_OS_LINUX)
     #define TEST_CHUNK(Name)
 #else
     inline
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kactivities-5.29.0/metainfo.yaml 
new/kactivities-5.30.0/metainfo.yaml
--- old/kactivities-5.29.0/metainfo.yaml        2016-12-03 11:07:36.000000000 
+0100
+++ new/kactivities-5.30.0/metainfo.yaml        2017-01-08 16:14:23.000000000 
+0100
@@ -4,6 +4,7 @@
 type: solution
 platforms:
     - name: Linux
+    - name: FreeBSD
     - name: Windows
     - name: MacOSX
       note: Needs QtDBus


Reply via email to