Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package messagelib for openSUSE:Factory 
checked in at 2021-02-07 15:16:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/messagelib (Old)
 and      /work/SRC/openSUSE:Factory/.messagelib.new.28504 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "messagelib"

Sun Feb  7 15:16:13 2021 rev:68 rq:869444 version:20.12.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/messagelib/messagelib.changes    2021-01-08 
17:38:02.832727078 +0100
+++ /work/SRC/openSUSE:Factory/.messagelib.new.28504/messagelib.changes 
2021-02-07 15:17:12.757591325 +0100
@@ -1,0 +2,13 @@
+Wed Feb  3 08:30:05 UTC 2021 - Christophe Giboudeaux <[email protected]>
+
+- Update to 20.12.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2021-02-apps-update
+- Changes since 20.12.1:
+  * Connect before calling code
+- Add upstream patches:
+  * 0001-Fix-Bug-431218-mail-viewer-loads-external-fonts-even.patch
+  * 0002-Exclude-loading-stylesheet.patch
+
+-------------------------------------------------------------------

Old:
----
  messagelib-20.12.1.tar.xz
  messagelib-20.12.1.tar.xz.sig

New:
----
  0001-Fix-Bug-431218-mail-viewer-loads-external-fonts-even.patch
  0002-Exclude-loading-stylesheet.patch
  messagelib-20.12.2.tar.xz
  messagelib-20.12.2.tar.xz.sig

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

Other differences:
------------------
++++++ messagelib.spec ++++++
--- /var/tmp/diff_new_pack.PJ6LLU/_old  2021-02-07 15:17:13.669592300 +0100
+++ /var/tmp/diff_new_pack.PJ6LLU/_new  2021-02-07 15:17:13.677592308 +0100
@@ -21,13 +21,17 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:           messagelib
-Version:        20.12.1
+Version:        20.12.2
 Release:        0
 Summary:        KDE PIM library for e-mail message parsing and display
 License:        GPL-2.0-only AND GPL-3.0-only AND LGPL-2.1-or-later
 Group:          System/Libraries
 URL:            https://www.kde.org
 Source:         
https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM
+Patch0:         0001-Fix-Bug-431218-mail-viewer-loads-external-fonts-even.patch
+# PATCH-FIX-UPSTREAM
+Patch1:         0002-Exclude-loading-stylesheet.patch
 BuildRequires:  extra-cmake-modules
 BuildRequires:  kf5-filesystem
 BuildRequires:  libQt5Sql-private-headers-devel
@@ -111,7 +115,7 @@
 %autosetup -p1
 
 %build
-%cmake_kf5 -d build -- -DMESSAGEVIEWER_USE_QTWEBENGINE=TRUE 
-DQTWEBENGINE_SUPPORT_OPTION=TRUE
+%cmake_kf5 -d build
 %cmake_build
 
 %install

++++++ 0001-Fix-Bug-431218-mail-viewer-loads-external-fonts-even.patch ++++++
>From f8557851f5e43f991aaeecd5bcbb9597d65b2005 Mon Sep 17 00:00:00 2001
From: Laurent Montel <[email protected]>
Date: Wed, 3 Feb 2021 07:36:08 +0100
Subject: [PATCH 1/2] Fix Bug 431218 - mail viewer loads external fonts even
 with external refs disabled

BUG: 431218
FIXED-IN: 5.16.3
---
 .../loadexternalreferencesurlinterceptor.cpp                    | 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/messageviewer/src/viewer/webengine/loadexternalreferencesurlinterceptor/loadexternalreferencesurlinterceptor.cpp
 
b/messageviewer/src/viewer/webengine/loadexternalreferencesurlinterceptor/loadexternalreferencesurlinterceptor.cpp
index 1eca13729c..a7a49fcb6c 100644
--- 
a/messageviewer/src/viewer/webengine/loadexternalreferencesurlinterceptor/loadexternalreferencesurlinterceptor.cpp
+++ 
b/messageviewer/src/viewer/webengine/loadexternalreferencesurlinterceptor/loadexternalreferencesurlinterceptor.cpp
@@ -33,6 +33,8 @@ bool 
LoadExternalReferencesUrlInterceptor::interceptRequest(QWebEngineUrlRequest
             && !info.requestUrl().isLocalFile()
             && (scheme != QLatin1String("cid"))) {
             return true;
+        } else if (info.resourceType() == 
QWebEngineUrlRequestInfo::ResourceTypeFontResource) {
+            return true;
         }
     }
     return false;
-- 
2.30.0

++++++ 0002-Exclude-loading-stylesheet.patch ++++++
>From d5f4154db7c492de3f4cfa6105f7d5be949da308 Mon Sep 17 00:00:00 2001
From: Laurent Montel <[email protected]>
Date: Wed, 3 Feb 2021 13:29:27 +0100
Subject: [PATCH 2/2] Exclude loading stylesheet

---
 .../loadexternalreferencesurlinterceptor.cpp                    | 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/messageviewer/src/viewer/webengine/loadexternalreferencesurlinterceptor/loadexternalreferencesurlinterceptor.cpp
 
b/messageviewer/src/viewer/webengine/loadexternalreferencesurlinterceptor/loadexternalreferencesurlinterceptor.cpp
index a7a49fcb6c..2aa69c3c21 100644
--- 
a/messageviewer/src/viewer/webengine/loadexternalreferencesurlinterceptor/loadexternalreferencesurlinterceptor.cpp
+++ 
b/messageviewer/src/viewer/webengine/loadexternalreferencesurlinterceptor/loadexternalreferencesurlinterceptor.cpp
@@ -35,6 +35,8 @@ bool 
LoadExternalReferencesUrlInterceptor::interceptRequest(QWebEngineUrlRequest
             return true;
         } else if (info.resourceType() == 
QWebEngineUrlRequestInfo::ResourceTypeFontResource) {
             return true;
+        } else if (info.resourceType() == 
QWebEngineUrlRequestInfo::ResourceTypeStylesheet) {
+            return true;
         }
     }
     return false;
-- 
2.30.0

++++++ applications.keyring ++++++
Binary files /var/tmp/diff_new_pack.PJ6LLU/_old and 
/var/tmp/diff_new_pack.PJ6LLU/_new differ

++++++ messagelib-20.12.1.tar.xz -> messagelib-20.12.2.tar.xz ++++++
/work/SRC/openSUSE:Factory/messagelib/messagelib-20.12.1.tar.xz 
/work/SRC/openSUSE:Factory/.messagelib.new.28504/messagelib-20.12.2.tar.xz 
differ: char 27, line 1

Reply via email to