From 33a11a4631c2cea8e2ba2abfb790f74aad3ceb6a Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Oct 31 2019 12:27:07 +0000 Subject: import xorg-x11-drv-wacom-0.36.1-3.el7 --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2b3fd13 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/xf86-input-wacom-0.36.1.tar.bz2 diff --git a/.xorg-x11-drv-wacom.metadata b/.xorg-x11-drv-wacom.metadata new file mode 100644 index 0000000..694a116 --- /dev/null +++ b/.xorg-x11-drv-wacom.metadata @@ -0,0 +1 @@ +51d1b198f86bf7609b0464ce34a93c90f1ef557c SOURCES/xf86-input-wacom-0.36.1.tar.bz2 diff --git a/SOURCES/0001-Correct-two-comments.patch b/SOURCES/0001-Correct-two-comments.patch new file mode 100644 index 0000000..6f29f0c --- /dev/null +++ b/SOURCES/0001-Correct-two-comments.patch @@ -0,0 +1,39 @@ +From ce73d3ff5f3d2be67bd1213e21163db938943ac5 Mon Sep 17 00:00:00 2001 +From: Peter Hutterer +Date: Wed, 24 Oct 2018 10:10:46 +1000 +Subject: [PATCH 1/4] Correct two comments + +Signed-off-by: Peter Hutterer +Reviewed-by: Ping Cheng +(cherry picked from commit 6e2728780056614e4b2f37abde4f60f072edc95a) +--- + src/wcmUSB.c | 6 ++---- + 1 file changed, 2 insertions(+), 4 deletions(-) + +diff --git a/src/wcmUSB.c b/src/wcmUSB.c +index 8ded958..8a07368 100644 +--- a/src/wcmUSB.c ++++ b/src/wcmUSB.c +@@ -980,9 +980,7 @@ static void usbParseEvent(InputInfoPtr pInfo, + + DBG(10, common, "\n"); + +- /* store events until we receive the MSC_SERIAL containing +- * the serial number or a SYN_REPORT. +- */ ++ /* store events until we receive a SYN_REPORT */ + + /* space left? bail if not. */ + if (private->wcmEventCnt >= ARRAY_SIZE(private->wcmEvents)) +@@ -1036,7 +1034,7 @@ static void usbParseSynEvent(InputInfoPtr pInfo, + } + else + { +- /* not an SYN_REPORT and not an SYN_REPORT, bail out */ ++ /* not a MSC_SERIAL and not a SYN_REPORT, bail out */ + return; + } + +-- +2.19.2 + diff --git a/SOURCES/0001-Ratelimit-the-device-type-mismatch-warning.patch b/SOURCES/0001-Ratelimit-the-device-type-mismatch-warning.patch new file mode 100644 index 0000000..5481a67 --- /dev/null +++ b/SOURCES/0001-Ratelimit-the-device-type-mismatch-warning.patch @@ -0,0 +1,48 @@ +From 83ffb252fae8faeace89ed066c0ec37376824ff2 Mon Sep 17 00:00:00 2001 +From: Peter Hutterer +Date: Thu, 30 May 2019 09:08:52 +1000 +Subject: [PATCH] Ratelimit the device type mismatch warning + +This message still happens when the software buttons are pressed and +immediately after plug. Since the actual events just fall through and don't +cause any state changes, let's ratelimit the message so it doesn't fill up the +logs. + +https://bugzilla.redhat.com/show_bug.cgi?id=1642197 + +Signed-off-by: Peter Hutterer +--- + src/wcmUSB.c | 17 +++++++++++++---- + 1 file changed, 13 insertions(+), 4 deletions(-) + +diff --git a/src/wcmUSB.c b/src/wcmUSB.c +index 2f0e1d7..481646d 100644 +--- a/src/wcmUSB.c ++++ b/src/wcmUSB.c +@@ -1788,10 +1788,19 @@ static void usbDispatchEvents(InputInfoPtr pInfo) + ds = &common->wcmChannel[channel].work; + dslast = common->wcmChannel[channel].valid.state; + +- if (ds->device_type && ds->device_type != private->wcmDeviceType) +- LogMessageVerbSigSafe(X_ERROR, 0, +- "usbDispatchEvents: Device Type mismatch - %d -> %d. This is a BUG.\n", +- ds->device_type, private->wcmDeviceType); ++ if (ds->device_type && ds->device_type != private->wcmDeviceType) { ++ static int warnings = 0; ++ ++ if (warnings < 5) { ++ warnings++; ++ LogMessageVerbSigSafe(X_ERROR, 0, ++ "usbDispatchEvents: Device Type mismatch - %d -> %d. This is a BUG.\n", ++ ds->device_type, private->wcmDeviceType); ++ if (warnings == 5) ++ LogMessageVerbSigSafe(X_ERROR, 0, ++ "usbDispatchEvents: above bug warning is suppressed now\n"); ++ } ++ } + /* no device type? */ + if (!ds->device_type && private->wcmDeviceType) { + ds->device_type = private->wcmDeviceType; +-- +2.21.0 + diff --git a/SOURCES/0002-Reformat-a-debugging-message.patch b/SOURCES/0002-Reformat-a-debugging-message.patch new file mode 100644 index 0000000..09935cb --- /dev/null +++ b/SOURCES/0002-Reformat-a-debugging-message.patch @@ -0,0 +1,33 @@ +From a1221ddfa36a3295f115b6f44e0f8a7069d97bc2 Mon Sep 17 00:00:00 2001 +From: Peter Hutterer +Date: Wed, 24 Oct 2018 10:21:40 +1000 +Subject: [PATCH 2/4] Reformat a debugging message + +No functional changes but makes grepping for it a lot easier + +Signed-off-by: Peter Hutterer +Reviewed-by: Ping Cheng +(cherry picked from commit cafb587a4eb89d906317dbe347198b523e494c76) +--- + src/wcmUSB.c | 5 ++--- + 1 file changed, 2 insertions(+), 3 deletions(-) + +diff --git a/src/wcmUSB.c b/src/wcmUSB.c +index 8a07368..be9be6e 100644 +--- a/src/wcmUSB.c ++++ b/src/wcmUSB.c +@@ -1041,9 +1041,8 @@ static void usbParseSynEvent(InputInfoPtr pInfo, + /* ignore events without information */ + if ((private->wcmEventCnt < 2) && private->wcmLastToolSerial) + { +- DBG(3, common, "%s: dropping empty event" +- " for serial %d\n", pInfo->name, +- private->wcmLastToolSerial); ++ DBG(3, common, "%s: dropping empty event for serial %d\n", ++ pInfo->name, private->wcmLastToolSerial); + goto skipEvent; + } + +-- +2.19.2 + diff --git a/SOURCES/0003-Split-EV_MSC-handling-out-of-the-EV_SYN-handling.patch b/SOURCES/0003-Split-EV_MSC-handling-out-of-the-EV_SYN-handling.patch new file mode 100644 index 0000000..d3e5d2e --- /dev/null +++ b/SOURCES/0003-Split-EV_MSC-handling-out-of-the-EV_SYN-handling.patch @@ -0,0 +1,113 @@ +From 7523a530494484e8b92e0c8604fb39a51b4887f8 Mon Sep 17 00:00:00 2001 +From: Peter Hutterer +Date: Wed, 24 Oct 2018 10:15:58 +1000 +Subject: [PATCH 3/4] Split EV_MSC handling out of the EV_SYN handling + +The only thing these two had in common was the reset of the event count on +failure. Might as well split them up to make the code more readable. + +Signed-off-by: Peter Hutterer +Reviewed-by: Ping Cheng +(cherry picked from commit 8a6f201fde45b6aef9785bdfbfd0d908ff1c4071) +--- + src/wcmUSB.c | 68 +++++++++++++++++++++++++++++++--------------------- + 1 file changed, 41 insertions(+), 27 deletions(-) + +diff --git a/src/wcmUSB.c b/src/wcmUSB.c +index be9be6e..cf89ff8 100644 +--- a/src/wcmUSB.c ++++ b/src/wcmUSB.c +@@ -59,6 +59,8 @@ static void usbParseEvent(InputInfoPtr pInfo, + const struct input_event* event); + static void usbParseSynEvent(InputInfoPtr pInfo, + const struct input_event *event); ++static void usbParseMscEvent(InputInfoPtr pInfo, ++ const struct input_event *event); + static void usbDispatchEvents(InputInfoPtr pInfo); + static int usbChooseChannel(WacomCommonPtr common, int device_type, unsigned int serial); + +@@ -994,8 +996,44 @@ static void usbParseEvent(InputInfoPtr pInfo, + /* save it for later */ + private->wcmEvents[private->wcmEventCnt++] = *event; + +- if (event->type == EV_MSC || event->type == EV_SYN) +- usbParseSynEvent(pInfo, event); ++ switch (event->type) ++ { ++ case EV_MSC: ++ usbParseMscEvent(pInfo, event); ++ break; ++ case EV_SYN: ++ usbParseSynEvent(pInfo, event); ++ break; ++ default: ++ break; ++ } ++} ++ ++static void usbParseMscEvent(InputInfoPtr pInfo, ++ const struct input_event *event) ++{ ++ WacomDevicePtr priv = (WacomDevicePtr)pInfo->private; ++ WacomCommonPtr common = priv->common; ++ wcmUSBData* private = common->private; ++ ++ if (event->code != MSC_SERIAL) ++ return; ++ ++ if (event->value != 0) ++ { ++ /* save the serial number so we can look up the channel number later */ ++ private->wcmLastToolSerial = event->value; ++ } ++ else ++ { ++ /* we don't report serial numbers for some tools but we never report ++ * a serial number with a value of 0 - if that happens drop the ++ * whole frame */ ++ LogMessageVerbSigSafe(X_ERROR, 0, ++ "%s: usbParse: Ignoring event from invalid serial 0\n", ++ pInfo->name); ++ private->wcmEventCnt = 0; ++ } + } + + /** +@@ -1011,33 +1049,9 @@ static void usbParseSynEvent(InputInfoPtr pInfo, + WacomCommonPtr common = priv->common; + wcmUSBData* private = common->private; + +- if ((event->type == EV_MSC) && (event->code == MSC_SERIAL)) +- { +- /* we don't report serial numbers for some tools +- * but we never report a serial number with a value of 0 */ +- if (event->value == 0) +- { +- LogMessageVerbSigSafe(X_ERROR, 0, +- "%s: usbParse: Ignoring event from invalid serial 0\n", +- pInfo->name); +- goto skipEvent; +- } +- +- /* save the serial number so we can look up the channel number later */ +- private->wcmLastToolSerial = event->value; +- ++ if (event->code != SYN_REPORT) + return; + +- } else if ((event->type == EV_SYN) && (event->code == SYN_REPORT)) +- { +- /* end of record. fall through to dispatch */ +- } +- else +- { +- /* not a MSC_SERIAL and not a SYN_REPORT, bail out */ +- return; +- } +- + /* ignore events without information */ + if ((private->wcmEventCnt < 2) && private->wcmLastToolSerial) + { +-- +2.19.2 + diff --git a/SOURCES/0004-Remember-the-event-types-we-receive-and-skip-events-.patch b/SOURCES/0004-Remember-the-event-types-we-receive-and-skip-events-.patch new file mode 100644 index 0000000..4745034 --- /dev/null +++ b/SOURCES/0004-Remember-the-event-types-we-receive-and-skip-events-.patch @@ -0,0 +1,118 @@ +From 13b35027202496be168b3c345cd6fc65055f9604 Mon Sep 17 00:00:00 2001 +From: Peter Hutterer +Date: Wed, 24 Oct 2018 10:35:17 +1000 +Subject: [PATCH 4/4] Remember the event types we receive and skip events with + no data + +On RHEL7.x kernels we get event frames with merely MSC_SERIAL -1 for some +devices on proximity in. This is caused by the accelerometer data that is +otherwise suppressed by those kernels. + +E: 123.456 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +E: 123.456 0004 0000 -001 # EV_MSC / MSC_SERIAL -1 + +For a MSC_SERIAL -1 we default to the PAD_ID (0x10), despite the events +happening on the Pen device node. This triggers an error message during EV_SYN +processing: + + (EE) usbDispatchEvents: Device Type mismatch - 16 -> 0. This is a BUG. + +Once we receive the BTN_TOOL_PEN when the actual pen comes into proximity, the +error message goes away because our tool type matches with what we expect. + +Fix this issue by remembering which event types we received in the current +frame. If all we got was EV_MSC, skip the event dispatch - we don't have any +data to process anyway. + +Signed-off-by: Peter Hutterer +Reviewed-by: Ping Cheng +(cherry picked from commit 84400df38f0f9abe664de26a8d3747b10f3a05e5) +--- + src/wcmUSB.c | 24 ++++++++++++++++++------ + 1 file changed, 18 insertions(+), 6 deletions(-) + +diff --git a/src/wcmUSB.c b/src/wcmUSB.c +index cf89ff8..2bb6b78 100644 +--- a/src/wcmUSB.c ++++ b/src/wcmUSB.c +@@ -38,6 +38,7 @@ typedef struct { + int wcmMTChannel; + int wcmEventCnt; + struct input_event wcmEvents[MAX_USB_EVENTS]; ++ uint32_t wcmEventFlags; /* event types received in this frame */ + int nbuttons; /* total number of buttons */ + int npadkeys; /* number of pad keys in the above array */ + int padkey_code[WCM_MAX_BUTTONS];/* hardware codes for buttons */ +@@ -973,6 +974,13 @@ static int usbChooseChannel(WacomCommonPtr common, int device_type, unsigned int + return channel; + } + ++static inline void ++usbResetEventCounter(wcmUSBData *private) ++{ ++ private->wcmEventCnt = 0; ++ private->wcmEventFlags = 0; ++} ++ + static void usbParseEvent(InputInfoPtr pInfo, + const struct input_event* event) + { +@@ -989,12 +997,13 @@ static void usbParseEvent(InputInfoPtr pInfo, + { + LogMessageVerbSigSafe(X_ERROR, 0, "%s: usbParse: Exceeded event queue (%d) \n", + pInfo->name, private->wcmEventCnt); +- private->wcmEventCnt = 0; ++ usbResetEventCounter(private); + return; + } + + /* save it for later */ + private->wcmEvents[private->wcmEventCnt++] = *event; ++ private->wcmEventFlags |= 1 << event->type; + + switch (event->type) + { +@@ -1032,7 +1041,7 @@ static void usbParseMscEvent(InputInfoPtr pInfo, + LogMessageVerbSigSafe(X_ERROR, 0, + "%s: usbParse: Ignoring event from invalid serial 0\n", + pInfo->name); +- private->wcmEventCnt = 0; ++ usbResetEventCounter(private); + } + } + +@@ -1048,6 +1057,7 @@ static void usbParseSynEvent(InputInfoPtr pInfo, + WacomDevicePtr priv = (WacomDevicePtr)pInfo->private; + WacomCommonPtr common = priv->common; + wcmUSBData* private = common->private; ++ const uint32_t significant_event_types = ~(1 << EV_SYN | 1 << EV_MSC); + + if (event->code != SYN_REPORT) + return; +@@ -1060,9 +1070,11 @@ static void usbParseSynEvent(InputInfoPtr pInfo, + goto skipEvent; + } + +- /* ignore sync windows that contain no data */ +- if (private->wcmEventCnt == 1 && +- private->wcmEvents->type == EV_SYN) { ++ ++ /* If all we get in an event frame is EV_SYN/EV_MSC, we don't have ++ * real data to process. */ ++ if ((private->wcmEventFlags & significant_event_types) == 0) ++ { + DBG(6, common, "no real events received\n"); + goto skipEvent; + } +@@ -1071,7 +1083,7 @@ static void usbParseSynEvent(InputInfoPtr pInfo, + usbDispatchEvents(pInfo); + + skipEvent: +- private->wcmEventCnt = 0; ++ usbResetEventCounter(private); + } + + static int usbFilterEvent(WacomCommonPtr common, struct input_event *event) +-- +2.19.2 + diff --git a/SPECS/xorg-x11-drv-wacom.spec b/SPECS/xorg-x11-drv-wacom.spec new file mode 100644 index 0000000..2453152 --- /dev/null +++ b/SPECS/xorg-x11-drv-wacom.spec @@ -0,0 +1,506 @@ +%global tarball xf86-input-wacom +%global moduledir %(pkg-config xorg-server --variable=moduledir ) +%global driverdir %{moduledir}/input + +# Disable gitdate to build from a fixed release +#global gitdate 20111110 +#global gitversion 12345689 + +Summary: Xorg X11 wacom input driver +Name: xorg-x11-drv-wacom +Version: 0.36.1 +Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +URL: http://www.x.org +License: GPLv2+ +Group: User Interface/X Hardware Support + +%if 0%{?gitdate} +Source0: %{tarball}-%{gitdate}.tar.bz2 +Source1: make-git-snapshot.sh +Source2: commitid +%else +Source0: https://github.com/linuxwacom/xf86-input-wacom/releases/download/xf86-input-wacom-%{version}/xf86-input-wacom-%{version}.tar.bz2 +%endif + +# Bug 1642197 - Cintiq 27QHD triggers error messages on proximity in +Patch01: 0001-Correct-two-comments.patch +Patch02: 0002-Reformat-a-debugging-message.patch +Patch03: 0003-Split-EV_MSC-handling-out-of-the-EV_SYN-handling.patch +Patch04: 0004-Remember-the-event-types-we-receive-and-skip-events-.patch +Patch05: 0001-Ratelimit-the-device-type-mismatch-warning.patch + +ExcludeArch: s390 s390x + +BuildRequires: xorg-x11-server-devel >= 1.10.99.902 +BuildRequires: xorg-x11-util-macros >= 1.3.0 +BuildRequires: libX11-devel libXi-devel libXrandr-devel libXinerama-devel +BuildRequires: autoconf automake libtool +BuildRequires: systemd systemd-devel + +Requires: Xorg %(xserver-sdk-abi-requires ansic) +Requires: Xorg %(xserver-sdk-abi-requires xinput) + +Provides: linuxwacom = %{version}-%{release} +Obsoletes: linuxwacom <= 0.8.4.3 + +%description +X.Org X11 wacom input driver for Wacom tablets. + +%prep +%setup -q -n %{tarball}-%{?gitdate:%{gitdate}}%{!?gitdate:%{version}} +%patch01 -p1 +%patch02 -p1 +%patch03 -p1 +%patch04 -p1 +%patch05 -p1 + +%build +autoreconf --force -v --install || exit 1 +%configure --disable-static --disable-silent-rules --enable-debug \ + --with-systemd-unit-dir=%{_unitdir} \ + --with-udev-rules-dir=%{_prefix}/lib/udev/rules.d/ + +make %{_smp_mflags} + +%install +rm -rf $RPM_BUILD_ROOT + +make install DESTDIR=$RPM_BUILD_ROOT + +# FIXME: Remove all libtool archives (*.la) from modules directory. This +# should be fixed in upstream Makefile.am or whatever. +find $RPM_BUILD_ROOT -regex ".*\.la$" | xargs rm -f -- + +mv $RPM_BUILD_ROOT/%{_datadir}/X11/xorg.conf.d/70-wacom.conf $RPM_BUILD_ROOT/%{_datadir}/X11/xorg.conf.d/50-wacom.conf +mv $RPM_BUILD_ROOT/%{_prefix}/lib/udev/rules.d/wacom.rules $RPM_BUILD_ROOT/%{_prefix}/lib/udev/rules.d/70-wacom.rules + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(-,root,root,-) +%doc AUTHORS GPL +%if !0%{?gitdate} +# ChangeLog is autogenerated by make dist, we don't run it from git builds +%doc ChangeLog +%endif +%{driverdir}/wacom_drv.so +%{_mandir}/man4/wacom.4* +%{_mandir}/man1/xsetwacom.1* +%{_datadir}/X11/xorg.conf.d/50-wacom.conf +%{_bindir}/xsetwacom +%{_prefix}/lib/udev/rules.d/70-wacom.rules +%{_bindir}/isdv4-serial-inputattach +%{_unitdir}/wacom-inputattach@.service + +%package devel +Summary: Xorg X11 wacom input driver development package +Group: Development/Libraries + +Requires: xorg-x11-server-devel >= 1.7.0 +Requires: pkgconfig + +%description devel +X.Org X11 wacom input driver development files. + +%files devel +%defattr(-,root,root,-) +%doc GPL +%{_libdir}/pkgconfig/xorg-wacom.pc +%{_includedir}/xorg/Xwacom.h +%{_includedir}/xorg/wacom-properties.h +%{_includedir}/xorg/wacom-util.h +%{_includedir}/xorg/isdv4.h +%{_bindir}/isdv4-serial-debugger + +%changelog +* Thu May 30 2019 Peter Hutterer 0.36.1-3 +- Ratelimit the bug message warnings (#1642197) + +* Thu Jan 10 2019 Peter Hutterer 0.36.1-2 +- Fix Cintiq 27QHD error message on proximity in (#1642197) + +* Wed May 30 2018 Adam Jackson - 0.36.1-1.1 +- Rebuild for xserver 1.20 + +* Tue May 15 2018 Peter Hutterer 0.36.1-1 +- wacom 0.36.1 (#1564630) + +* Thu Apr 05 2018 Peter Hutterer 0.34.2-5 +- Add support for the Pro Pen 3D (#1557255) + +* Wed Nov 08 2017 Peter Hutterer 0.34.2-4 +- Add custom .conf snippet for the Dell Canvas 27 touchscreen (#1506538) + +* Wed Oct 04 2017 Peter Hutterer 0.34.2-3 +- Fix hang after unplugging a device (#1496650) +- Correct device flags for some Cintiqs and Intuos pros (#1496659) + +* Thu Jun 01 2017 Peter Hutterer 0.34.2-2 +- Add Pressure2K option for backwards-compatibility with applications that + hardcode the previous pressure range (#1457024) + +* Mon Mar 13 2017 Peter Hutterer 0.34.2-1 +- wacom 0.34.2 (#1401655) + +* Mon Feb 27 2017 Peter Hutterer 0.34.0-3 +- Cancel timers on DEVICE_OFF to avoid potential invalid memory dereference + +* Fri Feb 24 2017 Peter Hutterer 0.34.0-2 +- Don't update properties from within the input thread + +* Fri Jan 27 2017 Peter Hutterer 0.34.0-1 +- wacom 0.34.0 (#1401655) + +* Mon May 04 2015 Peter Hutterer 0.29.0-1 +- wacom 0.29.0 (#1194889) + +* Thu Feb 13 2014 Peter Hutterer 0.23.0-6 +- Use systemd for starting inputattach on serial devices (#1039445) + +* Wed Jan 15 2014 Adam Jackson - 0.23.0-5 +- 1.15 ABI rebuild + +* Fri Dec 27 2013 Daniel Mach - 0.23.0-4 +- Mass rebuild 2013-12-27 + +* Wed Nov 06 2013 Adam Jackson - 0.23.0-3 +- 1.15RC1 ABI rebuild + +* Fri Oct 25 2013 Adam Jackson - 0.23.0-2 +- ABI rebuild + +* Sat Sep 28 2013 Peter Hutterer 0.23.0-1 +- wacom 0.23.0 + +* Sun Aug 04 2013 Fedora Release Engineering - 0.22.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Fri Jul 12 2013 Peter Hutterer - 0.22.0-2 +- Fix changelog - 'percent signs in specfile changelog should be escaped' + +* Thu Jul 11 2013 Peter Hutterer 0.22.0-1 +- wacom 0.22.0 + +* Wed Jun 26 2013 Peter Hutterer 0.21.99.1-2 +- This time with the right tarball + +* Wed Jun 26 2013 Peter Hutterer 0.21.99.1-1 +- wacom 0.21.99.1 + +* Tue Apr 30 2013 Peter Hutterer 0.21.0-1 +- wacom 0.21.0 + +* Tue Apr 23 2013 Peter Hutterer 0.20.99.1-1 +- wacom 0.20.99.1 + +* Tue Mar 19 2013 Adam Jackson 0.20.0-4 +- Less RHEL customization + +* Thu Mar 07 2013 Peter Hutterer - 0.20.0-3 +- require xorg-x11-server-devel, not -sdk + +* Thu Mar 07 2013 Peter Hutterer - 0.20.0-2 +- ABI rebuild + +* Tue Mar 05 2013 Peter Hutterer 0.20.0-1 +- wacom 0.20.0 + +* Wed Feb 27 2013 Peter Hutterer 0.19.99.1-1 +- wacom 0.19.99.1 + +* Fri Feb 15 2013 Peter Hutterer - 0.19.0-4 +- ABI rebuild + +* Fri Feb 15 2013 Peter Hutterer - 0.19.0-3 +- ABI rebuild + +* Thu Jan 10 2013 Adam Jackson - 0.19.0-2 +- ABI rebuild + +* Fri Jan 04 2013 Peter Hutterer 0.19.0-1 +- wacom 0.19.0 + +* Thu Dec 20 2012 Peter Hutterer 0.18.99.1-1 +- wacom 0.18.99.1 + +* Wed Oct 31 2012 Peter Hutterer - 0.18.0-2 +- Fix {?dist} tag + +* Tue Oct 30 2012 Peter Hutterer 0.18.0-1 +- wacom 0.18.0 + +* Mon Oct 22 2012 Peter Hutterer 0.17.99.1-1 +- wacom 0.17.99.1 + +* Wed Sep 26 2012 Peter Hutterer 0.17.0-1 +- wacom 0.17.0 + +* Mon Aug 27 2012 Peter Hutterer 0.16.1-1 +- wacom 0.16.1 + +* Thu Aug 23 2012 Peter Hutterer 0.16.0-6 +- Pre-allocate the tap timer to avoid malloc locks in SIGIO handler +- Log in signal-safe manner + +* Sun Aug 05 2012 Peter Hutterer 0.16.0-5 +- Align git snapshot building with other drivers +- Add autotools/libtool to BuildRequires, we need those when building git + snapshots +- Always run autoreconf + +* Sun Aug 05 2012 Peter Hutterer 0.16.0-4 +- Add support for Cintiq 22HD + +* Sun Jul 22 2012 Fedora Release Engineering - 0.16.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Wed Jul 18 2012 Dave Airlie - 0.16.0-2 +- ABI rebuild + +* Tue Jul 10 2012 Peter Hutterer 0.16.0-1 +- wacom 0.16.0 + +* Thu Jun 07 2012 Peter Hutterer 0.15.0-2 +- Replace udev with systemd, use prefix for udev rules + +* Fri May 04 2012 Peter Hutterer 0.15.0-1 +- wacom 0.15.0 + +* Mon Apr 23 2012 Peter Hutterer 0.14.0-4 +- Update rules to start inputattach automatically + +* Thu Apr 05 2012 Adam Jackson - 0.14.0-3 +- RHEL arch exclude updates + +* Mon Mar 26 2012 Peter Hutterer 0.14.0-2 +- Bump version number so F18 version is >= F17 version. + +* Mon Mar 12 2012 Peter Hutterer 0.14.0-1 +- wacom 0.14.0 + +* Wed Mar 07 2012 Peter Hutterer 0.13.99.2-1 +- wacom 0.13.99.2 + +* Thu Mar 01 2012 Peter Hutterer 0.13.99.1-1 +- wacom 0.13.99.1 + +* Sat Feb 11 2012 Peter Hutterer - 0.13.0-4 +- ABI rebuild + +* Fri Feb 10 2012 Peter Hutterer - 0.13.0-3 +- ABI rebuild + +* Tue Jan 24 2012 Peter Hutterer - 0.13.0-2 +- ABI rebuild + +* Tue Jan 17 2012 Peter Hutterer 0.13.0-1 +- wacom 0.13.0 + +* Wed Jan 04 2012 Peter Hutterer 0.12.99.1-3 +- Fix changelog, dates got mixed up + +* Wed Jan 04 2012 Peter Hutterer - 0.12.99.1-2 +- Rebuild for server 1.12 + +* Wed Jan 04 2012 Peter Hutterer 0.12.99.1-1 +- wacom 0.12.99.1 + +* Tue Nov 29 2011 Peter Hutterer 0.12-1 +- wacom 0.12.0 + +* Mon Nov 14 2011 Adam Jackson - 0.11.99.1-6.20111110 +- ABI rebuild + +* Thu Nov 10 2011 Peter Hutterer 0.11.99.1-5.2011110 +- And another snapshot, this time with the build fixes. + +* Thu Nov 10 2011 Peter Hutterer 0.11.99.1-4.2011110 +- Update to latest git snapshot + +* Wed Nov 09 2011 ajax - 0.11.99.1-3.20111031 +- ABI rebuild + +* Tue Nov 01 2011 Peter Hutterer 0.11.99.1-2 +- libXinerama is now needed to build too + +* Tue Nov 01 2011 Peter Hutterer 0.11.99.1 +- Update to 0.11.99.1 (from git) + +* Thu Aug 18 2011 Adam Jackson - 0.11.99-4.20110527 +- Rebuild for xserver 1.11 ABI + +* Thu Jul 21 2011 Peter Hutterer * 0.11.99-3.20110527 +- Fix udev rules file again: + - use ==, not = to compare subsystems + - assign ENV{NAME} even though we shouldn't, the server currently requires it + - assign the lot to subsystem pnp too, that's where the server reads it + from + +* Wed Jul 20 2011 Peter Hutterer 0.11.99-2.20110527 +- Fix udev rules file (thanks to Lennart): + - The subsystem cannot be assigned. + - Append the attrs to the device name + - Match only on tty/pnp + +* Thu Jul 07 2011 Peter Hutterer +- Disable silent rules on build + +* Fri May 27 2011 Peter Hutterer 0.11.99-1.20110527 +- Update to current git + +* Tue Apr 19 2011 Peter Hutterer 0.11.0-1 +- wacom 0.11.0 + +* Fri Apr 08 2011 Peter Hutterer 0.10.99.2-1.20110408 +- 0.10.99.2 from git + +* Fri Apr 01 2011 Peter Hutterer 0.10.99.1-2.20110401 +- Require libudev + +* Fri Apr 01 2011 Peter Hutterer 0.10.99.1-1.20110401 +- 0.10.99.1 from git + +* Tue Mar 15 2011 Peter Hutterer 0.10.99-1.20110315 +- Today's git snapshot + +* Thu Feb 17 2011 Peter Hutterer 0.10.11-1 +- wacom 0.10.11 + +* Tue Feb 08 2011 Fedora Release Engineering - 0.10.10-3.20101122 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Thu Nov 25 2010 Peter Hutterer - 0.10.10-2.20101122 +- Rebuild for server 1.10 + +* Mon Nov 22 2010 Peter Hutterer 0.10.10-1 +- Update to today's git snapshot (0.10.10), an emergency release. + +* Fri Nov 19 2010 Peter Hutterer 0.10.9-2 +- require libXrandr-devel for xsetwacom + +* Fri Nov 19 2010 Peter Hutterer 0.10.9-1 +- Update to today's git snapshot (0.10.9) + +* Wed Oct 27 2010 Adam Jackson 0.10.8-3 +- Add ABI requires magic (#542742) + + +* Mon Aug 02 2010 Peter Hutterer 0.10.8-2 +- Update to today's git snapshot. + +* Mon Jul 26 2010 Peter Hutterer 0.10.8-1 +- wacom 0.10.8 (from git) + +* Thu Jul 08 2010 Adam Jackson 0.10.7-4 +- Install GPL in -devel too + +* Mon Jul 05 2010 Peter Hutterer 0.10.7-3.20100705 +- Update to git to build against newest X server. + +* Mon Jul 05 2010 Peter Hutterer - 0.10.7-2.20100621 +- rebuild for X Server 1.9 + +* Mon Jun 21 2010 Peter Hutterer 0.10.7-1.20100621 +- Update to 0.10.7 from git. + +* Wed Jun 16 2010 Peter Hutterer 0.10.6-6.20100616 +- Update to today's git snapshot. + +* Thu Jun 03 2010 Peter Hutterer 0.10.6-5.2010603 +- Update to today's git snapshot. + +* Thu Jun 03 2010 Peter Hutterer 0.10.6-5.20100521 +- Update udev rules file to include Fujitsu serial tablets. (#598168) +- Update udev rules file to set ID_INPUT_TABLET + +* Fri May 21 2010 Peter Hutterer 0.10.6-4.20100521 +- Update to today's git snapshot. +- wacom-0.10.6-serial-identifiers.patch: drop, upstream. + +* Tue May 18 2010 Peter Hutterer 0.10.6-3.20100427 +- Install wacom udev rules file to identify serial devices. + +* Tue Apr 27 2010 Peter Hutterer 0.10.6-2.20100427 +- wacom-0.10.6-serial-identifiers.patch: add some more serial IDs to the + config file. + +* Tue Apr 27 2010 Peter Hutterer 0.10.6-1.20100427 +- wacom 0.10.6 (from git) + +* Thu Apr 15 2010 Peter Hutterer 0.10.5-5.20100325 +- Fix up missing directory change from last commit. + +* Thu Apr 15 2010 Peter Hutterer 0.10.5-4.20100325 +- Install config snippet in $datadir/X11/xorg.conf.d +- rename to 50-wacom.conf to match upstream naming + +* Thu Mar 25 2010 Peter Hutterer 0.10.5-3.20100325 +- Update to today's git snapshot. + +* Tue Mar 23 2010 Peter Hutterer 0.10.5-2.20100319 +- Enable the debug properties. + +* Fri Mar 19 2010 Peter Hutterer 0.10.5-1.20100319 +- Update to today's git snapshot (0.10.5) + +* Tue Mar 16 2010 Peter Hutterer 0.10.4-7.20100316 +- Update to today's git snapshot. + +* Fri Mar 05 2010 Peter Hutterer 0.10.4-6.20100305 +- Update to today's git snapshot. + +* Thu Mar 04 2010 Peter Hutterer 0.10.4-5.20100219 +- Fix 10-wacom.conf for N-Trig devices: rename the class (copy/paste error) + and only take event devices. (Related #526270) + +* Fri Feb 19 2010 Peter Hutterer 0.10.4-4.20100219 +- Add stuff required to build from upstream git. +- Update to today's git snapshot. + +* Wed Feb 17 2010 Peter Hutterer 0.10.4-3 +- Add 10-wacom.conf, the fdi file doesn't work anymore. +- Drop hal requires. + +* Wed Feb 03 2010 Peter Hutterer 0.10.4-2 +- Update sources to sourceforge, 0.10.4 was released on sf only. +- Remove wacom.fdi, we're just using the one shipped by the driver now. + +* Thu Jan 21 2010 Peter Hutterer 0.10.4-1 +- wacom 0.10.4 + +* Thu Jan 21 2010 Peter Hutterer - 0.10.3-3 +- Rebuild for server 1.8 + +* Tue Jan 05 2010 Peter Hutterer 0.10.3-2 +- BuildRequires and Requires libX11 and libXi for xsetwacom. + +* Tue Jan 05 2010 Peter Hutterer 0.10.3-1 +- wacom 0.10.3 + +* Thu Dec 03 2009 Peter Hutterer 0.10.2-1 +- wacom 0.10.2 + +* Fri Nov 20 2009 Peter Hutterer 0.10.1-2 +- cvs add 10-wacom.fdi, this time really. + +* Fri Nov 20 2009 Peter Hutterer 0.10.1-1 +- wacom 0.10.1 +- BuildRequires xorg-x11-util-macros 1.3.0 +- Remove unnecessary 'find' directive, changed upstream. +- Add GPL document +- Install 10-wacom.fdi file. +- Provides: linuxwacom + +* Thu Nov 19 2009 Peter Hutterer 0.10.0-3 +- Use smp_mflags when building. + +* Wed Nov 18 2009 Peter Hutterer 0.10.0-2 +- Obsolete linuxwacom, don't Conflict with it. +- Remove trailing dot from summary (rpmlint warning). +- Remove spurious executable bits from source files (rpmlint warning). +- Add AUTHORS, ChangeLog, README to doc + +* Mon Oct 19 2009 Peter Hutterer 0.10.0-1 +- Initial import +