Hello community,
here is the log from the commit of package solarus-quest-editor for
openSUSE:Factory checked in at 2020-06-05 20:20:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/solarus-quest-editor (Old)
and /work/SRC/openSUSE:Factory/.solarus-quest-editor.new.3606 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "solarus-quest-editor"
Fri Jun 5 20:20:05 2020 rev:11 rq:811592 version:1.6.4
Changes:
--------
---
/work/SRC/openSUSE:Factory/solarus-quest-editor/solarus-quest-editor.changes
2020-04-13 12:54:07.840670176 +0200
+++
/work/SRC/openSUSE:Factory/.solarus-quest-editor.new.3606/solarus-quest-editor.changes
2020-06-05 20:26:20.224947332 +0200
@@ -1,0 +2,6 @@
+Thu Jun 4 17:58:13 UTC 2020 - Christophe Giboudeaux <[email protected]>
+
+- Add upstream patch to fix build with Qt 5.15:
+ * 0001-Add-missing-include-directive-for-QPainterPath.patch
+
+-------------------------------------------------------------------
New:
----
0001-Add-missing-include-directive-for-QPainterPath.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ solarus-quest-editor.spec ++++++
--- /var/tmp/diff_new_pack.gYlUfq/_old 2020-06-05 20:26:22.740947809 +0200
+++ /var/tmp/diff_new_pack.gYlUfq/_new 2020-06-05 20:26:22.744947809 +0200
@@ -24,6 +24,8 @@
Group: Productivity/Graphics/Other
URL: https://www.solarus-games.org/
Source:
https://gitlab.com/solarus-games/solarus-quest-editor/-/archive/v%{version}/%{name}-v%{version}.tar.bz2
+# PATCH-FIX-UPSTREAM
+Patch0: 0001-Add-missing-include-directive-for-QPainterPath.patch
BuildRequires: cmake >= 3.1
BuildRequires: fdupes
BuildRequires: gcc-c++
@@ -60,7 +62,7 @@
%lang_package
%prep
-%setup -q -n %{name}-v%{version}
+%autosetup -p1 -n %{name}-v%{version}
%build
%cmake
++++++ 0001-Add-missing-include-directive-for-QPainterPath.patch ++++++
>From 619a0a8e00f9e0b75df80721402bd87d6ea01692 Mon Sep 17 00:00:00 2001
From: Hugo Hromic <[email protected]>
Date: Mon, 1 Jun 2020 18:45:16 +0100
Subject: [PATCH] Add missing include directive for QPainterPath
* Not implicit anymore since Qt 5.15
---
src/entities/jumper.cpp | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/entities/jumper.cpp b/src/entities/jumper.cpp
index 5d4b31e..edd38fa 100644
--- a/src/entities/jumper.cpp
+++ b/src/entities/jumper.cpp
@@ -17,6 +17,7 @@
#include "entities/jumper.h"
#include "map_model.h"
#include <QPainter>
+#include <QPainterPath>
namespace SolarusEditor {
--
2.26.2