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 9952513835A for ; Tue, 23 Jun 2020 13:49:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C33D1E08FA; Tue, 23 Jun 2020 13:49:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 AE6BBE08FA for ; Tue, 23 Jun 2020 13:49:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 448F834F215 for ; Tue, 23 Jun 2020 13:49:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AF40B2B3 for ; Tue, 23 Jun 2020 13:49:35 +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: <1592920123.b8dcf727646a2ce79e07d2d0490f80ebf58cc616.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-nm/files/, kde-plasma/plasma-nm/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-plasma/plasma-nm/files/plasma-nm-5.19.2-fix-inline-password-field.patch kde-plasma/plasma-nm/plasma-nm-5.19.2.ebuild X-VCS-Directories: kde-plasma/plasma-nm/ kde-plasma/plasma-nm/files/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: b8dcf727646a2ce79e07d2d0490f80ebf58cc616 X-VCS-Branch: master Date: Tue, 23 Jun 2020 13:49:35 +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: efca3197-d8d5-412f-acb3-e97681990820 X-Archives-Hash: b4a5eb0413bee0756a8b4d3acfb0b5de commit: b8dcf727646a2ce79e07d2d0490f80ebf58cc616 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jun 21 20:59:33 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Jun 23 13:48:43 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8dcf727 kde-plasma/plasma-nm: [2/2] Fix password is asked twice See also: https://mail.kde.org/pipermail/distributions/2020-June/000367.html KDE-Bug: https://bugs.kde.org/show_bug.cgi?id=423093 Upstream commit 271332cfc19ede398854113d037abfb35503179f "[applet] Fix inline password field component not working properly" Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner gentoo.org> ...lasma-nm-5.19.2-fix-inline-password-field.patch | 30 ++++++++++++++++++++++ kde-plasma/plasma-nm/plasma-nm-5.19.2.ebuild | 4 +++ 2 files changed, 34 insertions(+) diff --git a/kde-plasma/plasma-nm/files/plasma-nm-5.19.2-fix-inline-password-field.patch b/kde-plasma/plasma-nm/files/plasma-nm-5.19.2-fix-inline-password-field.patch new file mode 100644 index 00000000000..170e20ea225 --- /dev/null +++ b/kde-plasma/plasma-nm/files/plasma-nm-5.19.2-fix-inline-password-field.patch @@ -0,0 +1,30 @@ +From 271332cfc19ede398854113d037abfb35503179f Mon Sep 17 00:00:00 2001 +From: Nate Graham +Date: Thu, 18 Jun 2020 15:34:40 +0000 +Subject: [PATCH] [WIP] [applet] Fix inline password field component not + working properly + +BUG: 423093 +FIXED-IN: 5.20 +--- + applet/contents/ui/ConnectionItem.qml | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/applet/contents/ui/ConnectionItem.qml b/applet/contents/ui/ConnectionItem.qml +index 98240928..06c7ab25 100644 +--- a/applet/contents/ui/ConnectionItem.qml ++++ b/applet/contents/ui/ConnectionItem.qml +@@ -231,8 +231,8 @@ PlasmaExtras.ExpandableListItem { + if (!predictableWirelessPassword && !Uuid) { + handler.addAndActivateConnection(DevicePath, SpecificPath) + } else if (connectionItem.customExpandedViewContent == passwordDialogComponent) { +- if (passwordDialogComponent.password != "") { +- handler.addAndActivateConnection(DevicePath, SpecificPath, passwordDialogComponent.password) ++ if (connectionItem.customExpandedViewContentItem.password != "") { ++ handler.addAndActivateConnection(DevicePath, SpecificPath, connectionItem.customExpandedViewContentItem.password) + connectionItem.customExpandedViewContent = detailsComponent + connectionItem.collapse() + } else { +-- +2.27.0 + diff --git a/kde-plasma/plasma-nm/plasma-nm-5.19.2.ebuild b/kde-plasma/plasma-nm/plasma-nm-5.19.2.ebuild index 7ae4e64126b..4d75d3c41a7 100644 --- a/kde-plasma/plasma-nm/plasma-nm-5.19.2.ebuild +++ b/kde-plasma/plasma-nm/plasma-nm-5.19.2.ebuild @@ -61,6 +61,10 @@ RDEPEND="${DEPEND} >=kde-plasma/kde-cli-tools-${PVCUT}:5 " +PATCHES=( + "${FILESDIR}"/${PN}-5.19.2-fix-inline-password-field.patch # KDE-bug #423093 +) + src_configure() { local mycmakeargs=( -DDISABLE_MODEMMANAGER_SUPPORT=$(usex !modemmanager)