Hello community,

here is the log from the commit of package kded for openSUSE:Factory checked in 
at 2020-10-12 13:54:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kded (Old)
 and      /work/SRC/openSUSE:Factory/.kded.new.3486 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kded"

Mon Oct 12 13:54:23 2020 rev:85 rq:840810 version:5.75.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kded/kded.changes        2020-09-18 
14:39:50.735919080 +0200
+++ /work/SRC/openSUSE:Factory/.kded.new.3486/kded.changes      2020-10-12 
13:55:49.626128917 +0200
@@ -1,0 +2,10 @@
+Mon Oct  5 08:33:05 UTC 2020 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 5.75.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.75.0
+- Changes since 5.74.0:
+  * Compile without deprecated method against qt5.15
+
+-------------------------------------------------------------------

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

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

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

Other differences:
------------------
++++++ kded.spec ++++++
--- /var/tmp/diff_new_pack.kHSP1P/_old  2020-10-12 13:55:50.210129154 +0200
+++ /var/tmp/diff_new_pack.kHSP1P/_new  2020-10-12 13:55:50.214129157 +0200
@@ -16,14 +16,14 @@
 #
 
 
-%define _tar_path 5.74
+%define _tar_path 5.75
 # 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.74.0
+Version:        5.75.0
 Release:        0
 Summary:        Central daemon of KDE workspaces
 License:        LGPL-2.1-or-later


++++++ kded-5.74.0.tar.xz -> kded-5.75.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kded-5.74.0/CMakeLists.txt 
new/kded-5.75.0/CMakeLists.txt
--- old/kded-5.74.0/CMakeLists.txt      2020-09-06 12:20:23.000000000 +0200
+++ new/kded-5.75.0/CMakeLists.txt      2020-10-04 20:42:17.000000000 +0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.74.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.74.0") # handled by release scripts
+set(KF5_VERSION "5.75.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.75.0") # handled by release scripts
 project(KDED VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.74.0  NO_MODULE)
+find_package(ECM 5.75.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kded-5.74.0/org.kde.kded5.desktop 
new/kded-5.75.0/org.kde.kded5.desktop
--- old/kded-5.74.0/org.kde.kded5.desktop       2020-09-06 12:20:23.000000000 
+0200
+++ new/kded-5.75.0/org.kde.kded5.desktop       2020-10-04 20:42:17.000000000 
+0200
@@ -2,12 +2,25 @@
 #This .desktop file is never shown in a menu, hence no Exec
 #it's here mostly so wayland can get an icon on popups
 Name=KDED
+Name[az]=KDED
 Name[ca]=KDED
+Name[de]=KDED
+Name[el]=KDED
+Name[en_GB]=KDED
 Name[es]=KDED
+Name[fr]=KDED
+Name[it]=KDED
 Name[ko]=KDED
+Name[nl]=KDED
+Name[nn]=KDED
 Name[pt]=KDED
+Name[pt_BR]=KDED
+Name[ro]=KDED
+Name[sk]=KDED
+Name[sl]=KDED
 Name[sv]=KDED
 Name[uk]=KDED
+Name[vi]=KDED
 Name[x-test]=xxKDEDxx
 Type=Service
 Icon=kde-frameworks
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kded-5.74.0/src/kded.cpp new/kded-5.75.0/src/kded.cpp
--- old/kded-5.74.0/src/kded.cpp        2020-09-06 12:20:23.000000000 +0200
+++ new/kded-5.75.0/src/kded.cpp        2020-10-04 20:42:17.000000000 +0200
@@ -56,7 +56,7 @@
 static void runKonfUpdate()
 {
     QProcess kconfUpdate;
-    kconfUpdate.start(QStringLiteral(KCONF_UPDATE_EXE));
+    kconfUpdate.start(QStringLiteral(KCONF_UPDATE_EXE), QStringList());
     kconfUpdate.waitForFinished();
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kded-5.74.0/src/kdedmodule.desktop 
new/kded-5.75.0/src/kdedmodule.desktop
--- old/kded-5.74.0/src/kdedmodule.desktop      2020-09-06 12:20:23.000000000 
+0200
+++ new/kded-5.75.0/src/kdedmodule.desktop      2020-10-04 20:42:17.000000000 
+0200
@@ -92,7 +92,7 @@
 Comment[uk]=Модуль KDED
 Comment[uz]=KDED moduli
 Comment[uz@cyrillic]=KDED модули
-Comment[vi]=Mô-đun KDED
+Comment[vi]=Khối KDED
 Comment[wa]=Module po KDED
 Comment[xh]=KDED Isichatshulwa
 Comment[x-test]=xxKDED Modulexx


Reply via email to