From 9df0b4cba5e5546634aaacce723264e8a4efa4db Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Aug 01 2019 21:01:35 +0000 Subject: import xorg-x11-drv-wacom-0.36.1-5.el8 --- 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-xsetwacom-error-if-we-re-running-this-under-Wayland.patch b/SOURCES/0001-xsetwacom-error-if-we-re-running-this-under-Wayland.patch new file mode 100644 index 0000000..31d061c --- /dev/null +++ b/SOURCES/0001-xsetwacom-error-if-we-re-running-this-under-Wayland.patch @@ -0,0 +1,91 @@ +From ba21208fadd9588ef61a6165480ce1092ba7e699 Mon Sep 17 00:00:00 2001 +From: Peter Hutterer +Date: Mon, 10 Dec 2018 11:03:22 +1000 +Subject: [PATCH] xsetwacom: error if we're running this under Wayland + +xsetwacom cannot work under Wayland, even with XWayland because there is no +xf86-input-wacom driver. So let's not continue normally and not find any +devices because that'll be confusing to the user when the tablet is clearly +working. + +Print an error and exit code of 1. + +Signed-off-by: Peter Hutterer +--- + man/xsetwacom.man | 8 ++++++++ + tools/xsetwacom.c | 26 ++++++++++++++++++++++++++ + 2 files changed, 34 insertions(+) + +diff --git a/man/xsetwacom.man b/man/xsetwacom.man +index 1c5e445..9674a6b 100644 +--- a/man/xsetwacom.man ++++ b/man/xsetwacom.man +@@ -289,6 +289,14 @@ will require less distance and be more sensitive. Larger values will + require more distance and be less sensitive. Default: 1300 or 2600 + depending on tablet resolution (corresponds to 13 mm of distance). + ++.SH WAYLAND SUPPORT ++ ++This tool provides access to the device properties implemented in the ++\fBxf86-input-wacom\fR X server input module. It does not work under a ++Wayland compositor as the input module is not active. ++.TP ++See https://github.com/linuxwacom/xf86-input-wacom/wiki/Wayland for details. ++ + + .SH "AUTHORS" + Peter Hutterer +diff --git a/tools/xsetwacom.c b/tools/xsetwacom.c +index 8b66944..cb5b7f0 100644 +--- a/tools/xsetwacom.c ++++ b/tools/xsetwacom.c +@@ -28,6 +28,7 @@ + #include + #include + #include ++#include + #include + #include + #include +@@ -2795,6 +2796,24 @@ void argsfromstdin(int *argc, char ***argv) + } + #endif /* BUILD_FUZZINTERFACE */ + ++static bool check_for_wayland(Display *dpy) ++{ ++ bool has_xwayland_devices = false; ++ XDeviceInfo *info; ++ int ndevices, i; ++ ++ info = XListInputDevices(dpy, &ndevices); ++ for (i = 0; i < ndevices; i++) { ++ if (strncmp(info[i].name, "xwayland-", 9) == 0) { ++ has_xwayland_devices = true; ++ break; ++ } ++ } ++ XFreeDeviceList(info); ++ ++ return has_xwayland_devices; ++} ++ + int main (int argc, char **argv) + { + int c; +@@ -2880,6 +2899,13 @@ int main (int argc, char **argv) + return -1; + } + ++ if (check_for_wayland(dpy)) { ++ fprintf(stderr, ++ "Wayland devices found but this tool is incompatible with Wayland. See\n" ++ "https://github.com/linuxwacom/xf86-input-wacom/wiki/Wayland\n"); ++ return 1; ++ } ++ + if (!do_list && !do_get && !do_set) + { + if (optind < argc) +-- +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..de1bfdc --- /dev/null +++ b/SPECS/xorg-x11-drv-wacom.spec @@ -0,0 +1,613 @@ +%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 20160929 +%global gitversion b61d1711 + +Summary: Xorg X11 wacom input driver +Name: xorg-x11-drv-wacom +Version: 0.36.1 +Release: 5%{?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 1657568 - xsetwacom doesn't warn about Wayland +Patch01: 0001-xsetwacom-error-if-we-re-running-this-under-Wayland.patch + +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) +Requires: xorg-x11-drv-wacom-serial-support + +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 + +%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 +%make_install +# 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/%{_prefix}/lib/udev/rules.d/wacom.rules $RPM_BUILD_ROOT/%{_prefix}/lib/udev/rules.d/70-wacom.rules + +%files +%doc AUTHORS +%license 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/70-wacom.conf +%{_bindir}/xsetwacom + +%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 +%license 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 + +%package serial-support +Summary: Files for enabling the wacom_w8001 kernel driver +Group: User Interface/X Hardware Support + +%description serial-support +Files for enabling the wacom_w8001 kernel driver on Wacom +ISDv4-compatible serial tablets. If enabled, the serial tablet's device node +will be available as normal evdev node. + +%files serial-support +%license GPL +%{_prefix}/lib/udev/rules.d/70-wacom.rules +%{_bindir}/isdv4-serial-inputattach +%{_unitdir}/wacom-inputattach@.service + +%changelog +* Fri Dec 14 2018 Peter Hutterer 0.36.1-5 +- Warn when running xsetwacom on Wayland (#1657568) + +* Wed Jul 11 2018 Peter Hutterer 0.36.1-4 +- Build on s390x (#1565062) + +* Mon May 14 2018 Adam Jackson - 0.36.1-2.1 +- Rebuild for xserver 1.20 + +* Tue Mar 20 2018 Peter Hutterer 0.36.1-2 +- Drop the README, disappeared from the tarball + +* Tue Mar 20 2018 Peter Hutterer 0.36.1-1 +- wacom 0.36.1 +- Update sources for the move to github + +* Fri Feb 09 2018 Fedora Release Engineering - 0.36.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Wed Jan 24 2018 Peter Hutterer 0.36.0-1 +- wacom 0.36.0 + +* Tue Jan 16 2018 Peter Hutterer 0.35.99.1-2 +- Split the w8001 serial support bits out so we can install them independent + of this driver. + +* Wed Jan 10 2018 Peter Hutterer 0.35.99.1-1 +- wacom 0.35.99.1 + +* Thu Aug 03 2017 Fedora Release Engineering - 0.35.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 0.35.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Tue Jun 27 2017 Peter Hutterer 0.35.0-1 +- wacom 0.35.0 + +* Tue Jun 20 2017 Peter Hutterer 0.34.99.1-1 +- wacom 0.34.99.1 + +* Thu Mar 09 2017 Peter Hutterer 0.34.2-1 +- wacom 0.34.2 + +* Mon Feb 27 2017 Peter Hutterer 0.34.0-4 +- Cancel timers on DEVICE_OFF to avoid potential invalid memory dereference + +* Thu Feb 23 2017 Peter Hutterer 0.34.0-3 +- Don't update properties from within the input thread + +* Sat Feb 11 2017 Fedora Release Engineering - 0.34.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Tue Dec 06 2016 Peter Hutterer 0.34.0-1 +- wacom 0.34.0 + +* Sun Nov 20 2016 Peter Hutterer 0.33.99.1-1 +- wacom 0.33.99.1 + +* Thu Sep 29 2016 Hans de Goede 0.33.0-2.20160929gitb61d1711 +- Update to latest git master for use with xserver-1.19 +- Rebuild against xserver-1.19 + +* Mon May 16 2016 Peter Hutterer 0.33.0-1 +- wacom 0.33.0 + +* Thu May 05 2016 Peter Hutterer 0.32.99.1-1 +- wacom 0.33rc1 + +* Fri Feb 05 2016 Fedora Release Engineering - 0.32.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Thu Jan 28 2016 Peter Hutterer +- Remove unnecessary defattr + +* Tue Nov 24 2015 Peter Hutterer 0.32.0-1 +- wacom 0.32.0 + +* Tue Aug 18 2015 Peter Hutterer 0.31.0-1 +- wacom 0.31.0 + +* Wed Jul 29 2015 Dave Airlie - 0.30.0-3 +- 1.15 ABI rebuild + +* Fri Jun 19 2015 Fedora Release Engineering - 0.30.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Thu Jun 11 2015 Peter Hutterer 0.30.0-1 +- wacom 0.30.0 + +* Mon Jun 01 2015 Peter Hutterer 0.29.99.1-1 +- wacom 0.29.99.1 + +* Fri Mar 20 2015 Peter Hutterer 0.29.0-2 +- Allow for PAD devices without x/y (HUION tablets) + +* Tue Mar 17 2015 Peter Hutterer 0.29.0-1 +- wacom 0.29.0 + +* Wed Mar 11 2015 Peter Hutterer 0.28.99.1-1 +- wacom 0.28.99.1 + +* Sat Feb 21 2015 Till Maas - 0.28.0-2 +- Rebuilt for Fedora 23 Change + https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code + +* Tue Jan 06 2015 Peter Hutterer 0.28.0-1 +- wacom 0.28.0 + +* Tue Nov 04 2014 Peter Hutterer 0.27.0-1 +- wacom 0.27.0 + +* Wed Oct 29 2014 Peter Hutterer 0.26.1-1 +- wacom 0.26.1 + +* Fri Sep 12 2014 Peter Hutterer 0.26.0-1 +- wacom 0.26.0 + +* Mon Aug 18 2014 Fedora Release Engineering - 0.25.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Fri Jun 20 2014 Peter Hutterer 0.25.0- +- wacom 0.25.0 + +* Sun Jun 08 2014 Fedora Release Engineering - 0.24.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Mon Apr 28 2014 Hans de Goede - 0.24.0-2 +- xserver 1.15.99-20140428 git snapshot ABI rebuild + +* Fri Apr 04 2014 Peter Hutterer 0.24.0-1 +- wacom 0.24.0 + +* Fri Mar 21 2014 Peter Hutterer - 0.23.99.1-2 +- wacom 0.23.99.1 + +* Wed Mar 19 2014 Peter Hutterer 0.23.0-11 +- Use custom wacom inputattach tool (#1046912) + +* Mon Jan 20 2014 Peter Hutterer 0.23.0-10 +- Match N-Trig DuoSense (#1031343) + +* Fri Jan 17 2014 Peter Hutterer 0.23.0-9 +- Let systemd restart inputattach when it exits (i.e. after suspend) + (#1046912) +- Fix the description to avoid superfluous quotes + +* Mon Jan 13 2014 Adam Jackson - 0.23.0-8 +- 1.15 ABI rebuild + +* Tue Dec 17 2013 Adam Jackson - 0.23.0-7 +- 1.15RC4 ABI rebuild + +* Thu Dec 12 2013 Peter Hutterer 0.23.0-6 +- Drop kmod from udev rule, not required +- Require linuxconsoletools for inputattach + +* Mon Dec 09 2013 Peter Hutterer 0.23.0-5 +- Use systemd for starting inputattach + +* Wed Nov 20 2013 Adam Jackson - 0.23.0-4 +- 1.15RC2 ABI rebuild + +* 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 +