diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2021-01-09 10:49:16 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-01-11 13:27:21 +0100 |
commit | 6c625c07912b3984a8c36b499e112b1a0a9a28c7 (patch) | |
tree | 3abcce7b75554d4160946d32f9cc07292246462b /kde-frameworks | |
parent | kde-frameworks/prison: drop 5.74.0* (diff) | |
download | gentoo-6c625c07912b3984a8c36b499e112b1a0a9a28c7.tar.gz gentoo-6c625c07912b3984a8c36b499e112b1a0a9a28c7.tar.bz2 gentoo-6c625c07912b3984a8c36b499e112b1a0a9a28c7.zip |
kde-frameworks/qqc2-desktop-style: drop 5.74.0*
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks')
3 files changed, 0 insertions, 98 deletions
diff --git a/kde-frameworks/qqc2-desktop-style/Manifest b/kde-frameworks/qqc2-desktop-style/Manifest index a513b8397f9c..ee32eb9727fc 100644 --- a/kde-frameworks/qqc2-desktop-style/Manifest +++ b/kde-frameworks/qqc2-desktop-style/Manifest @@ -1,3 +1,2 @@ -DIST qqc2-desktop-style-5.74.0.tar.xz 58632 BLAKE2B a4f3545d83f03eb57cd7dd9ee81db59bd56a22b7907af4eb00a50a9fa1d2a5e507a271fcb4d2a2e7465691076122251f48c0baed05e7c30042489f6dd93e60ee SHA512 88c91d5933bc2c0020a574be05a851aea54382b6c1dd5f459cba792e4ac784782bc88a36670c28f2df29188cf001bf2c9af98b3e9bc84dd59c110fd7bf936258 DIST qqc2-desktop-style-5.77.0.tar.xz 59812 BLAKE2B 2e3bd046635bec99fe89a20975edf3ed9132836fe3db792236233e2942d58ebb35b48697e3f0582d012ac7a1d995cee58bed9b5167c0e66b6f4f923a32d30c81 SHA512 de8a24912c6de97b23c1e48cc362148256d9cb3284078107ff900af80224752cc6ec9ad568c4b65afe4c36a937dad7040eea19aa2bf4fa5d3047d4a60626cc14 DIST qqc2-desktop-style-5.78.0.tar.xz 59512 BLAKE2B 470775f55bd177454785634f2590bc6f93d52e629021b60f71b86e45ad0f033c930796e3f8058627ae35badfb375b9d2884dde64c51077a63bf1b6572c81a15b SHA512 cde01e39512a5315f31a1df47788564c8b0698391e7b5260be4f370f559fd15fd56f8f9c4be0cbe17db62ec3c5d7cd6519bf37f61f0e49419025db6cee84293f diff --git a/kde-frameworks/qqc2-desktop-style/files/qqc2-desktop-style-5.74.0-move-dbus-connection-in-singleton.patch b/kde-frameworks/qqc2-desktop-style/files/qqc2-desktop-style-5.74.0-move-dbus-connection-in-singleton.patch deleted file mode 100644 index 026a5b65d02f..000000000000 --- a/kde-frameworks/qqc2-desktop-style/files/qqc2-desktop-style-5.74.0-move-dbus-connection-in-singleton.patch +++ /dev/null @@ -1,67 +0,0 @@ -From f8e56a22721057107bccdf319da36ff82ca2a804 Mon Sep 17 00:00:00 2001 -From: Marco Martin <notmart@gmail.com> -Date: Mon, 7 Sep 2020 09:52:57 +0000 -Subject: [PATCH] move the dbus connection in the singleton - -connecting to dbus is expensive, do it only once in the singleton -the theme instance will only connecto to the signal forwarded by -the singleton ---- - .../plasmadesktoptheme.cpp | 20 +++++++++++-------- - 1 file changed, 12 insertions(+), 8 deletions(-) - -diff --git a/kirigami-plasmadesktop-integration/plasmadesktoptheme.cpp b/kirigami-plasmadesktop-integration/plasmadesktoptheme.cpp -index babb433..ff046eb 100644 ---- a/kirigami-plasmadesktop-integration/plasmadesktoptheme.cpp -+++ b/kirigami-plasmadesktop-integration/plasmadesktoptheme.cpp -@@ -45,6 +45,14 @@ public: - { - connect(qGuiApp, &QGuiApplication::paletteChanged, - this, &StyleSingleton::refresh); -+ -+ // Use DBus in order to listen for kdeglobals changes directly, as the -+ // QApplication doesn't expose the font variants we're looking for, -+ // namely smallFont. -+ QDBusConnection::sessionBus().connect( QString(), -+ QStringLiteral( "/KGlobalSettings" ), -+ QStringLiteral( "org.kde.KGlobalSettings" ), -+ QStringLiteral( "notifyChange" ), this, SIGNAL(configurationChanged())); - } - - void refresh() -@@ -125,6 +133,7 @@ public: - KColorScheme viewScheme; - - Q_SIGNALS: -+ void configurationChanged(); - void paletteChanged(); - - private: -@@ -161,14 +170,6 @@ PlasmaDesktopTheme::PlasmaDesktopTheme(QObject *parent) - }); - } - -- // Use DBus in order to listen for kdeglobals changes directly, as the -- // QApplication doesn't expose the font variants we're looking for, -- // namely smallFont. -- QDBusConnection::sessionBus().connect( QString(), -- QStringLiteral( "/KGlobalSettings" ), -- QStringLiteral( "org.kde.KGlobalSettings" ), -- QStringLiteral( "notifyChange" ), this, SLOT(configurationChanged())); -- - //TODO: correct? depends from https://codereview.qt-project.org/206889 - connect(qGuiApp, &QGuiApplication::fontDatabaseChanged, this, [this]() {setDefaultFont(qApp->font());}); - configurationChanged(); -@@ -181,6 +182,9 @@ PlasmaDesktopTheme::PlasmaDesktopTheme(QObject *parent) - connect(s_style->data(), &StyleSingleton::paletteChanged, - this, &PlasmaDesktopTheme::syncColors); - -+ connect(s_style->data(), &StyleSingleton::configurationChanged, -+ this, &PlasmaDesktopTheme::configurationChanged); -+ - syncColors(); - } - --- -GitLab - diff --git a/kde-frameworks/qqc2-desktop-style/qqc2-desktop-style-5.74.0-r2.ebuild b/kde-frameworks/qqc2-desktop-style/qqc2-desktop-style-5.74.0-r2.ebuild deleted file mode 100644 index f3f9d7d8827a..000000000000 --- a/kde-frameworks/qqc2-desktop-style/qqc2-desktop-style-5.74.0-r2.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -ECM_QTHELP="false" -PVCUT=$(ver_cut 1-2) -QTMIN=5.15.1 -inherit ecm kde.org - -DESCRIPTION="Style for QtQuickControls 2 that uses QWidget's QStyle for painting" - -LICENSE="|| ( GPL-2+ LGPL-3+ )" -KEYWORDS="amd64 ~arm arm64 ~ppc64 x86" -IUSE="" - -DEPEND=" - >=dev-qt/qtdeclarative-${QTMIN}:5= - >=dev-qt/qtgui-${QTMIN}:5 - >=dev-qt/qtwidgets-${QTMIN}:5 - =kde-frameworks/kconfigwidgets-${PVCUT}*:5 - =kde-frameworks/kiconthemes-${PVCUT}*:5 - =kde-frameworks/kirigami-${PVCUT}*:5 -" -RDEPEND="${DEPEND} - >=dev-qt/qtgraphicaleffects-${QTMIN}:5 - >=dev-qt/qtquickcontrols2-${QTMIN}:5 -" - -PATCHES=( "${FILESDIR}"/${P}-move-dbus-connection-in-singleton.patch ) |