Hello community, here is the log from the commit of package keepassxc for openSUSE:Factory checked in at 2018-06-28 15:12:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/keepassxc (Old) and /work/SRC/openSUSE:Factory/.keepassxc.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "keepassxc" Thu Jun 28 15:12:50 2018 rev:12 rq:619347 version:2.3.3 Changes: -------- --- /work/SRC/openSUSE:Factory/keepassxc/keepassxc.changes 2018-05-15 10:34:37.793482303 +0200 +++ /work/SRC/openSUSE:Factory/.keepassxc.new/keepassxc.changes 2018-06-28 15:13:10.807619159 +0200 @@ -1,0 +2,6 @@ +Wed Jun 27 08:37:41 UTC 2018 - [email protected] + +- Fix building with Qt 5.11: + * keepassxc-qt_includes.patch + +------------------------------------------------------------------- New: ---- keepassxc-qt_includes.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ keepassxc.spec ++++++ --- /var/tmp/diff_new_pack.ZoMqI1/_old 2018-06-28 15:13:11.539617817 +0200 +++ /var/tmp/diff_new_pack.ZoMqI1/_new 2018-06-28 15:13:11.543617809 +0200 @@ -22,10 +22,11 @@ Summary: Qt5-based Password Manager License: GPL-2.0-only OR GPL-3.0-only Group: Productivity/Security -Url: https://www.keepassxc.org/ +URL: https://www.keepassxc.org/ Source0: https://github.com/keepassxreboot/keepassxc/releases/download/%{version}/keepassxc-%{version}-src.tar.xz Source1: https://github.com/keepassxreboot/keepassxc/releases/download/%{version}/keepassxc-%{version}-src.tar.xz.sig Source2: https://keepassxc.org/keepassxc_master_signing_key.asc#/%{name}.keyring +Patch0: keepassxc-qt_includes.patch BuildRequires: cmake >= 3.1.0 BuildRequires: fdupes BuildRequires: hicolor-icon-theme @@ -62,6 +63,7 @@ %prep %setup -q +%patch0 -p1 %build %cmake \ ++++++ keepassxc-qt_includes.patch ++++++ >From 3bbc6ac0e6298d27bfe0c41999460cafda8edf18 Mon Sep 17 00:00:00 2001 From: Markus Rathgeb <[email protected]> Date: Wed, 16 May 2018 09:55:14 +0200 Subject: [PATCH] fix missing include for Qt 5.11 Qt 5.11 cleanes up the internal headers and so consumers could fail by missing includes. See: https://bugs.gentoo.org/655844 Signed-off-by: Markus Rathgeb <[email protected]> --- src/gui/entry/EditEntryWidget.cpp | 1 + 1 file changed, 1 insertion(+) Index: keepassxc-2.3.3/src/gui/entry/EditEntryWidget.cpp =================================================================== --- keepassxc-2.3.3.orig/src/gui/entry/EditEntryWidget.cpp +++ keepassxc-2.3.3/src/gui/entry/EditEntryWidget.cpp @@ -32,6 +32,7 @@ #include <QMimeData> #include <QEvent> #include <QColorDialog> +#include <QButtonGroup> #include "autotype/AutoType.h" #include "core/Config.h"
