diff options
author | 2018-08-07 02:14:53 +0200 | |
---|---|---|
committer | 2018-08-07 09:05:39 +0200 | |
commit | 3602846ce635b5c837d9671239f29290a7288188 (patch) | |
tree | fcb1e827ec5bb8d44fffda35edca86ad7012702f /kde-apps/konsole | |
parent | media-gfx/exiv2: Fix build with clang (diff) | |
download | gentoo-3602846ce635b5c837d9671239f29290a7288188.tar.gz gentoo-3602846ce635b5c837d9671239f29290a7288188.tar.bz2 gentoo-3602846ce635b5c837d9671239f29290a7288188.zip |
kde-apps: Drop KDE Applications 17.12.3
Package-Manager: Portage-2.3.44, Repoman-2.3.10
Diffstat (limited to 'kde-apps/konsole')
-rw-r--r-- | kde-apps/konsole/Manifest | 1 | ||||
-rw-r--r-- | kde-apps/konsole/files/konsole-17.12.1-libinput-pixeldelta.patch | 54 | ||||
-rw-r--r-- | kde-apps/konsole/konsole-17.12.3.ebuild | 58 |
3 files changed, 0 insertions, 113 deletions
diff --git a/kde-apps/konsole/Manifest b/kde-apps/konsole/Manifest index 13219653ebd9..0047fb0dca1a 100644 --- a/kde-apps/konsole/Manifest +++ b/kde-apps/konsole/Manifest @@ -1,2 +1 @@ -DIST konsole-17.12.3.tar.xz 1026672 BLAKE2B 98f2f545aae26965009a79d196640811702e9444a21c665db1f4da277a1059943f192a31ea1020c52867523ad40bfe21bc09503ec2643b289da1ed69c7eda30e SHA512 973c47341ebe729442ba8f8a7523eccaf5da28afbfe236fd4ec2897f710c3967f22ed5cd8f2f997f631a5369625c830f7a4540cdf6953874c2f556f547c413a0 DIST konsole-18.04.3.tar.xz 1043452 BLAKE2B 341d589ea00536913d008548affecf301f9c455661eb5630e345481d75c3feb0138e5dff23d25421d0f375381586c4dc72b511042cb4803dc75873a943c20658 SHA512 0809cf4db6e10e672a4a976609045fb88879fe615b48e452f140da0a6c44971f31a7b4606124ed3b7642ee3f3556ace45b31e0b5c466df611fea98a9cf702066 diff --git a/kde-apps/konsole/files/konsole-17.12.1-libinput-pixeldelta.patch b/kde-apps/konsole/files/konsole-17.12.1-libinput-pixeldelta.patch deleted file mode 100644 index 37049b9b2f2a..000000000000 --- a/kde-apps/konsole/files/konsole-17.12.1-libinput-pixeldelta.patch +++ /dev/null @@ -1,54 +0,0 @@ -From d25e5ac7089f2c81cc5ffe8e155ba8b3dfb11b97 Mon Sep 17 00:00:00 2001 -From: Kurt Hindenburg <kurt.hindenburg@gmail.com> -Date: Wed, 7 Feb 2018 10:38:09 -0500 -Subject: Fix mouse wheel scrolling with libinput - -If the Libinput X server input driver is used we get a value for -pixelDelta for a physical mouse wheel scroll, so we check that the -source of the wheel event is actually a mouse, this was fixed in -Qt 5.9.5* -https://bugreports.qt.io/browse/QTBUG-59261 - -Patch by ahmadsamir - -* fixed in Gentoo: Qt 5.9.4 - -BUG: 386762 -Differential Revision: https://phabricator.kde.org/D9008 ---- - src/ScrollState.cpp | 19 +++++++++++++++---- - 1 file changed, 15 insertions(+), 4 deletions(-) - -diff --git a/src/ScrollState.cpp b/src/ScrollState.cpp -index e5b486d..f71b142 100644 ---- a/src/ScrollState.cpp -+++ b/src/ScrollState.cpp -@@ -25,10 +25,21 @@ using namespace Konsole; - - void ScrollState::addWheelEvent(const QWheelEvent *wheel) - { -- if ((wheel->angleDelta().y() != 0) && (wheel->pixelDelta().y() == 0)) { -- _remainingScrollPixel = 0; -- } else { -- _remainingScrollPixel += wheel->pixelDelta().y(); -+ // If the Libinput X server input driver is used we get a value for -+ // pixelDelta for a physical mouse wheel scroll, so we check that -+ // the source of the wheel event is actually a mouse, this has been -+ // fixed upstream in Qt 5.9.5: https://bugreports.qt.io/browse/QTBUG-59261 -+ // Fixes Konsole BUG: https://bugs.kde.org/show_bug.cgi?id=386762 -+#if (QT_VERSION < QT_VERSION_CHECK(5, 9, 4)) -+ if (wheel->source() != Qt::MouseEventNotSynthesized) { -+#else -+ if (true) { -+#endif -+ if ((wheel->angleDelta().y() != 0) && (wheel->pixelDelta().y() == 0)) { -+ _remainingScrollPixel = 0; -+ } else { -+ _remainingScrollPixel += wheel->pixelDelta().y(); -+ } - } - _remainingScrollAngle += wheel->angleDelta().y(); - } --- -cgit v0.11.2 - diff --git a/kde-apps/konsole/konsole-17.12.3.ebuild b/kde-apps/konsole/konsole-17.12.3.ebuild deleted file mode 100644 index 546e7f2cc269..000000000000 --- a/kde-apps/konsole/konsole-17.12.3.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -KDE_HANDBOOK="optional" -KDE_TEST="true" -VIRTUALX_REQUIRED="test" -inherit kde5 - -DESCRIPTION="KDE's terminal emulator" -HOMEPAGE="https://www.kde.org/applications/system/konsole https://konsole.kde.org" - -KEYWORDS="amd64 x86" -IUSE="X" - -DEPEND=" - $(add_frameworks_dep kbookmarks) - $(add_frameworks_dep kcompletion) - $(add_frameworks_dep kconfig) - $(add_frameworks_dep kconfigwidgets) - $(add_frameworks_dep kcoreaddons) - $(add_frameworks_dep kcrash) - $(add_frameworks_dep kdbusaddons) - $(add_frameworks_dep kguiaddons) - $(add_frameworks_dep kjobwidgets) - $(add_frameworks_dep ki18n) - $(add_frameworks_dep kinit) - $(add_frameworks_dep kiconthemes) - $(add_frameworks_dep kio) - $(add_frameworks_dep knotifications) - $(add_frameworks_dep knotifyconfig) - $(add_frameworks_dep kparts) - $(add_frameworks_dep kpty) - $(add_frameworks_dep kservice) - $(add_frameworks_dep ktextwidgets) - $(add_frameworks_dep kwidgetsaddons) - $(add_frameworks_dep kwindowsystem) - $(add_frameworks_dep kxmlgui) - $(add_qt_dep qtdbus) - $(add_qt_dep qtgui) - $(add_qt_dep qtnetwork) - $(add_qt_dep qtprintsupport) - $(add_qt_dep qtwidgets) - $(add_qt_dep qtxml) - X? ( x11-libs/libX11 ) -" -RDEPEND="${DEPEND}" - -PATCHES=( "${FILESDIR}/${PN}-17.12.1-libinput-pixeldelta.patch" ) - -src_configure() { - local mycmakeargs=( - $(cmake-utils_use_find_package X X11) - ) - - kde5_src_configure -} |