Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/konsole/files/
Date: Fri, 29 Jan 2021 20:41:54
Message-Id: 1611952898.b79efdba4a801fa533c4ca85e3124d96c71d878c.asturm@gentoo
1 commit: b79efdba4a801fa533c4ca85e3124d96c71d878c
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Fri Jan 29 15:42:00 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 29 20:41:38 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b79efdba
7
8 kde-apps/konsole: remove unused patch(es)
9
10 Package-Manager: Portage-3.0.14, Repoman-3.0.2
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/19252
13 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
14
15 .../konsole-20.12.0-revert-bold-breakage.patch | 33 ----------------------
16 1 file changed, 33 deletions(-)
17
18 diff --git a/kde-apps/konsole/files/konsole-20.12.0-revert-bold-breakage.patch b/kde-apps/konsole/files/konsole-20.12.0-revert-bold-breakage.patch
19 deleted file mode 100644
20 index 8e79793601e..00000000000
21 --- a/kde-apps/konsole/files/konsole-20.12.0-revert-bold-breakage.patch
22 +++ /dev/null
23 @@ -1,33 +0,0 @@
24 -From 08a51bbdd70c0c850f44a660a7efbe4c394b8ee3 Mon Sep 17 00:00:00 2001
25 -From: "Jason A. Donenfeld" <Jason@×××××.com>
26 -Date: Thu, 17 Dec 2020 17:21:44 +0100
27 -Subject: [PATCH] Revert "Fix bold character color paint"
28 -
29 -This reverts commit 270d6ea3247bb41a51535129e4b1c8eef51cf316.
30 ----
31 - src/Screen.cpp | 8 +++++++-
32 - 1 file changed, 7 insertions(+), 1 deletion(-)
33 -
34 -diff --git a/src/Screen.cpp b/src/Screen.cpp
35 -index 8e7eee51..c8f477ce 100644
36 ---- a/src/Screen.cpp
37 -+++ b/src/Screen.cpp
38 -@@ -474,8 +474,14 @@ void Screen::updateEffectiveRendition()
39 - _effectiveBackground = _currentBackground;
40 - }
41 -
42 -- if ((_currentRendition & RE_BOLD) == 0 && (_currentRendition & RE_FAINT) != 0) {
43 -+ if ((_currentRendition & RE_BOLD) != 0) {
44 -+ if ((_currentRendition & RE_FAINT) == 0) {
45 -+ _effectiveForeground.setIntensive();
46 -+ }
47 -+ } else {
48 -+ if ((_currentRendition & RE_FAINT) != 0) {
49 - _effectiveForeground.setFaint();
50 -+ }
51 - }
52 - }
53 -
54 ---
55 -2.29.2
56 -