diff options
Diffstat (limited to 'kde-frameworks/ktexteditor')
3 files changed, 0 insertions, 99 deletions
diff --git a/kde-frameworks/ktexteditor/Manifest b/kde-frameworks/ktexteditor/Manifest index f09200da7e0d..085c2b3a525d 100644 --- a/kde-frameworks/ktexteditor/Manifest +++ b/kde-frameworks/ktexteditor/Manifest @@ -1,2 +1 @@ -DIST ktexteditor-5.80.0.tar.xz 2375112 BLAKE2B d052677f8a3b81b39f95958f48b7fc899a1c6591c327a852dfbe40269062a2876cf199f7679712ce1d612b2bc13f8e79f0379ca0600c1d5e2ecf12ed3d03620b SHA512 c6065e3e4c0f2bb59dd043109b3fbc2282e82b3d023011fe726693728257e6d9061cbd07fc23e97de5a73bfac9832b5065c0bbdd8be3f5d187788f6957753820 DIST ktexteditor-5.82.0.tar.xz 2341712 BLAKE2B cab63977dd8d2e8e9c2b766a9b0563cc98f0b25e2f39f2b598f9b8162ce2e12a3ac41cb74cd6f9cd9509f5987d47d27c9ee3114579ce260837d84bb06b7ae683 SHA512 1459ba61ed4a4b603cd984449a217230914818e32c318a92232957cc83d5e70f2a55bf150ca946252c696e019c24dee5b852ca5046c9914f3fff1c6906487bdf diff --git a/kde-frameworks/ktexteditor/files/ktexteditor-5.80.0-fix-minimap-location-highlighting.patch b/kde-frameworks/ktexteditor/files/ktexteditor-5.80.0-fix-minimap-location-highlighting.patch deleted file mode 100644 index ffc94e9c97ab..000000000000 --- a/kde-frameworks/ktexteditor/files/ktexteditor-5.80.0-fix-minimap-location-highlighting.patch +++ /dev/null @@ -1,35 +0,0 @@ -From bdd195792b7752e4c5a0ff74cb5b01a6accee517 Mon Sep 17 00:00:00 2001 -From: Jan Paul Batrina <jpmbatrina01@gmail.com> -Date: Thu, 25 Mar 2021 19:31:39 +0800 -Subject: [PATCH] Use QPalette::highlight for the scrollbar minimap slider - -Previously, QPalette::link() was used which is the color for hyperlinks. -Most themes set this to a shade of blue, so the slider will almost -always be blue even when, for example, the main color -of a theme is green. - -The selection highlight color was chosen because it is also the color -used for indicating the active tab and is, generally, often attuned -to a theme's main color. - -BUG: 434690 ---- - src/view/kateviewhelpers.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/view/kateviewhelpers.cpp b/src/view/kateviewhelpers.cpp -index 365e07e0..48e94609 100644 ---- a/src/view/kateviewhelpers.cpp -+++ b/src/view/kateviewhelpers.cpp -@@ -750,7 +750,7 @@ void KateScrollBar::miniMapPaintEvent(QPaintEvent *e) - // calculate colors - const QColor backgroundColor = m_view->defaultStyleAttribute(KTextEditor::dsNormal)->background().color(); - const QColor foregroundColor = m_view->defaultStyleAttribute(KTextEditor::dsNormal)->foreground().color(); -- const QColor highlightColor = palette().link().color(); -+ const QColor highlightColor = palette().highlight().color(); - - const int backgroundLightness = backgroundColor.lightness(); - const int foregroundLightness = foregroundColor.lightness(); --- -GitLab - diff --git a/kde-frameworks/ktexteditor/ktexteditor-5.80.0-r1.ebuild b/kde-frameworks/ktexteditor/ktexteditor-5.80.0-r1.ebuild deleted file mode 100644 index cf3a497d3a5a..000000000000 --- a/kde-frameworks/ktexteditor/ktexteditor-5.80.0-r1.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PVCUT=$(ver_cut 1-2) -QTMIN=5.15.2 -VIRTUALX_REQUIRED="test" -inherit ecm kde.org - -DESCRIPTION="Framework providing a full text editor component" - -LICENSE="LGPL-2+" -KEYWORDS="amd64 ~arm arm64 ~ppc64 x86" -IUSE="+editorconfig git" - -RESTRICT+=" test" - -BDEPEND=" - test? ( >=kde-frameworks/kservice-${PVCUT}:5 ) -" -DEPEND=" - >=dev-qt/qtdeclarative-${QTMIN}:5 - >=dev-qt/qtgui-${QTMIN}:5 - >=dev-qt/qtprintsupport-${QTMIN}:5 - >=dev-qt/qtwidgets-${QTMIN}:5 - >=dev-qt/qtxml-${QTMIN}:5 - =kde-frameworks/karchive-${PVCUT}*:5 - =kde-frameworks/kauth-${PVCUT}*:5 - =kde-frameworks/kcodecs-${PVCUT}*:5 - =kde-frameworks/kcompletion-${PVCUT}*:5 - =kde-frameworks/kconfig-${PVCUT}*:5 - =kde-frameworks/kconfigwidgets-${PVCUT}*:5 - =kde-frameworks/kcoreaddons-${PVCUT}*:5 - =kde-frameworks/kguiaddons-${PVCUT}*:5 - =kde-frameworks/ki18n-${PVCUT}*:5 - =kde-frameworks/kiconthemes-${PVCUT}*:5 - =kde-frameworks/kio-${PVCUT}*:5 - =kde-frameworks/kitemviews-${PVCUT}*:5 - =kde-frameworks/kjobwidgets-${PVCUT}*:5 - =kde-frameworks/kparts-${PVCUT}*:5 - =kde-frameworks/ktextwidgets-${PVCUT}*:5 - =kde-frameworks/kwidgetsaddons-${PVCUT}*:5 - =kde-frameworks/kxmlgui-${PVCUT}*:5 - =kde-frameworks/sonnet-${PVCUT}*:5 - =kde-frameworks/syntax-highlighting-${PVCUT}*:5 - editorconfig? ( app-text/editorconfig-core-c ) - git? ( dev-libs/libgit2:= ) -" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}"/${P}-fix-minimap-location-highlighting.patch # KDE-bug 434690 -) - -src_configure() { - local mycmakeargs=( - $(cmake_use_find_package editorconfig EditorConfig) - $(cmake_use_find_package git LibGit2) - ) - - ecm_src_configure -} |