libinput 0.2.0
- switch to new fdo host - Only match on specific device types, don't match on joysticks or tablets
This commit is contained in:
parent
d63fc9608a
commit
8df6e95492
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
||||
/xf86-input-libinput-0.1.2.tar.gz
|
||||
/xf86-input-libinput-0.2.0.tar.bz2
|
||||
|
@ -1,5 +1,29 @@
|
||||
# Match on all types of devices but tablet devices and joysticks
|
||||
|
||||
Section "InputClass"
|
||||
Identifier "libinput"
|
||||
Driver "libinput"
|
||||
MatchDevicePath "/dev/input/event*"
|
||||
Identifier "libinput pointer catchall"
|
||||
MatchIsPointer "on"
|
||||
MatchDevicePath "/dev/input/event*"
|
||||
Driver "libinput"
|
||||
EndSection
|
||||
|
||||
Section "InputClass"
|
||||
Identifier "libinput keyboard catchall"
|
||||
MatchIsKeyboard "on"
|
||||
MatchDevicePath "/dev/input/event*"
|
||||
Driver "libinput"
|
||||
EndSection
|
||||
|
||||
Section "InputClass"
|
||||
Identifier "libinput touchpad catchall"
|
||||
MatchIsTouchpad "on"
|
||||
MatchDevicePath "/dev/input/event*"
|
||||
Driver "libinput"
|
||||
EndSection
|
||||
|
||||
Section "InputClass"
|
||||
Identifier "libinput touchscreen catchall"
|
||||
MatchIsTouchscreen "on"
|
||||
MatchDevicePath "/dev/input/event*"
|
||||
Driver "libinput"
|
||||
EndSection
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
c5ec32891a30e23fa06d0f4220beb726 xf86-input-libinput-0.1.2.tar.gz
|
||||
3c0d849d8b391a0997004f3b19352e5f xf86-input-libinput-0.2.0.tar.bz2
|
||||
|
@ -4,12 +4,12 @@
|
||||
|
||||
Summary: Xorg X11 libinput input driver
|
||||
Name: xorg-x11-drv-libinput
|
||||
Version: 0.1.2
|
||||
Release: 3%{?dist}
|
||||
URL: http://www.github.com/whot/xf86-input-libinput/
|
||||
Version: 0.2.0
|
||||
Release: 1%{?dist}
|
||||
URL: http://ww.x.org
|
||||
License: MIT
|
||||
|
||||
Source0: https://github.com/whot/xf86-input-libinput/archive/%{tarball}-%{version}.tar.gz
|
||||
Source0: ftp://ftp.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2
|
||||
Source1: 90-libinput.conf
|
||||
|
||||
ExcludeArch: s390 s390x
|
||||
@ -28,8 +28,7 @@ A generic input driver for the X.Org X11 X server based on libinput,
|
||||
supporting all devices.
|
||||
|
||||
%prep
|
||||
# sigh, github....
|
||||
%setup -q -n %{tarball}-%{tarball}-%{version}
|
||||
%setup -q -n %{tarball}-%{version}
|
||||
|
||||
%build
|
||||
autoreconf --force -v --install || exit 1
|
||||
@ -50,8 +49,14 @@ install -p -m 0644 %{SOURCE1} $RPM_BUILD_ROOT%{_datadir}/X11/xorg.conf.d/90-libi
|
||||
%doc COPYING
|
||||
%{driverdir}/libinput_drv.so
|
||||
%{_datadir}/X11/xorg.conf.d/90-libinput.conf
|
||||
%{_mandir}/man4/libinput.4*
|
||||
|
||||
%changelog
|
||||
* Mon Nov 24 2014 Peter Hutterer <peter.hutterer@redhat.com> 0.2.0-1
|
||||
- Only match on specific device types, don't match on joysticks or tablets
|
||||
- libinput 0.2.0
|
||||
- switch to new fdo host
|
||||
|
||||
* Fri Sep 12 2014 Peter Hutterer <peter.hutterer@redhat.com> - 0.1.2-3
|
||||
- Rebuild for libinput soname bump
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user