rpms/hal/devel hal-0.5.13-touchpad.patch, NONE, 1.1 hal-xen-unignore-axes.patch, NONE, 1.1 .cvsignore, 1.65, 1.66 hal.spec, 1.206, 1.207 sources, 1.67, 1.68

Richard Hughes rhughes at fedoraproject.org
Fri Dec 4 13:14:36 UTC 2009


Author: rhughes

Update of /cvs/pkgs/rpms/hal/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1094

Modified Files:
	.cvsignore hal.spec sources 
Added Files:
	hal-0.5.13-touchpad.patch hal-xen-unignore-axes.patch 
Log Message:
* Fri Dec 04 2009 Richard Hughes <rhughes at redhat.com> - 0.5.14-1
- New release.
- See http://lists.freedesktop.org/archives/hal/2009-November/013671.html


hal-0.5.13-touchpad.patch:
 device.c |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

--- NEW FILE hal-0.5.13-touchpad.patch ---
diff -up hal-0.5.13/hald/linux/device.c.jx hal-0.5.13/hald/linux/device.c
--- hal-0.5.13/hald/linux/device.c.jx	2009-07-15 02:54:11.000000000 -0400
+++ hal-0.5.13/hald/linux/device.c	2009-11-18 11:25:01.000000000 -0500
@@ -1164,7 +1164,10 @@ input_test_abs (HalDevice *d, const char
 				goto out;
 			}
 
-			if (test_bit (BTN_TOUCH, bitmask_key)) {
+			if ((test_bit (BTN_TOUCH, bitmask_key) ||
+			     test_bit (ABS_PRESSURE, bitmask_abs)) &&
+			    test_bit (BTN_TOOL_FINGER, bitmask_key) &&
+			    !test_bit (BTN_TOOL_PEN, bitmask_key)) {
 				hal_device_add_capability (d, "input.touchpad");
 				goto out;
 			}

hal-xen-unignore-axes.patch:
 10-x11-input.fdi |    8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

--- NEW FILE hal-xen-unignore-axes.patch ---
>From e48f59d2b9bcb43ea8a7b8c884dcb73c8f65b170 Mon Sep 17 00:00:00 2001
From: Peter Hutterer <peter.hutterer at who-t.net>
Date: Mon, 19 Oct 2009 14:27:20 +1000
Subject: [PATCH] Un-ignore absolute axes for the Xen Virtual Pointer.

The evdev-internal axis type picking fails for the Xen Virtual Pointer as it
exposes both relative and absolute axes. Evdev picks the relative axes by
default, leading to a immovable pointer if the Xen backend only sends
absolute coordinates.

Explicitly tell evdev to not ignore the absolute axes.

https://bugzilla.redhat.com/show_bug.cgi?id=523914

Signed-off-by: Peter Hutterer <peter.hutterer at who-t.net>
---
 fdi/policy/10osvendor/10-x11-input.fdi |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/fdi/policy/10osvendor/10-x11-input.fdi b/fdi/policy/10osvendor/10-x11-input.fdi
index 89ba672..752c4ab 100644
--- a/fdi/policy/10osvendor/10-x11-input.fdi
+++ b/fdi/policy/10osvendor/10-x11-input.fdi
@@ -44,5 +44,12 @@
     <match key="info.product" contains="ThinkPad HDAPS accelerometer data">
         <remove key="input.x11_driver" />
     </match>
+
+    <!-- https://bugzilla.redhat.com/show_bug.cgi?id=523914
+         Mouse does not move in PV Xen guest -->
+    <match key="info.product" contains="Xen Virtual Pointer">
+      <merge key="input.x11_options.IgnoreAbsoluteAxes" type="string">false</merge>
+      <merge key="input.x11_options.IgnoreRelativeAxes" type="string">false</merge>
+    </match>
   </device>
 </deviceinfo>
-- 
1.6.2.5



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/hal/devel/.cvsignore,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -p -r1.65 -r1.66
--- .cvsignore	11 Aug 2009 11:50:10 -0000	1.65
+++ .cvsignore	4 Dec 2009 13:14:36 -0000	1.66
@@ -1 +1 @@
-hal-0.5.13.tar.bz2
+hal-0.5.14.tar.bz2


Index: hal.spec
===================================================================
RCS file: /cvs/pkgs/rpms/hal/devel/hal.spec,v
retrieving revision 1.206
retrieving revision 1.207
diff -u -p -r1.206 -r1.207
--- hal.spec	11 Aug 2009 11:50:10 -0000	1.206
+++ hal.spec	4 Dec 2009 13:14:36 -0000	1.207
@@ -25,8 +25,8 @@
 
 Summary: Hardware Abstraction Layer
 Name: hal
-Version: 0.5.13
-Release: 8%{?dist}
+Version: 0.5.14
+Release: 1%{?dist}
 #Release: 1.%{?alphatag}%{?dist}
 URL: http://www.freedesktop.org/Software/hal
 Source0: http://hal.freedesktop.org/releases/%{name}-%{version}.tar.bz2
@@ -46,8 +46,8 @@ Patch9: hal-KVM-evdev.patch
 # http://bugs.freedesktop.org/show_bug.cgi?id=22442
 Patch11: hal-HDAPS-blacklist.patch
 
-# https://bugzilla.redhat.com/show_bug.cgi?id=507782
-Patch12: hal-mdfind.patch
+# https://bugzilla.redhat.com/show_bug.cgi?id=523914
+Patch13: hal-xen-unignore-axes.patch
 
 Patch100: hal-use-at-console.patch
 
@@ -140,7 +140,7 @@ API docs for HAL.
 %patch4 -p1 -b .dell-killswitch
 %patch9 -p1 -b .kvm-evdev
 %patch11 -p1 -b .hdaps-blacklist
-%patch12 -p1 -b .mdfind
+%patch13 -p1 -b .xen-unignore
 %patch100 -p1 -b .drop-polkit
 
 autoreconf -i -f
@@ -155,7 +155,13 @@ autoreconf -i -f
     --disable-policy-kit			\
     --disable-acpi-ibm				\
     --disable-smbios				\
-    --enable-umount-helper			\
+    --disable-umount-helper			\
+    --disable-parted				\
+    --disable-acpi-acpid			\
+    --disable-acpi-proc				\
+    --disable-acl-management			\
+    --disable-sonypic				\
+    --without-deprecated-keys			\
     --without-usb-csr				\
     --without-cpufreq				\
     --with-eject=%{_sbindir}/eject
@@ -237,7 +243,6 @@ fi
 %dir %{_sysconfdir}/hal
 %{_sysconfdir}/hal/*
 
-/sbin/umount.hal
 %{_sbindir}/hald
 %{_bindir}/*
 
@@ -282,6 +287,10 @@ fi
 %{_datadir}/gtk-doc/html/libhal-storage/*
 
 %changelog
+* Fri Dec 04 2009 Richard Hughes <rhughes at redhat.com> - 0.5.14-1
+- New release.
+- See http://lists.freedesktop.org/archives/hal/2009-November/013671.html
+
 * Tue Aug 11 2009 Ville Skyttä <ville.skytta at iki.fi> - 0.5.13-8
 - Use bzipped upstream tarball.
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/hal/devel/sources,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -p -r1.67 -r1.68
--- sources	11 Aug 2009 11:50:10 -0000	1.67
+++ sources	4 Dec 2009 13:14:36 -0000	1.68
@@ -1 +1 @@
-43440854e04abdd29509ddc00c9c3fb1  hal-0.5.13.tar.bz2
+c627d8fb0f9afff94f3c687b5216bc06  hal-0.5.14.tar.bz2




More information about the scm-commits mailing list