diff options
author | Adriaan de Groot <adridg@FreeBSD.org> | 2019-08-15 10:01:34 +0000 |
---|---|---|
committer | Adriaan de Groot <adridg@FreeBSD.org> | 2019-08-15 10:01:34 +0000 |
commit | 0a7455c83ce45910f0ee6965d5db7b95bc54c9db (patch) | |
tree | ba72125e7521f7704b77323205dcde5c796ca7bb /archivers/ark | |
parent | 949aa029a9916060e028096dff572f2f2fceebb7 (diff) | |
download | freebsd-ports-0a7455c83ce45910f0ee6965d5db7b95bc54c9db.zip |
Update KDE Frameworks to latest upstream release, 5.61
Release notes at
https://kde.org/announcements/kde-frameworks-5.61.0.php
Thanks to
antoine@ for the exp-runs,
tcberner@ for most of the prep-work,
the Gentoo community for cherry-picking patches
There are a bunch of changes in (implicitly included) headers, which
broke existing KDE Applications builds; that's why there are a whole
bunch of "patch-gentoo-kf5-5.61-headers" patches (taken from Gentoo
packaging). Those will go away with the next KDE Applications release,
PR: 239777
Submitted by: tcberner
Diffstat (limited to 'archivers/ark')
-rw-r--r-- | archivers/ark/files/patch-gentoo-kf5-5.61-headers | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/archivers/ark/files/patch-gentoo-kf5-5.61-headers b/archivers/ark/files/patch-gentoo-kf5-5.61-headers new file mode 100644 index 000000000000..53b57109cfef --- /dev/null +++ b/archivers/ark/files/patch-gentoo-kf5-5.61-headers @@ -0,0 +1,54 @@ +From dfad7a3f389c3b852f45563854df123ac6facdec Mon Sep 17 00:00:00 2001 +From: Nicolas Fella <nicolas.fella@gmx.de> +Date: Mon, 15 Jul 2019 00:09:18 +0200 +Subject: Add missing QVector include +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Summary: +My build was failing with +``` +In file included from /home/nico/kde/src/ark/kerfuffle/pluginmanager.cpp:28: +/home/nico/kde/src/ark/kerfuffle/pluginmanager.h:138:22: error: field ‘m_plugins’ has incomplete type ‘QVector<Kerfuffle::Plugin*>’ + QVector<Plugin*> m_plugins; + ^~~~~~~~~ +In file included from /usr/include/qt/QtCore/qglobal.h:1204, + from /usr/include/qt/QtCore/qnamespace.h:43, + from /usr/include/qt/QtCore/qobjectdefs.h:48, + from /usr/include/qt/QtCore/qobject.h:46, + from /usr/include/qt/QtCore/QObject:1, + from /home/nico/kde/src/ark/kerfuffle/plugin.h:33, + from /home/nico/kde/src/ark/kerfuffle/pluginmanager.h:31, + from /home/nico/kde/src/ark/kerfuffle/pluginmanager.cpp:28 +``` + +Test Plan: Builds. Can open a file + +Reviewers: #ark, elvisangelaccio + +Reviewed By: #ark, elvisangelaccio + +Subscribers: kde-utils-devel, #ark + +Tags: #ark + +Differential Revision: https://phabricator.kde.org/D22461 +--- + kerfuffle/pluginmanager.h | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/kerfuffle/pluginmanager.h b/kerfuffle/pluginmanager.h +index 75a971b..8b9ad69 100644 +--- kerfuffle/pluginmanager.h ++++ kerfuffle/pluginmanager.h +@@ -31,6 +31,7 @@ + #include "plugin.h" + + #include <QMimeType> ++#include <QVector> + + namespace Kerfuffle + { +-- +cgit v1.1 |