Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package kde-gtk-config5 for openSUSE:Factory
checked in at 2023-03-02 23:02:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kde-gtk-config5 (Old)
and /work/SRC/openSUSE:Factory/.kde-gtk-config5.new.31432 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kde-gtk-config5"
Thu Mar 2 23:02:12 2023 rev:148 rq:1068256 version:5.27.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/kde-gtk-config5/kde-gtk-config5.changes
2023-02-24 18:06:55.472982287 +0100
+++
/work/SRC/openSUSE:Factory/.kde-gtk-config5.new.31432/kde-gtk-config5.changes
2023-03-02 23:02:25.206870259 +0100
@@ -1,0 +2,10 @@
+Tue Feb 28 17:34:15 UTC 2023 - Fabian Vogt <[email protected]>
+
+- Update to 5.27.2
+ * New bugfix release
+ * For more details please see:
+ * https://kde.org/announcements/plasma/5/5.27.2
+- Changes since 5.27.1:
+ * Avoid creating gtkrc-2.0 if it does not exist (kde#415770,kde#417534)
+
+-------------------------------------------------------------------
Old:
----
kde-gtk-config-5.27.1.tar.xz
kde-gtk-config-5.27.1.tar.xz.sig
New:
----
kde-gtk-config-5.27.2.tar.xz
kde-gtk-config-5.27.2.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kde-gtk-config5.spec ++++++
--- /var/tmp/diff_new_pack.QZPZZu/_old 2023-03-02 23:02:25.886873339 +0100
+++ /var/tmp/diff_new_pack.QZPZZu/_new 2023-03-02 23:02:25.894873376 +0100
@@ -18,7 +18,7 @@
%bcond_without released
Name: kde-gtk-config5
-Version: 5.27.1
+Version: 5.27.2
Release: 0
Summary: Daemon for GTK2 and GTK3 Applications Appearance Under KDE
License: GPL-3.0-or-later AND LGPL-3.0-or-later
++++++ kde-gtk-config-5.27.1.tar.xz -> kde-gtk-config-5.27.2.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kde-gtk-config-5.27.1/CMakeLists.txt
new/kde-gtk-config-5.27.2/CMakeLists.txt
--- old/kde-gtk-config-5.27.1/CMakeLists.txt 2023-02-21 12:32:29.000000000
+0100
+++ new/kde-gtk-config-5.27.2/CMakeLists.txt 2023-02-28 13:17:06.000000000
+0100
@@ -1,5 +1,5 @@
project(kde-gtk-config)
-set(PROJECT_VERSION "5.27.1")
+set(PROJECT_VERSION "5.27.2")
cmake_minimum_required(VERSION 3.16)
set(QT_MIN_VERSION "5.15.2")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kde-gtk-config-5.27.1/kded/config_editor/gtk2.cpp
new/kde-gtk-config-5.27.2/kded/config_editor/gtk2.cpp
--- old/kde-gtk-config-5.27.1/kded/config_editor/gtk2.cpp 2023-02-21
12:32:29.000000000 +0100
+++ new/kde-gtk-config-5.27.2/kded/config_editor/gtk2.cpp 2023-02-28
13:17:06.000000000 +0100
@@ -54,6 +54,9 @@
QString gtkrcPath = QDir::homePath() + QStringLiteral("/.gtkrc-2.0");
QFile gtkrc(gtkrcPath);
QString gtkrcContents = Utils::readFileContents(gtkrc);
+ if (gtkrcContents.isNull()) {
+ return;
+ }
// Remove "include" lines
// Example:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kde-gtk-config-5.27.1/kded/config_editor/utils.cpp
new/kde-gtk-config-5.27.2/kded/config_editor/utils.cpp
--- old/kde-gtk-config-5.27.1/kded/config_editor/utils.cpp 2023-02-21
12:32:29.000000000 +0100
+++ new/kde-gtk-config-5.27.2/kded/config_editor/utils.cpp 2023-02-28
13:17:06.000000000 +0100
@@ -16,7 +16,7 @@
QString readFileContents(QFile &file)
{
- if (file.open(QIODevice::ReadWrite | QIODevice::Text)) {
+ if (file.open(QIODevice::ReadOnly | QIODevice::Text)) {
return file.readAll();
} else {
return QString();