Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package elisa for openSUSE:Factory checked in at 2021-08-26 23:15:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/elisa (Old) and /work/SRC/openSUSE:Factory/.elisa.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "elisa" Thu Aug 26 23:15:08 2021 rev:30 rq:914336 version:21.08.0 Changes: -------- --- /work/SRC/openSUSE:Factory/elisa/elisa.changes 2021-08-16 10:14:36.906877469 +0200 +++ /work/SRC/openSUSE:Factory/.elisa.new.1899/elisa.changes 2021-08-26 23:16:19.728197854 +0200 @@ -1,0 +2,7 @@ +Thu Aug 26 06:25:54 UTC 2021 - Antonio Larrosa <alarr...@suse.com> + +- Add patch from upstream to fix a critical regression in the files + view, which was being built without KIO support. + * 0001-Fix-broken-Files-view.patch + +------------------------------------------------------------------- New: ---- 0001-Fix-broken-Files-view.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ elisa.spec ++++++ --- /var/tmp/diff_new_pack.FR1vNS/_old 2021-08-26 23:16:20.152197496 +0200 +++ /var/tmp/diff_new_pack.FR1vNS/_new 2021-08-26 23:16:20.156197492 +0200 @@ -31,6 +31,8 @@ Source1: https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz.sig Source2: applications.keyring %endif +# PATCH-FIX-UPSTREAM +Patch0: 0001-Fix-broken-Files-view.patch BuildRequires: update-desktop-files BuildRequires: cmake(KF5Baloo) >= %{kf5_version} BuildRequires: cmake(KF5Config) >= %{kf5_version} @@ -41,8 +43,8 @@ BuildRequires: cmake(KF5Declarative) >= %{kf5_version} BuildRequires: cmake(KF5DocTools) >= %{kf5_version} BuildRequires: cmake(KF5FileMetaData) >= %{kf5_version} -BuildRequires: cmake(KF5IconThemes) >= %{kf5_version} BuildRequires: cmake(KF5I18n) >= %{kf5_version} +BuildRequires: cmake(KF5IconThemes) >= %{kf5_version} BuildRequires: cmake(KF5KIO) >= %{kf5_version} BuildRequires: cmake(KF5Kirigami2) >= %{kf5_version} BuildRequires: cmake(KF5Package) >= %{kf5_version} ++++++ 0001-Fix-broken-Files-view.patch ++++++ >From 618cf9b589ef9dd58e3ec3dd7450a80f10e118f8 Mon Sep 17 00:00:00 2001 From: Bart De Vries <b...@mogwai.be> Date: Wed, 25 Aug 2021 11:52:11 +0200 Subject: [PATCH] Fix broken "Files" view The viewmanager.cpp/h file is missing an include for config-upnp-qt.h which defines KF5KIO_FOUND. With this macro missing, it isn't building the KIO stuff. BUG 440980 --- src/viewmanager.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/viewmanager.h b/src/viewmanager.h index dfc37db5..0b77d7fc 100644 --- a/src/viewmanager.h +++ b/src/viewmanager.h @@ -9,6 +9,8 @@ #include "elisaLib_export.h" +#include "config-upnp-qt.h" + #include "elisautils.h" #include "datatypes.h" -- GitLab