mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
kde-plasma/plasma-desktop: 5.14.4.1 version bump
Same as 5.14.4-r1, but upstream's respin in place of 5.14.4 tarball forces our hand. See also: https://community.kde.org/Plasma/5.14_Errata https://mail.kde.org/pipermail/release-team/2018-November/011159.html Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
DIST plasma-desktop-5.13.5.tar.xz 9141164 BLAKE2B f48ab6648cb1c7c289b5a2cce670db774aa53cbd81095cd4aa60414d05a0fac1e460fde115d5d38dd639a7746b1ad83971e38b28841aa430cec3f318e3509930 SHA512 3dd8f27e0127f7568aeee3871ce2f0732267ef50f9659a4a2715eca65bdf8cc5cbd2ca5e39a261cbbf0d1127c9c153f1c2d279729b636184353c6fbb699c4383
|
||||
DIST plasma-desktop-5.14.3.tar.xz 9141312 BLAKE2B f6be5a432abac3835b7a6102a755f7bfc8809ef851c498ecc57ca2026fadcf7aebc2cf5c4e8b11198551cdaca04eff0607fd0d7ebcfd47a33fb4fd739e1eaf42 SHA512 52ce17321a0dd153446e9e334102ab2f6579e84595c53641864a660969ae410272f4762b345397fd00e9f6e936ce097e179d0b69a62341fa97b7b6b0b1ec38bd
|
||||
DIST plasma-desktop-5.14.4.tar.xz 9148316 BLAKE2B ce4ff1c17d2fb2166f4ab151b16c800629a947578826784ca51449d6e740874348c05f7f092da773fe81a733d2f3806fa2283b849e6a6bf8c7f496111f30d23a SHA512 7028d609ea05560cd07f5668ed620910f39ccd82d7f87e9f3f35321014271e3a1b5a3ffccef836fbf383fde40e7529011b5c48522c403ff84f4a605887c3cca4
|
||||
DIST plasma-desktop-5.14.4.1.tar.xz 9139608 BLAKE2B b30e27031ac93f031010261fd064d774d5cd1e88be470f4f174a4dd2dda7f6c2af359c6be25671c5c0408ec9a71a6a6aed595b25dc4b5432bb35432b63f8cd34 SHA512 92404c766eddaf97f5ba6e76edfd3320eb21e787202aa8aadc76e4c1f613f455a669a9fc09fe3d19e90e46c39a4bf55185d3e2ef99f7f79adb7afe3f63e7bbdc
|
||||
|
||||
@@ -1,39 +0,0 @@
|
||||
From ed34cc5f181e61d1fc98872866c5d7300a90af86 Mon Sep 17 00:00:00 2001
|
||||
From: Eike Hein <hein@kde.org>
|
||||
Date: Thu, 29 Nov 2018 00:22:17 +0900
|
||||
Subject: [PATCH] Fix group popup dialog
|
||||
|
||||
Summary:
|
||||
Fixes regression introduced with ab26ebb18b74: That diff contained
|
||||
a change unrelated to the original submission, swapping a || out for
|
||||
&& in response to a review note. This turns out to have broken things.
|
||||
|
||||
BUG:401508
|
||||
|
||||
Reviewers: davidedmundson
|
||||
|
||||
Subscribers: plasma-devel
|
||||
|
||||
Tags: #plasma
|
||||
|
||||
Differential Revision: https://phabricator.kde.org/D17219
|
||||
---
|
||||
applets/taskmanager/package/contents/ui/GroupDialog.qml | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/applets/taskmanager/package/contents/ui/GroupDialog.qml b/applets/taskmanager/package/contents/ui/GroupDialog.qml
|
||||
index 6f592756..28238dce 100644
|
||||
--- a/applets/taskmanager/package/contents/ui/GroupDialog.qml
|
||||
+++ b/applets/taskmanager/package/contents/ui/GroupDialog.qml
|
||||
@@ -262,7 +262,7 @@ PlasmaCore.Dialog {
|
||||
// Setting VisualDataModel.rootIndex drops groupRepeater.count to 0
|
||||
// before the actual row count. updateSize is therefore invoked twice;
|
||||
// only update size once the repeater count matches the model role.
|
||||
- } else if (!groupRepeater.aboutToPopulate && visualParent.childCount == groupRepeater.count) {
|
||||
+ } else if (!groupRepeater.aboutToPopulate || visualParent.childCount == groupRepeater.count) {
|
||||
var task;
|
||||
var maxWidth = 0;
|
||||
var maxHeight = 0;
|
||||
--
|
||||
2.19.2
|
||||
|
||||
@@ -117,8 +117,6 @@ RDEPEND="${COMMON_DEPEND}
|
||||
!kde-plasma/systemsettings:4
|
||||
"
|
||||
|
||||
PATCHES=( "${FILESDIR}/${P}-taskbar-crash.patch" )
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
$(cmake-utils_use_find_package appstream AppStreamQt)
|
||||
Reference in New Issue
Block a user