From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 836BD13835A for ; Sun, 21 Jun 2020 21:59:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A0FCE083B; Sun, 21 Jun 2020 21:59:24 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 45051E083B for ; Sun, 21 Jun 2020 21:59:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4B6A6350029 for ; Sun, 21 Jun 2020 21:59:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5495E2AA for ; Sun, 21 Jun 2020 21:59:20 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1592775701.ec025c06d2a9a37a8cdce7fd4e80f48ac26764c9.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-plasma/plasma-workspace/, kde-plasma/plasma-workspace/files/ X-VCS-Repository: proj/kde X-VCS-Files: kde-plasma/plasma-workspace/files/plasma-workspace-5.19.2-use-PlasmaExtras.PlaceholderMessage.patch kde-plasma/plasma-workspace/plasma-workspace-5.19.49.9999.ebuild X-VCS-Directories: kde-plasma/plasma-workspace/ kde-plasma/plasma-workspace/files/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: ec025c06d2a9a37a8cdce7fd4e80f48ac26764c9 X-VCS-Branch: master Date: Sun, 21 Jun 2020 21:59:20 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 800ecc2c-392b-49aa-aa27-5f131bc06362 X-Archives-Hash: 22d832483fd6502451097a6f04db4395 commit: ec025c06d2a9a37a8cdce7fd4e80f48ac26764c9 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jun 21 21:09:08 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jun 21 21:41:41 2020 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=ec025c06 kde-plasma/plasma-workspace: systray [2/4]: Fix unreadable text w/ Breeze Dark See also: https://mail.kde.org/pipermail/distributions/2020-June/000368.html KDE-Bug: https://bugs.kde.org/show_bug.cgi?id=422684 Upstream commit faef126255222f727219bf69ac2b89857dc61ab2 "Port applets to use PlasmaExtras.PlaceholderMessage" Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner gentoo.org> ....19.2-use-PlasmaExtras.PlaceholderMessage.patch | 44 ++++++++++++++++++++++ .../plasma-workspace-5.19.49.9999.ebuild | 5 ++- 2 files changed, 48 insertions(+), 1 deletion(-) diff --git a/kde-plasma/plasma-workspace/files/plasma-workspace-5.19.2-use-PlasmaExtras.PlaceholderMessage.patch b/kde-plasma/plasma-workspace/files/plasma-workspace-5.19.2-use-PlasmaExtras.PlaceholderMessage.patch new file mode 100644 index 0000000000..527e199cc6 --- /dev/null +++ b/kde-plasma/plasma-workspace/files/plasma-workspace-5.19.2-use-PlasmaExtras.PlaceholderMessage.patch @@ -0,0 +1,44 @@ +From faef126255222f727219bf69ac2b89857dc61ab2 Mon Sep 17 00:00:00 2001 +From: Nate Graham +Date: Sun, 14 Jun 2020 09:08:21 -0600 +Subject: [PATCH] Port applets to use PlasmaExtras.PlaceholderMessage + +The Kirigami version uses QQC2 elements which don't respect the plasma +theme and color scheme, leading to thing slooking out of place +especially when using a dark color theme or scheme. + +Depends on https://invent.kde.org/frameworks/plasma-framework/-/merge_requests/13 +--- + applets/clipboard/contents/ui/Menu.qml | 2 +- + .../notifications/package/contents/ui/FullRepresentation.qml | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/applets/clipboard/contents/ui/Menu.qml b/applets/clipboard/contents/ui/Menu.qml +index 0bd6064a5..cac8380db 100644 +--- a/applets/clipboard/contents/ui/Menu.qml ++++ b/applets/clipboard/contents/ui/Menu.qml +@@ -55,7 +55,7 @@ PlasmaExtras.ScrollArea { + onAction: menu.action(uuid) + } + +- Kirigami.PlaceholderMessage { ++ PlasmaExtras.PlaceholderMessage { + id: emptyHint + + anchors.centerIn: parent +diff --git a/applets/notifications/package/contents/ui/FullRepresentation.qml b/applets/notifications/package/contents/ui/FullRepresentation.qml +index b34dee7af..989cb4341 100644 +--- a/applets/notifications/package/contents/ui/FullRepresentation.qml ++++ b/applets/notifications/package/contents/ui/FullRepresentation.qml +@@ -585,7 +585,7 @@ PlasmaComponents3.Page { + } + } + +- Kirigami.PlaceholderMessage { ++ PlasmaExtras.PlaceholderMessage { + anchors.centerIn: parent + width: parent.width - (units.largeSpacing * 4) + +-- +2.27.0 + diff --git a/kde-plasma/plasma-workspace/plasma-workspace-5.19.49.9999.ebuild b/kde-plasma/plasma-workspace/plasma-workspace-5.19.49.9999.ebuild index 0b3a93c49d..2ec5040768 100644 --- a/kde-plasma/plasma-workspace/plasma-workspace-5.19.49.9999.ebuild +++ b/kde-plasma/plasma-workspace/plasma-workspace-5.19.49.9999.ebuild @@ -123,7 +123,10 @@ PDEPEND=" >=kde-plasma/kde-cli-tools-${PVCUT}:5 " -PATCHES=( "${FILESDIR}/${PN}-5.14.2-split-libkworkspace.patch" ) +PATCHES=( + "${FILESDIR}/${PN}-5.14.2-split-libkworkspace.patch" + "${FILESDIR}/${PN}-5.19.2-use-PlasmaExtras.PlaceholderMessage.patch" # KDE-Bug #422684 +) RESTRICT+=" test"