From 0eeeb5a95182296359e5a0d25bcfaf47a48545bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Wed, 6 Nov 2013 02:41:30 -0200 Subject: kdebase-runtime-libre-4.11.3-1: updating version --- libre/kdebase-runtime-libre/PKGBUILD | 8 ++-- libre/kdebase-runtime-libre/kdebug-324470.patch | 49 ------------------------- 2 files changed, 3 insertions(+), 54 deletions(-) delete mode 100644 libre/kdebase-runtime-libre/kdebug-324470.patch (limited to 'libre') diff --git a/libre/kdebase-runtime-libre/PKGBUILD b/libre/kdebase-runtime-libre/PKGBUILD index 7d6f46066..581317fff 100644 --- a/libre/kdebase-runtime-libre/PKGBUILD +++ b/libre/kdebase-runtime-libre/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 195503 2013-10-01 15:14:05Z svenstaro $ +# $Id: PKGBUILD 198793 2013-11-04 15:15:34Z andrea $ # Maintainer: Andrea Scarpino # Contributor: Pierre Schmitz # Maintainer (Parabola): André Silva _pkgname=kdebase-runtime pkgname=kdebase-runtime-libre -pkgver=4.11.2 +pkgver=4.11.3 pkgrel=1 pkgdesc="Plugins and applications necessary for the running of KDE applications, without non-privacy search providers" arch=('i686' 'x86_64' 'mips64el') @@ -26,14 +26,12 @@ install="${_pkgname}.install" source=("http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz" 'duckduckgo_html.desktop' 'duckduckgo_lite.desktop') -sha1sums=('b896ef9d8fe770720dc16ae3eae33538e4e699da' +sha1sums=('c9af4e5e52018caf26113075f7ec5903122e43d5' 'aa6f39f4b0ad3c110fd05cd6c41190afae9773dd' 'ac3bac94a2c4b1444642524bc5fb539c4c5dcc5b') prepare() { mkdir build - - cd kde-runtime-${pkgver} } build() { diff --git a/libre/kdebase-runtime-libre/kdebug-324470.patch b/libre/kdebase-runtime-libre/kdebug-324470.patch deleted file mode 100644 index 4269df829..000000000 --- a/libre/kdebase-runtime-libre/kdebug-324470.patch +++ /dev/null @@ -1,49 +0,0 @@ -commit be1a5d484c70f4f6a383150810afbfbb367db2ac -Author: Eike Hein -Date: Tue Sep 3 20:29:23 2013 +0200 - - Discard the recorded events in the item-local handlers. - - Solves problems with identical events being ignored due to - QGraphicsView's reuse of QGraphicsSceneMouseEvent instances. - - CCMAIL:rdieter@fedoraproject.org - BUG:324470 - BUG:324471 - -diff --git a/plasma/declarativeimports/qtextracomponents/mouseeventlistener.cpp b/plasma/declarativeimports/qtextracomponents/mouseeventlistener.cpp -index b534845..36530e0 100644 ---- a/plasma/declarativeimports/qtextracomponents/mouseeventlistener.cpp -+++ b/plasma/declarativeimports/qtextracomponents/mouseeventlistener.cpp -@@ -90,6 +90,7 @@ bool MouseEventListener::containsMouse() const - void MouseEventListener::mousePressEvent(QGraphicsSceneMouseEvent *me) - { - if (m_lastEvent == me) { -+ m_lastEvent = 0; - return; - } - -@@ -112,6 +113,7 @@ void MouseEventListener::mousePressEvent(QGraphicsSceneMouseEvent *me) - void MouseEventListener::mouseMoveEvent(QGraphicsSceneMouseEvent *me) - { - if (m_lastEvent == me) { -+ m_lastEvent = 0; - return; - } - -@@ -122,6 +124,7 @@ void MouseEventListener::mouseMoveEvent(QGraphicsSceneMouseEvent *me) - void MouseEventListener::mouseReleaseEvent(QGraphicsSceneMouseEvent *me) - { - if (m_lastEvent == me) { -+ m_lastEvent = 0; - return; - } - -@@ -138,6 +141,7 @@ void MouseEventListener::mouseReleaseEvent(QGraphicsSceneMouseEvent *me) - void MouseEventListener::wheelEvent(QGraphicsSceneWheelEvent *we) - { - if (m_lastEvent == we) { -+ m_lastEvent = 0; - return; - } - -- cgit v1.2.3-2-g168b