Hello community, here is the log from the commit of package qtcurve for openSUSE:Factory checked in at 2020-06-04 17:58:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/qtcurve (Old) and /work/SRC/openSUSE:Factory/.qtcurve.new.3606 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qtcurve" Thu Jun 4 17:58:02 2020 rev:4 rq:811529 version:1.9.0 Changes: -------- --- /work/SRC/openSUSE:Factory/qtcurve/qtcurve.changes 2019-09-05 12:46:23.723461543 +0200 +++ /work/SRC/openSUSE:Factory/.qtcurve.new.3606/qtcurve.changes 2020-06-04 17:58:13.993339328 +0200 @@ -1,0 +2,6 @@ +Thu Jun 4 14:50:00 UTC 2020 - Christophe Giboudeaux <[email protected]> + +- Add upstream patch: + * 0001-Fix-build-with-Qt-5.15-missing-QPainterPath-include.patch + +------------------------------------------------------------------- New: ---- 0001-Fix-build-with-Qt-5.15-missing-QPainterPath-include.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ qtcurve.spec ++++++ --- /var/tmp/diff_new_pack.xmSLxe/_old 2020-06-04 17:58:15.705344689 +0200 +++ /var/tmp/diff_new_pack.xmSLxe/_new 2020-06-04 17:58:15.709344701 +0200 @@ -1,7 +1,7 @@ # # spec file for package qtcurve # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -23,10 +23,12 @@ Summary: QtCurve style for Qt and GTK+ License: LGPL-2.1-or-later Group: System/GUI/KDE -URL: https://github.com/KDE/qtcurve +URL: https://invent.kde.org/system/qtcurve Source0: qtcurve-%{version}.tar.gz Source1: baselibs.conf Patch0: 0001-utils-gtkprops-Remove-unnecessary-constexpr-this-is-.patch +# PATCH-FIX-UPSTREAM +Patch1: 0001-Fix-build-with-Qt-5.15-missing-QPainterPath-include.patch BuildRequires: cmake >= 2.8.12 BuildRequires: extra-cmake-modules BuildRequires: frameworkintegration-devel @@ -104,13 +106,12 @@ of widget styles available for Qt and GTK+. %prep -%setup -q -%patch0 -p1 +%autosetup -p1 %build %cmake_kf5 -d build -- -DLIB_INSTALL_DIR=%{_libdir} -%make_jobs +%cmake_build %install %kf5_makeinstall -C build ++++++ 0001-Fix-build-with-Qt-5.15-missing-QPainterPath-include.patch ++++++ >From 44e2a35ebb164dcab0bad1a9158b1219a3ff6504 Mon Sep 17 00:00:00 2001 From: Andreas Sturmlechner <[email protected]> Date: Sun, 31 May 2020 23:33:30 +0200 Subject: [PATCH] Fix build with Qt 5.15 (missing QPainterPath include) --- qt5/style/qtcurve.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qt5/style/qtcurve.h b/qt5/style/qtcurve.h index 9a50db00..00072d4e 100644 --- a/qt5/style/qtcurve.h +++ b/qt5/style/qtcurve.h @@ -31,6 +31,8 @@ #include <QCache> #include <QColor> #include <QFont> +#include <QPainter> +#include <QPainterPath> #include <QStyleOption> #include <QtGlobal> #include <QCommonStyle> -- 2.26.2
