summaryrefslogtreecommitdiff
path: root/libre/kdebase-runtime-libre
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-09-11 01:51:01 -0700
committerroot <root@rshg054.dnsready.net>2013-09-11 01:51:01 -0700
commit2cfbbdcb041073ed1f9aff2f2fd630b24e039e6d (patch)
treedc3af95fb8134ce025aa4a516ab1a00adf0e1917 /libre/kdebase-runtime-libre
parentf5039428394b8715a685c006ab4c7421f45d0aff (diff)
Wed Sep 11 01:49:28 PDT 2013
Diffstat (limited to 'libre/kdebase-runtime-libre')
-rw-r--r--libre/kdebase-runtime-libre/PKGBUILD11
-rw-r--r--libre/kdebase-runtime-libre/kdebug-324470.patch49
2 files changed, 57 insertions, 3 deletions
diff --git a/libre/kdebase-runtime-libre/PKGBUILD b/libre/kdebase-runtime-libre/PKGBUILD
index d48522c2e..a27f22dcf 100644
--- a/libre/kdebase-runtime-libre/PKGBUILD
+++ b/libre/kdebase-runtime-libre/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 193952 2013-09-07 17:31:32Z andrea $
+# $Id: PKGBUILD 194219 2013-09-10 22:35:14Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Pierre Schmitz <pierre@archlinux.de>
# Maintainer (Parabola): André Silva <emulatorman@lavabit.com>
_pkgname=kdebase-runtime
pkgname=kdebase-runtime-libre
-pkgver=4.11.0
+pkgver=4.11.1
pkgrel=2
pkgdesc="Plugins and applications necessary for the running of KDE applications, without non-privacy search providers"
arch=('i686' 'x86_64' 'mips64el')
@@ -24,14 +24,19 @@ optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
'rarian: needed by KHelpCenter')
install="${_pkgname}.install"
source=("http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"
+ 'kdebug-324470.patch'
'duckduckgo_html.desktop'
'duckduckgo_lite.desktop')
-sha1sums=('87f693a9cbb149dfa2be49d98562b2bc7add99b7'
+sha1sums=('3457ffdbd1921bc6bc78cd8a9a463822d515b079'
+ '80db2d34f9e62dbea5d7e94b7bef93d2cf46f6d7'
'aa6f39f4b0ad3c110fd05cd6c41190afae9773dd'
'ac3bac94a2c4b1444642524bc5fb539c4c5dcc5b')
prepare() {
mkdir build
+
+ cd kde-runtime-${pkgver}
+ patch -p1 -i "${srcdir}"/kdebug-324470.patch
}
build() {
diff --git a/libre/kdebase-runtime-libre/kdebug-324470.patch b/libre/kdebase-runtime-libre/kdebug-324470.patch
new file mode 100644
index 000000000..4269df829
--- /dev/null
+++ b/libre/kdebase-runtime-libre/kdebug-324470.patch
@@ -0,0 +1,49 @@
+commit be1a5d484c70f4f6a383150810afbfbb367db2ac
+Author: Eike Hein <hein@kde.org>
+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;
+ }
+