Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package korganizer for openSUSE:Factory 
checked in at 2021-02-22 14:22:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/korganizer (Old)
 and      /work/SRC/openSUSE:Factory/.korganizer.new.2378 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "korganizer"

Mon Feb 22 14:22:33 2021 rev:56 rq:872769 version:20.12.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/korganizer/korganizer.changes    2021-02-07 
15:16:18.725533552 +0100
+++ /work/SRC/openSUSE:Factory/.korganizer.new.2378/korganizer.changes  
2021-02-22 14:22:34.827562335 +0100
@@ -1,0 +2,6 @@
+Tue Feb 16 09:27:35 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Add patch to allow creating custom pages:
+  * 0001-Look-for-designer-qt5-on-openSUSE.patch
+
+-------------------------------------------------------------------

New:
----
  0001-Look-for-designer-qt5-on-openSUSE.patch

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

Other differences:
------------------
++++++ korganizer.spec ++++++
--- /var/tmp/diff_new_pack.EePkoS/_old  2021-02-22 14:22:35.423562917 +0100
+++ /var/tmp/diff_new_pack.EePkoS/_new  2021-02-22 14:22:35.427562921 +0100
@@ -28,7 +28,9 @@
 Group:          Productivity/Office/Organizers
 URL:            https://www.kde.org
 Source:         
https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz
-Patch1:         korgac-autostart-default.patch
+Patch0:         korgac-autostart-default.patch
+# PATCH-FIX-OPENSUSE -- use 'designer-qt5' on openSUSE
+Patch1:         0001-Look-for-designer-qt5-on-openSUSE.patch
 BuildRequires:  extra-cmake-modules
 BuildRequires:  update-desktop-files
 BuildRequires:  cmake(KF5Akonadi)
@@ -89,8 +91,7 @@
 %endif
 
 %prep
-%setup -q
-%patch1 -p1
+%autosetup -p1
 
 %build
 %cmake_kf5 -d build

++++++ 0001-Look-for-designer-qt5-on-openSUSE.patch ++++++
>From b2fa08a79a7307c7b0b47277e2d8d3b39ab4e323 Mon Sep 17 00:00:00 2001
From: Christophe Giboudeaux <christo...@krop.fr>
Date: Tue, 16 Feb 2021 10:23:51 +0100
Subject: [PATCH] Look for designer-qt5 on openSUSE

---
 src/kcmdesignerfields.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/kcmdesignerfields.cpp b/src/kcmdesignerfields.cpp
index e01c77e..5bd032d 100644
--- a/src/kcmdesignerfields.cpp
+++ b/src/kcmdesignerfields.cpp
@@ -279,7 +279,7 @@ void KCMDesignerFields::initGUI()
     auto *layout = new QVBoxLayout(this);
     layout->setContentsMargins({});
 
-    bool noDesigner = 
QStandardPaths::findExecutable(QStringLiteral("designer")).isEmpty();
+    bool noDesigner = 
QStandardPaths::findExecutable(QStringLiteral("designer-qt5")).isEmpty();
 
     if (noDesigner) {
         const QString txt
@@ -446,7 +446,7 @@ void KCMDesignerFields::startDesigner()
         args.append(pageItem->path());
     }
 
-    KIO::CommandLauncherJob *job = new 
KIO::CommandLauncherJob(QStringLiteral("designer"), args, this);
+    KIO::CommandLauncherJob *job = new 
KIO::CommandLauncherJob(QStringLiteral("designer-qt5"), args, this);
     job->setUiDelegate(new 
KDialogJobUiDelegate(KJobUiDelegate::AutoHandlingEnabled, this));
     job->start();
 }
-- 
2.30.0

Reply via email to