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 D61761382C5 for ; Tue, 23 Feb 2021 21:24:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 24D62E0869; Tue, 23 Feb 2021 21:24:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 CCD60E0869 for ; Tue, 23 Feb 2021 21:24:02 +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 E8A7733BF24 for ; Tue, 23 Feb 2021 21:24:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 562644DB for ; Tue, 23 Feb 2021 21:24:00 +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: <1614115423.cb5cadbe13e5a868a35ddd8c16612d0991e84d86.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-desktop/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-plasma/plasma-desktop/files/plasma-desktop-5.21.0-keyboard-repeat.patch X-VCS-Directories: kde-plasma/plasma-desktop/files/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: cb5cadbe13e5a868a35ddd8c16612d0991e84d86 X-VCS-Branch: master Date: Tue, 23 Feb 2021 21:24:00 +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: 0f4b473c-1411-4120-b5b5-b668de4f2ffa X-Archives-Hash: 93ea920e45f1a42c09043acc2cbe2149 commit: cb5cadbe13e5a868a35ddd8c16612d0991e84d86 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Feb 23 21:23:43 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Feb 23 21:23:43 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb5cadbe kde-plasma/plasma-desktop: Drop unused patch Package-Manager: Portage-3.0.15, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner gentoo.org> .../plasma-desktop-5.21.0-keyboard-repeat.patch | 31 ---------------------- 1 file changed, 31 deletions(-) diff --git a/kde-plasma/plasma-desktop/files/plasma-desktop-5.21.0-keyboard-repeat.patch b/kde-plasma/plasma-desktop/files/plasma-desktop-5.21.0-keyboard-repeat.patch deleted file mode 100644 index 8c7902c0e7d..00000000000 --- a/kde-plasma/plasma-desktop/files/plasma-desktop-5.21.0-keyboard-repeat.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 5550af1fd10dccda80be4586f19e3aa0995be2bc Mon Sep 17 00:00:00 2001 -From: Jan Blackquill -Date: Wed, 17 Feb 2021 12:34:15 -0500 -Subject: [PATCH] kcms/keyboard: fix migration - -TriState::STATE_ON is 0, while TriState::STATE_OFF is 1. -We're currently migrating 0 -> disabled, when it should be -1 -> disabled, * -> enabled. - -BUG: 431923 -FIXED-IN: 5.21.1 ---- - kcms/keyboard/kcminputrc_migrate_repeat_value.py | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/kcms/keyboard/kcminputrc_migrate_repeat_value.py b/kcms/keyboard/kcminputrc_migrate_repeat_value.py -index 1440c570e..bd1667969 100755 ---- a/kcms/keyboard/kcminputrc_migrate_repeat_value.py -+++ b/kcms/keyboard/kcminputrc_migrate_repeat_value.py -@@ -4,7 +4,7 @@ import sys - for line in sys.stdin: - line = line.rstrip() - print(line, file=sys.stderr) -- if line.startswith("KeyboardRepeating=0"): -+ if line.startswith("KeyboardRepeating=1"): - print("KeyRepeat=nothing") - elif line.startswith("KeyboardRepeating="): - print("KeyRepeat=repeat") --- -GitLab -