epel9
Rex Dieter 4 years ago
parent 63528ad511
commit 4989ea5fb0

1
.gitignore vendored

@ -31,3 +31,4 @@
/kcompletion-5.76.0.tar.xz
/kcompletion-5.77.0.tar.xz
/kcompletion-5.78.0.tar.xz
/kcompletion-5.79.0.tar.xz

@ -1,27 +0,0 @@
From 7acda936f06193e9fc85ae5cf9ccc8d65971f657 Mon Sep 17 00:00:00 2001
From: Albert Astals Cid <aacid@kde.org>
Date: Tue, 12 Jan 2021 23:43:19 +0100
Subject: [PATCH 3/5] Fix regression caused due to porting from operator+ to
operator|
BUGS: 431493
---
src/klineedit.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/klineedit.cpp b/src/klineedit.cpp
index 1cc9316..8201259 100644
--- a/src/klineedit.cpp
+++ b/src/klineedit.cpp
@@ -1222,7 +1222,7 @@ bool KLineEditPrivate::overrideShortcut(const QKeyEvent *e)
// but doesn't dare force as "stronger than kaction shortcuts"...
else if (e->matches(QKeySequence::SelectAll)) {
return true;
- } else if (qApp->platformName() == QLatin1String("xcb") && (key == Qt::CTRL | Qt::Key_E || key == Qt::CTRL | Qt::Key_U)) {
+ } else if (qApp->platformName() == QLatin1String("xcb") && (key == (Qt::CTRL | Qt::Key_E) || key == (Qt::CTRL | Qt::Key_U))) {
return true;
}
--
2.29.2

@ -1,9 +1,8 @@
%undefine __cmake_in_source_build
%global framework kcompletion
Name: kf5-%{framework}
Version: 5.78.0
Release: 3%{?dist}
Version: 5.79.0
Release: 1%{?dist}
Summary: KDE Frameworks 5 Tier 2 addon with auto completion widgets and classes
License: LGPLv2+
@ -19,7 +18,6 @@ URL: https://invent.kde.org/frameworks/%{framework}
Source0: http://download.kde.org/%{stable}/frameworks/%{majmin}/%{framework}-%{version}.tar.xz
## upstream fixes
Patch3: 0003-Fix-regression-caused-due-to-porting-from-operator-t.patch
BuildRequires: extra-cmake-modules >= %{majmin}
BuildRequires: kf5-kconfig-devel >= %{majmin}
@ -77,6 +75,9 @@ developing applications that use %{name}.
%changelog
* Sat Feb 06 2021 Rex Dieter <rdieter@fedoraproject.org> - 5.79.0-1
- 5.79.0
* Tue Jan 26 2021 Rex Dieter <rdieter@fedoraproject.org> - 5.78.0-3
- Pull in upstream regression fix
- use %%autosetup

@ -1 +1 @@
SHA512 (kcompletion-5.78.0.tar.xz) = 29fbc9c56a34601a4c674c45d04a3d2b79beebe0484c2dc80bf7a9a71de9c8ee82b548bd8d3df521593a60e37f0789d9e23eec5058fab9c3bfee2e53c8d6f58a
SHA512 (kcompletion-5.79.0.tar.xz) = 334b21c919a17a76c26bab890d8a785e054958153793bdbe03fb8fe8bbacd0287947f02a9072ec99b4c2963f7c03eea47b3e79c18011dc40d17404ec038c581d

Loading…
Cancel
Save