Hello community, here is the log from the commit of package scribus for openSUSE:Leap:15.2 checked in at 2020-05-11 08:40:48 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Leap:15.2/scribus (Old) and /work/SRC/openSUSE:Leap:15.2/.scribus.new.2738 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "scribus" Mon May 11 08:40:48 2020 rev:25 rq:802355 version:1.5.5 Changes: -------- --- /work/SRC/openSUSE:Leap:15.2/scribus/scribus.changes 2020-04-14 14:24:02.929411867 +0200 +++ /work/SRC/openSUSE:Leap:15.2/.scribus.new.2738/scribus.changes 2020-05-11 08:40:49.279215732 +0200 @@ -1,0 +2,6 @@ +Sat May 9 17:36:50 UTC 2020 - Wolfgang Bauer <[email protected]> + +- Add 0001-Fix-build-with-Qt-5.15.patch to fix build with the + upcoming Qt 5.15 + +------------------------------------------------------------------- New: ---- 0001-Fix-build-with-Qt-5.15.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ scribus.spec ++++++ --- /var/tmp/diff_new_pack.i7T886/_old 2020-05-11 08:40:50.003217299 +0200 +++ /var/tmp/diff_new_pack.i7T886/_new 2020-05-11 08:40:50.007217307 +0200 @@ -42,6 +42,8 @@ Patch6: Fails-to-build-with-python-3.8.patch # PATCH-FIX-UPSTREAM Patch7: 0001-PDF-import-plugin-support-poppler-0.86.x.patch +# PATCH-FIX-UPSTREAM +Patch8: 0001-Fix-build-with-Qt-5.15.patch BuildRequires: breeze5-icons BuildRequires: cmake BuildRequires: cups-devel ++++++ 0001-Fix-build-with-Qt-5.15.patch ++++++ >From 78ee1626f3af37bf067b0c9d06156851bba31ee9 Mon Sep 17 00:00:00 2001 From: Heiko Becker <[email protected]> Date: Sun, 29 Mar 2020 11:16:13 +0200 Subject: [PATCH] Fix build with Qt 5.15 QPainterPath is no longer included via qtransform.h (since 5.15.0-beta2, 50d2acdc93b4de2ba56eb67787e2bdcb21dd4bea in qtbase.git). --- scribus/ui/scresizecursor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/scribus/ui/scresizecursor.cpp b/scribus/ui/scresizecursor.cpp index f2c78e5ae..85271ed86 100644 --- a/scribus/ui/scresizecursor.cpp +++ b/scribus/ui/scresizecursor.cpp @@ -12,6 +12,7 @@ #include <QDebug> #include <QPainter> +#include <QPainterPath> #include <QPixmap> #include <QPen> #include <QBrush> -- 2.26.0
