summaryrefslogtreecommitdiff
path: root/kde-apps/konsole
diff options
context:
space:
mode:
Diffstat (limited to 'kde-apps/konsole')
-rw-r--r--kde-apps/konsole/Manifest2
-rw-r--r--kde-apps/konsole/files/konsole-20.12.0-revert-bold-breakage.patch33
-rw-r--r--kde-apps/konsole/konsole-20.12.1.ebuild (renamed from kde-apps/konsole/konsole-20.12.0.ebuild)2
3 files changed, 35 insertions, 2 deletions
diff --git a/kde-apps/konsole/Manifest b/kde-apps/konsole/Manifest
index 93c8db9d71b0..c7def0b0cea0 100644
--- a/kde-apps/konsole/Manifest
+++ b/kde-apps/konsole/Manifest
@@ -1,2 +1,2 @@
DIST konsole-20.08.3.tar.xz 1212868 BLAKE2B cd3382e8df7f71639e11464a0cf28c087f28f8720c8631aac1970b827f6c377b5c86a9c38e93a5566bf9bdf7b4d36efe4691408e18657dc9566d899bdbc62205 SHA512 8025548b02523c58d4f98ea8950b1001a0223bb8c53d506928707f97d96a3ca4621c6fa6fbf14eb9ffdbe1cd171b4aa9ed2f8c8808eafa166d0f6764f590a5cf
-DIST konsole-20.12.0.tar.xz 1236116 BLAKE2B b03a6a15869fcf720d77ce0c559b9a9942537d6560a0e8d4805ba4138d43ec0908fd23b596159b911d946a9eb4c019c1b523c0ec1a1fceceb8d3cf8032e41e71 SHA512 a77127618167d451ec1ab6d6879a4949d5bd268cfdc827dd31f8bea0b69f71aec1c3e5ccb6d34767b5fd13cb9f9a6157acead23311c796adb9b72f6265e2b95e
+DIST konsole-20.12.1.tar.xz 1238484 BLAKE2B c0e67b05abfde686312d5394f9399a69a12d086969dd08d2643871a7f0741cfed587e03773f609b906cd27f04642d08eb5f1528089237b2c192f0cefabb53a35 SHA512 c2791739afa2655eea9ee87d7513f5666540a1d3e488426af32a9033925732e04b2ccfd2036102f224220f3dbf3505af196857c5f9aa7340f11456fcee509f61
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
new file mode 100644
index 000000000000..8e79793601e7
--- /dev/null
+++ b/kde-apps/konsole/files/konsole-20.12.0-revert-bold-breakage.patch
@@ -0,0 +1,33 @@
+From 08a51bbdd70c0c850f44a660a7efbe4c394b8ee3 Mon Sep 17 00:00:00 2001
+From: "Jason A. Donenfeld" <Jason@zx2c4.com>
+Date: Thu, 17 Dec 2020 17:21:44 +0100
+Subject: [PATCH] Revert "Fix bold character color paint"
+
+This reverts commit 270d6ea3247bb41a51535129e4b1c8eef51cf316.
+---
+ src/Screen.cpp | 8 +++++++-
+ 1 file changed, 7 insertions(+), 1 deletion(-)
+
+diff --git a/src/Screen.cpp b/src/Screen.cpp
+index 8e7eee51..c8f477ce 100644
+--- a/src/Screen.cpp
++++ b/src/Screen.cpp
+@@ -474,8 +474,14 @@ void Screen::updateEffectiveRendition()
+ _effectiveBackground = _currentBackground;
+ }
+
+- if ((_currentRendition & RE_BOLD) == 0 && (_currentRendition & RE_FAINT) != 0) {
++ if ((_currentRendition & RE_BOLD) != 0) {
++ if ((_currentRendition & RE_FAINT) == 0) {
++ _effectiveForeground.setIntensive();
++ }
++ } else {
++ if ((_currentRendition & RE_FAINT) != 0) {
+ _effectiveForeground.setFaint();
++ }
+ }
+ }
+
+--
+2.29.2
+
diff --git a/kde-apps/konsole/konsole-20.12.0.ebuild b/kde-apps/konsole/konsole-20.12.1.ebuild
index daf4f69455a5..64dc257a6634 100644
--- a/kde-apps/konsole/konsole-20.12.0.ebuild
+++ b/kde-apps/konsole/konsole-20.12.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7