Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kded for openSUSE:Factory checked in 
at 2021-06-16 20:33:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kded (Old)
 and      /work/SRC/openSUSE:Factory/.kded.new.32437 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kded"

Wed Jun 16 20:33:49 2021 rev:93 rq:899725 version:5.83.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kded/kded.changes        2021-05-10 
15:36:57.346138722 +0200
+++ /work/SRC/openSUSE:Factory/.kded.new.32437/kded.changes     2021-06-16 
20:35:19.403169579 +0200
@@ -1,0 +2,11 @@
+Sat Jun  5 11:58:41 UTC 2021 - Christophe Giboudeaux <[email protected]>
+
+- Update to 5.83.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.83.0
+- Changes since 5.82.0:
+  * Bump required CMake version to 3.16
+  * Call ki18n_install() unconditionally
+
+-------------------------------------------------------------------

Old:
----
  kded-5.82.0.tar.xz
  kded-5.82.0.tar.xz.sig

New:
----
  kded-5.83.0.tar.xz
  kded-5.83.0.tar.xz.sig

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

Other differences:
------------------
++++++ kded.spec ++++++
--- /var/tmp/diff_new_pack.C26gR5/_old  2021-06-16 20:35:20.315171135 +0200
+++ /var/tmp/diff_new_pack.C26gR5/_new  2021-06-16 20:35:20.319171143 +0200
@@ -16,14 +16,14 @@
 #
 
 
-%define _tar_path 5.82
+%define _tar_path 5.83
 # 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:           kded
-Version:        5.82.0
+Version:        5.83.0
 Release:        0
 Summary:        Central daemon of KDE workspaces
 License:        LGPL-2.1-or-later


++++++ kded-5.82.0.tar.xz -> kded-5.83.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kded-5.82.0/.gitignore new/kded-5.83.0/.gitignore
--- old/kded-5.82.0/.gitignore  2021-05-01 14:31:46.000000000 +0200
+++ new/kded-5.83.0/.gitignore  2021-06-05 11:15:44.000000000 +0200
@@ -25,3 +25,4 @@
 .clangd
 .idea
 /cmake-build*
+.cache
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kded-5.82.0/CMakeLists.txt 
new/kded-5.83.0/CMakeLists.txt
--- old/kded-5.82.0/CMakeLists.txt      2021-05-01 14:31:46.000000000 +0200
+++ new/kded-5.83.0/CMakeLists.txt      2021-06-05 11:15:44.000000000 +0200
@@ -1,11 +1,11 @@
-cmake_minimum_required(VERSION 3.5)
+cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.82.0") # handled by release scripts
-set(KF_DEP_VERSION "5.82.0") # handled by release scripts
+set(KF_VERSION "5.83.0") # handled by release scripts
+set(KF_DEP_VERSION "5.83.0") # handled by release scripts
 project(KDED VERSION ${KF_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.82.0  NO_MODULE)
+find_package(ECM 5.83.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL "https://commits.kde.org/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -43,11 +43,8 @@
 # (given that this framework produces no library)
 add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050f00)
 add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055100)
-add_definitions(-DQT_NO_FOREACH)
 if (KF5DocTools_FOUND)
-    if (IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/po")
-        kdoctools_install(po)
-    endif()
+    kdoctools_install(po)
     add_subdirectory(docs)
 endif()
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kded-5.82.0/src/CMakeLists.txt 
new/kded-5.83.0/src/CMakeLists.txt
--- old/kded-5.82.0/src/CMakeLists.txt  2021-05-01 14:31:46.000000000 +0200
+++ new/kded-5.83.0/src/CMakeLists.txt  2021-06-05 11:15:44.000000000 +0200
@@ -1,4 +1,8 @@
-set(kded_SRCS kded.cpp kdedadaptor.cpp
+add_executable(kded5)
+
+target_sources(kded5 PRIVATE
+    kded.cpp
+    kdedadaptor.cpp
     ${CMAKE_CURRENT_BINARY_DIR}/org.kde.kded5.xml # just so that it gets 
generated
 )
 
@@ -11,7 +15,6 @@
     EXPORT KDED
 )
 
-add_executable(kded5 ${kded_SRCS})
 ecm_mark_nongui_executable(kded5)
 
 target_link_libraries(kded5
@@ -35,7 +38,7 @@
 install(FILES ${CMAKE_CURRENT_BINARY_DIR}/plasma-kded.service
         DESTINATION ${SYSTEMD_USER_UNIT_INSTALL_DIR})
 
-qt5_generate_dbus_interface( kdedadaptor.h org.kde.kded5.xml )
+qt_generate_dbus_interface( kdedadaptor.h org.kde.kded5.xml )
 install(FILES ${CMAKE_CURRENT_BINARY_DIR}/org.kde.kded5.xml DESTINATION 
${KDE_INSTALL_DBUSINTERFACEDIR})
 
 kdbusaddons_generate_dbus_service_file(kded5 org.kde.kded5 
${KDE_INSTALL_FULL_BINDIR})

Reply via email to