Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kinit for openSUSE:Factory checked 
in at 2021-08-16 10:07:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kinit (Old)
 and      /work/SRC/openSUSE:Factory/.kinit.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kinit"

Mon Aug 16 10:07:54 2021 rev:93 rq:912141 version:5.85.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kinit/kinit.changes      2021-07-16 
00:01:30.597036675 +0200
+++ /work/SRC/openSUSE:Factory/.kinit.new.1899/kinit.changes    2021-08-16 
10:12:03.867064821 +0200
@@ -1,0 +2,11 @@
+Fri Aug  6 12:12:45 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 5.85.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.85.0
+- Changes since 5.84.0:
+  * Fixes crash in KLauncher::idleTimeout() caused by
+    unblockable destruction of IdleSlave objects (kde#426387)
+
+-------------------------------------------------------------------

Old:
----
  kinit-5.84.0.tar.xz
  kinit-5.84.0.tar.xz.sig

New:
----
  kinit-5.85.0.tar.xz
  kinit-5.85.0.tar.xz.sig

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

Other differences:
------------------
++++++ kinit.spec ++++++
--- /var/tmp/diff_new_pack.628dzW/_old  2021-08-16 10:12:04.335064273 +0200
+++ /var/tmp/diff_new_pack.628dzW/_new  2021-08-16 10:12:04.339064268 +0200
@@ -16,14 +16,14 @@
 #
 
 
-%define _tar_path 5.84
+%define _tar_path 5.85
 # 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:           kinit
-Version:        5.84.0
+Version:        5.85.0
 Release:        0
 Summary:        Helper library to speed up start of applications on KDE 
workspaces
 License:        LGPL-2.1-or-later


++++++ kinit-5.84.0.tar.xz -> kinit-5.85.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kinit-5.84.0/CMakeLists.txt 
new/kinit-5.85.0/CMakeLists.txt
--- old/kinit-5.84.0/CMakeLists.txt     2021-07-03 14:13:23.000000000 +0200
+++ new/kinit-5.85.0/CMakeLists.txt     2021-08-06 11:05:50.000000000 +0200
@@ -3,7 +3,7 @@
 project(KInit)
 
 include(FeatureSummary)
-find_package(ECM 5.84.0  NO_MODULE)
+find_package(ECM 5.85.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)
 
@@ -17,8 +17,8 @@
 include(ECMSetupVersion)
 include(ECMQtDeclareLoggingCategory)
 
-set(KF_VERSION "5.84.0") # handled by release scripts
-set(KF_DEP_VERSION "5.84.0") # handled by release scripts
+set(KF_VERSION "5.85.0") # handled by release scripts
+set(KF_DEP_VERSION "5.85.0") # handled by release scripts
 
 ecm_setup_version(${KF_VERSION} VARIABLE_PREFIX KINIT
                         VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kinit_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kinit-5.84.0/po/zh_CN/kinit5.po 
new/kinit-5.85.0/po/zh_CN/kinit5.po
--- old/kinit-5.84.0/po/zh_CN/kinit5.po 2021-07-03 14:13:23.000000000 +0200
+++ new/kinit-5.85.0/po/zh_CN/kinit5.po 2021-08-06 11:05:50.000000000 +0200
@@ -16,7 +16,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-04-11 00:16+0000\n"
-"PO-Revision-Date: 2021-06-20 07:35\n"
+"PO-Revision-Date: 2021-07-26 13:47\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kinit-5.84.0/src/klauncher/klauncher.cpp 
new/kinit-5.85.0/src/klauncher/klauncher.cpp
--- old/kinit-5.84.0/src/klauncher/klauncher.cpp        2021-07-03 
14:13:23.000000000 +0200
+++ new/kinit-5.85.0/src/klauncher/klauncher.cpp        2021-08-06 
11:05:50.000000000 +0200
@@ -1127,7 +1127,7 @@
             keepOneFileSlave = false;
         } else if (slave->age(now) > SLAVE_MAX_IDLE) {
             // killing idle slave
-            delete slave;
+            slave->deleteLater();
         }
     }
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kinit-5.84.0/src/kwrapper/kwrapper_win.cpp 
new/kinit-5.85.0/src/kwrapper/kwrapper_win.cpp
--- old/kinit-5.84.0/src/kwrapper/kwrapper_win.cpp      2021-07-03 
14:13:23.000000000 +0200
+++ new/kinit-5.85.0/src/kwrapper/kwrapper_win.cpp      2021-08-06 
11:05:50.000000000 +0200
@@ -17,7 +17,7 @@
 
 [1] recent kde cmake buildsystem on win32 installs shared libraries
     into lib instead of bin. This requires to have the lib directory
-    in the PATH environment variable too (required for all pathes in KDEDIRS)
+    in the PATH environment variable too (required for all paths in KDEDIRS)
 
  TODO: There is an prelimary concept of setting KDEDIRS environment variable
        from a cache file located on a well known path relative from the 
requested
@@ -49,8 +49,8 @@
 {
     QCoreApplication app(argc, argv);
 
-    QStringList envPath; /// pathes for using in environment of started process
-    QStringList searchPath; /// pathes for using to find executable
+    QStringList envPath; /// paths for using in environment of started process
+    QStringList searchPath; /// paths for using to find executable
     QString exeToStart;
     QString myAppName = QStringLiteral("kwrapper5:");
     QStringList exeParams;
@@ -75,9 +75,9 @@
     QString path = QString::fromLocal8Bit(qgetenv("PATH")).toLower()
         .replace(QLatin1Char('\\'), QLatin1Char('/'));
 
-    /** add pathes from PATH environment
+    /** add paths from PATH environment
         - all to client path environment
-        - pathes not ending with lib to application search path
+        - paths not ending with lib to application search path
     */
     const auto lst = path.split(QLatin1Char(';'));
     for (const QString &a : lst) {
@@ -111,7 +111,7 @@
     }
 
     /**
-      add bin and lib pathes from KDEDIRS
+      add bin and lib paths from KDEDIRS
         - bin/lib to client path environment
         - bin to application search path
     */
@@ -149,7 +149,7 @@
         if (!found) {
             /*
                         f.open(QIODevice::WriteOnly);
-                        // search all pathes one level above for a directory 
share/apps
+                        // search all paths one level above for a directory 
share/apps
                         // write entries into a cache
                         f.write(kdedirs.join(";").toLatin1());
                         f.close();
@@ -210,7 +210,7 @@
             << "and PATH environment\n\t" << 
envPath.join(QStringLiteral("\n\t"));
     }
 
-    // setup client process envirionment
+    // setup client process environment
     QStringList env = QProcess::systemEnvironment();
     env.replaceInStrings(QRegExp(QStringLiteral("^PATH=(.*)"), 
Qt::CaseInsensitive),
         QLatin1String("PATH=") + envPath.join(QLatin1Char(';')));

Reply via email to