diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-05-09 13:25:52 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-05-09 13:31:40 +0200 |
commit | 218edde006943b065d56ceda1afc15bbae0e523c (patch) | |
tree | e2c91b86eb2253a0fda022900c4720b07deae652 /kde-frameworks/plasma | |
parent | kde-frameworks: Add KDE Frameworks 5.70.0 (diff) | |
download | gentoo-218edde006943b065d56ceda1afc15bbae0e523c.tar.gz gentoo-218edde006943b065d56ceda1afc15bbae0e523c.tar.bz2 gentoo-218edde006943b065d56ceda1afc15bbae0e523c.zip |
kde-frameworks: Drop KDE Frameworks 5.69.0
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks/plasma')
-rw-r--r-- | kde-frameworks/plasma/Manifest | 1 | ||||
-rw-r--r-- | kde-frameworks/plasma/files/plasma-5.69.0-qt-5.15-crash.patch | 60 | ||||
-rw-r--r-- | kde-frameworks/plasma/plasma-5.69.0-r1.ebuild | 77 |
3 files changed, 0 insertions, 138 deletions
diff --git a/kde-frameworks/plasma/Manifest b/kde-frameworks/plasma/Manifest index e2fec6fdf039..302ae018445b 100644 --- a/kde-frameworks/plasma/Manifest +++ b/kde-frameworks/plasma/Manifest @@ -1,3 +1,2 @@ DIST plasma-framework-5.67.0.tar.xz 3127592 BLAKE2B 15eabb6b3c62117ee64a8ceb2c6cee9d1df29942785b5e0e061f062e4ddc5cedb0ea73ea17e597bb09a5eef868cb8aafe81a25d51af19691f05152d05b916f8d SHA512 3708262501b39698a84656b1ec0ea461011369301c7e1f1e5858fdc5b3e06f4fd3a5d7511dba1f91e08e89b2331fcc3204561efd1e06440f97e6b4a32cbd8f92 -DIST plasma-framework-5.69.0.tar.xz 3130816 BLAKE2B bfb86c96aa600d02c75a52c990784e001c29eb517f504162e2cfe68ea1d2f17a9eea61a9da03715c713a3ac588640a130708cdda02693467d57ac95fab1975f0 SHA512 37fcd4c3bb531e72616a3f128342a470e9a938b9e99012dcda89e99d8eca6a856b48bf050794b1cae561fd3006d7189a0711b172d6982fc7a5c2813bcf7048a6 DIST plasma-framework-5.70.0.tar.xz 3132240 BLAKE2B 33d4a13be75839a4fa29c767679585debfe928084975febc3b5924b96bb5d03638ac96669fb92d293e5536d2226f4d4759663687f3e8a1e22f64874285a8e1ed SHA512 c11f6169f57ade39e6d6f44a7cfd462ce84f09cd6f05ae765224a33fbd491dcf232d51e73b0c2e406f89b39b59e7edcfecb479a02ddaa94d920600bd6122e46a diff --git a/kde-frameworks/plasma/files/plasma-5.69.0-qt-5.15-crash.patch b/kde-frameworks/plasma/files/plasma-5.69.0-qt-5.15-crash.patch deleted file mode 100644 index f48b82f72234..000000000000 --- a/kde-frameworks/plasma/files/plasma-5.69.0-qt-5.15-crash.patch +++ /dev/null @@ -1,60 +0,0 @@ -From 0417bf61d53a61879702aa6e5bc64d1da557db27 Mon Sep 17 00:00:00 2001 -From: David Edmundson <kde@davidedmundson.co.uk> -Date: Mon, 6 Apr 2020 12:21:45 +0100 -Subject: [configview] Simplify code / workaround Qt5.15 crash - -Summary: -QQmlComponent::beginCreate and completeCreate are useful if you need to -set properties on the object explicitly. We're not doing that here, we -can just call create. - -Test Plan: -On Qt5.15 -Right click a panel -choose edit - -Reviewers: #plasma, apol - -Reviewed By: apol - -Subscribers: apol, kde-frameworks-devel - -Tags: #frameworks - -Differential Revision: https://phabricator.kde.org/D28599 ---- - src/plasmaquick/configview.cpp | 9 +++++---- - 1 file changed, 5 insertions(+), 4 deletions(-) - -diff --git a/src/plasmaquick/configview.cpp b/src/plasmaquick/configview.cpp -index ff43753..c5e2228 100644 ---- a/src/plasmaquick/configview.cpp -+++ b/src/plasmaquick/configview.cpp -@@ -134,9 +134,13 @@ void ConfigViewPrivate::init() - - q->setResizeMode(QQuickView::SizeViewToRootObject); - -+ auto plasmoid = applet.data()->property("_plasma_graphicObject").value<QObject *>(); -+ q->engine()->rootContext()->setContextProperties({QQmlContext::PropertyPair{QStringLiteral("plasmoid"), QVariant::fromValue(plasmoid)}, -+ QQmlContext::PropertyPair{QStringLiteral("configDialog"), QVariant::fromValue(q)}}); -+ - //config model local of the applet - QQmlComponent *component = new QQmlComponent(q->engine(), applet.data()->kPackage().fileUrl("configmodel"), q); -- QObject *object = component->beginCreate(q->engine()->rootContext()); -+ QObject *object = component->create(q->engine()->rootContext()); - configModel = qobject_cast<ConfigModel *>(object); - - if (configModel) { -@@ -172,9 +176,6 @@ void ConfigViewPrivate::init() - } - } - -- q->engine()->rootContext()->setContextProperty(QStringLiteral("plasmoid"), applet.data()->property("_plasma_graphicObject").value<QObject *>()); -- q->engine()->rootContext()->setContextProperty(QStringLiteral("configDialog"), q); -- component->completeCreate(); - delete component; - } - --- -cgit v1.1 - diff --git a/kde-frameworks/plasma/plasma-5.69.0-r1.ebuild b/kde-frameworks/plasma/plasma-5.69.0-r1.ebuild deleted file mode 100644 index 7d9816e22771..000000000000 --- a/kde-frameworks/plasma/plasma-5.69.0-r1.ebuild +++ /dev/null @@ -1,77 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -KDE_ORG_NAME="${PN}-framework" -PVCUT=$(ver_cut 1-2) -QTMIN=5.12.3 -VIRTUALX_REQUIRED="test" -inherit ecm kde.org - -DESCRIPTION="Plasma framework" - -LICENSE="LGPL-2+" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" -IUSE="gles2-only wayland X" - -# drop qtgui subslot operator when QT_MINIMAL >= 5.14.0 -BDEPEND=" - >=kde-frameworks/kdoctools-${PVCUT}:5 -" -RDEPEND=" - >=dev-qt/qtdbus-${QTMIN}:5 - >=dev-qt/qtdeclarative-${QTMIN}:5 - >=dev-qt/qtgui-${QTMIN}:5=[gles2-only=] - >=dev-qt/qtquickcontrols-${QTMIN}:5 - >=dev-qt/qtsql-${QTMIN}:5 - >=dev-qt/qtsvg-${QTMIN}:5 - >=dev-qt/qtwidgets-${QTMIN}:5 - =kde-frameworks/kactivities-${PVCUT}*:5 - =kde-frameworks/karchive-${PVCUT}*:5 - =kde-frameworks/kconfig-${PVCUT}*:5 - =kde-frameworks/kconfigwidgets-${PVCUT}*:5 - =kde-frameworks/kcoreaddons-${PVCUT}*:5 - =kde-frameworks/kdeclarative-${PVCUT}*:5 - =kde-frameworks/kglobalaccel-${PVCUT}*:5 - =kde-frameworks/kguiaddons-${PVCUT}*:5 - =kde-frameworks/ki18n-${PVCUT}*:5 - =kde-frameworks/kiconthemes-${PVCUT}*:5 - =kde-frameworks/kio-${PVCUT}*:5 - =kde-frameworks/kirigami-${PVCUT}*:5 - =kde-frameworks/knotifications-${PVCUT}*:5 - =kde-frameworks/kpackage-${PVCUT}*:5 - =kde-frameworks/kservice-${PVCUT}*:5 - =kde-frameworks/kwidgetsaddons-${PVCUT}*:5 - =kde-frameworks/kwindowsystem-${PVCUT}*:5 - =kde-frameworks/kxmlgui-${PVCUT}*:5 - !gles2-only? ( virtual/opengl ) - wayland? ( - =kde-frameworks/kwayland-${PVCUT}*:5 - media-libs/mesa[egl] - ) - X? ( - >=dev-qt/qtx11extras-${QTMIN}:5 - x11-libs/libX11 - x11-libs/libxcb - ) -" -DEPEND="${RDEPEND} - X? ( x11-base/xorg-proto ) -" - -RESTRICT+=" test" - -PATCHES=( "${FILESDIR}/${P}-qt-5.15-crash.patch" ) - -src_configure() { - local mycmakeargs=( - $(cmake_use_find_package !gles2-only OpenGL) - $(cmake_use_find_package wayland EGL) - $(cmake_use_find_package wayland KF5Wayland) - $(cmake_use_find_package X X11) - $(cmake_use_find_package X XCB) - ) - - ecm_src_configure -} |