[Pkg-sdl-commits] [libsdl2] 02/04: Start of 2.0.1 release

Manuel A. Fernandez Montecelo mafm at moszumanska.debian.org
Sun Dec 1 21:46:34 UTC 2013


This is an automated email from the git hooks/post-receive script.

mafm pushed a commit to branch master
in repository libsdl2.

commit 6d441915b558b29b91ba92c2a247ff9d76294d45
Author: Manuel A. Fernandez Montecelo <mafm at debian.org>
Date:   Thu Nov 14 15:34:10 2013 +0000

    Start of 2.0.1 release
---
 debian/changelog                                   |  8 +++
 ...23797-false_positives_in_mouse_wheel_code.patch | 59 ----------------------
 debian/patches/series                              |  1 -
 3 files changed, 8 insertions(+), 60 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 261e006..05b2a68 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+libsdl2 (2.0.1+dfsg1-1) UNRELEASED; urgency=low
+
+  * New upstream release (Closes: #728974)
+  * Remove patch applied upstream:
+    bug-723797-false_positives_in_mouse_wheel_code.patch
+
+ -- Manuel A. Fernandez Montecelo <mafm at debian.org>  Thu, 14 Nov 2013 15:10:01 +0000
+
 libsdl2 (2.0.0+dfsg1-3) unstable; urgency=low
 
   * Build-Depends on pkg-config
diff --git a/debian/patches/bug-723797-false_positives_in_mouse_wheel_code.patch b/debian/patches/bug-723797-false_positives_in_mouse_wheel_code.patch
deleted file mode 100644
index d8be80e..0000000
--- a/debian/patches/bug-723797-false_positives_in_mouse_wheel_code.patch
+++ /dev/null
@@ -1,59 +0,0 @@
-Description: Work around a false-positive in the X11 mouse wheel code
- .
- This false positive occurs when one particular button on my mouse is
- pressed. The kernel which I'm using is patched to cause a release event to
- be synthesised immediately when the mouse says that this button is pressed
- because the mouse doesn't signal release until the button is next pressed.
- .
- (Also documents a false negative, observed with the horizontal scroll wheel
- on the same mouse.)
-Author: Darren Salt <devspam at moreofthesa.me.uk>
-Last-Update: 2013-10-19
-Bug-Debian: http://bugs.debian.org/723797
-Forwarded: http://bugzilla.libsdl.org/show_bug.cgi?id=2110
-Applied-Upstream: http://hg.libsdl.org/SDL/rev/6073ad385c9b
-
-# HG changeset patch
-# User Sam Lantinga <slouken at libsdl.org>
-# Date 1380350117 25200
-# Node ID 6073ad385c9bd68834950c556b4e643f4fad638e
-# Parent  3c9889bf26269988c8ea7bee3154d2cd3b7875ae
-# User Darren Salt <devspam at moreofthesa.me.uk>
-# Date 1379621782 -3600
-#      Thu Sep 19 21:16:22 2013 +0100
-Work around a false-positive in the X11 mouse wheel code
-
-This false positive occurs when one particular button on my mouse is
-pressed. The kernel which I'm using is patched to cause a release event to
-be synthesised immediately when the mouse says that this button is pressed
-because the mouse doesn't signal release until the button is next pressed.
-
-(Also documents a false negative, observed with the horizontal scroll wheel
-on the same mouse.)
-
---- a/src/video/x11/SDL_x11events.c
-+++ b/src/video/x11/SDL_x11events.c
-@@ -135,7 +135,9 @@
-     XPointer arg)
- {
-     XEvent *event = (XEvent *) arg;
-+    /* we only handle buttons 4 and 5 - false positive avoidance */
-     if (chkev->type == ButtonRelease &&
-+        (event->xbutton.button == Button4 || event->xbutton.button == Button5) &&
-         chkev->xbutton.button == event->xbutton.button &&
-         chkev->xbutton.time == event->xbutton.time)
-         return True;
-@@ -150,7 +152,12 @@
-            however, mouse wheel events trigger a button press and a button release
-            immediately. thus, checking if the same button was released at the same
-            time as it was pressed, should be an adequate hack to derive a mouse
--           wheel event. */
-+           wheel event.
-+           However, there is broken and unusual hardware out there...
-+           - False positive: a button for which a release event is
-+             generated (or synthesised) immediately.
-+           - False negative: a wheel which, when rolled, doesn't have
-+             a release event generated immediately. */
-         if (XCheckIfEvent(display, &relevent, X11_IsWheelCheckIfEvent,
-             (XPointer) event)) {
- 
diff --git a/debian/patches/series b/debian/patches/series
index ca8d102..b6f97fc 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,3 +1,2 @@
 SDL2_dont_propagate_lpthread.diff
 fix_joystick_misc_axes.diff
-bug-723797-false_positives_in_mouse_wheel_code.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-sdl/packages/libsdl2.git



More information about the pkg-sdl-commits mailing list