Hello community,
here is the log from the commit of package xf86-input-libinput for
openSUSE:Factory checked in at 2016-10-22 13:01:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xf86-input-libinput (Old)
and /work/SRC/openSUSE:Factory/.xf86-input-libinput.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xf86-input-libinput"
Changes:
--------
--- /work/SRC/openSUSE:Factory/xf86-input-libinput/xf86-input-libinput.changes
2016-10-10 17:35:21.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.xf86-input-libinput.new/xf86-input-libinput.changes
2016-10-22 13:01:49.000000000 +0200
@@ -1,0 +2,7 @@
+Sat Oct 15 10:22:21 UTC 2016 - [email protected]
+
+- Add upstream patch to fix touchpad when lmr option is used:
+ U_xf86-input-libinput-Fix_tap_button_map_option_handling.patch.
+ Fixes fdo#97989.
+
+-------------------------------------------------------------------
New:
----
U_xf86-input-libinput-Fix_tap_button_map_option_handling.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ xf86-input-libinput.spec ++++++
--- /var/tmp/diff_new_pack.rSD8WS/_old 2016-10-22 13:01:49.000000000 +0200
+++ /var/tmp/diff_new_pack.rSD8WS/_new 2016-10-22 13:01:49.000000000 +0200
@@ -27,6 +27,7 @@
Source1:
http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2.sig
Source2: %{name}.keyring
Patch0: n_enable-tapping.patch
+Patch1: U_xf86-input-libinput-Fix_tap_button_map_option_handling.patch
BuildRequires: pkg-config
BuildRequires: pkgconfig(inputproto) >= 2.2
BuildRequires: pkgconfig(libinput) >= 1.4.901
@@ -58,6 +59,7 @@
%prep
%setup -q
%patch0 -p1
+%patch1 -p1
%build
%configure --with-xorg-conf-dir="%{_sysconfdir}/X11/xorg.conf.d/"
++++++ U_xf86-input-libinput-Fix_tap_button_map_option_handling.patch ++++++
>From 6318ac420b644c7f7a6f2c8e47a64238a4afebeb Mon Sep 17 00:00:00 2001
From: Peter Hutterer <[email protected]>
Date: Fri, 14 Oct 2016 13:34:56 +1000
Subject: Fix tap button map option handling
Copy/paste error
https://bugs.freedesktop.org/show_bug.cgi?id=97989
Signed-off-by: Peter Hutterer <[email protected]>
diff --git a/src/xf86libinput.c b/src/xf86libinput.c
index 21f87f5..69f7ae3 100644
--- a/src/xf86libinput.c
+++ b/src/xf86libinput.c
@@ -2146,10 +2146,10 @@ xf86libinput_parse_tap_buttonmap_option(InputInfoPtr
pInfo,
free(str);
}
- if (libinput_device_config_send_events_set_mode(device, map) !=
+ if (libinput_device_config_tap_set_button_map(device, map) !=
LIBINPUT_CONFIG_STATUS_SUCCESS) {
xf86IDrvMsg(pInfo, X_ERROR,
- "Failed to set Tapping Drag Lock to %d\n",
+ "Failed to set Tapping Button Map to %d\n",
map);
map = libinput_device_config_tap_get_button_map(device);
}
--
cgit v0.10.2