[notify] libinput: update to 1.9.1

new dependencies meson and ninja, see
https://lists.freedesktop.org/archives/wayland-devel/2017-October/035469.html
This commit is contained in:
Juergen Daubert 2017-11-02 19:50:21 +01:00
parent b8e887ea48
commit e60cc84181
4 changed files with 28 additions and 21 deletions

View File

@ -17,15 +17,17 @@ drwxr-xr-x root/root usr/bin/
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/libinput.h
drwxr-xr-x root/root usr/lib/
-rwxr-xr-x root/root usr/lib/libinput.la
lrwxrwxrwx root/root usr/lib/libinput.so -> libinput.so.10.13.0
lrwxrwxrwx root/root usr/lib/libinput.so -> libinput.so.10
lrwxrwxrwx root/root usr/lib/libinput.so.10 -> libinput.so.10.13.0
-rwxr-xr-x root/root usr/lib/libinput.so.10.13.0
drwxr-xr-x root/root usr/lib/libinput/
-rwxr-xr-x root/root usr/lib/libinput/libinput-debug-events
-rwxr-xr-x root/root usr/lib/libinput/libinput-list-devices
-rwxr-xr-x root/root usr/lib/libinput/libinput-measure
-rwxr-xr-x root/root usr/lib/libinput/libinput-measure-touch-size
-rwxr-xr-x root/root usr/lib/libinput/libinput-measure-touchpad-pressure
-rwxr-xr-x root/root usr/lib/libinput/libinput-measure-touchpad-tap
-rwxr-xr-x root/root usr/lib/libinput/libinput-measure-trackpoint-range
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libinput.pc
drwxr-xr-x root/root usr/share/
@ -33,6 +35,9 @@ drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/libinput-debug-events.1.gz
-rw-r--r-- root/root usr/share/man/man1/libinput-list-devices.1.gz
-rw-r--r-- root/root usr/share/man/man1/libinput-measure-touch-size.1.gz
-rw-r--r-- root/root usr/share/man/man1/libinput-measure-touchpad-pressure.1.gz
-rw-r--r-- root/root usr/share/man/man1/libinput-measure-touchpad-tap.1.gz
-rw-r--r-- root/root usr/share/man/man1/libinput-measure-trackpoint-range.1.gz
-rw-r--r-- root/root usr/share/man/man1/libinput-measure.1.gz
-rw-r--r-- root/root usr/share/man/man1/libinput.1.gz

View File

@ -1 +1 @@
5265244853ad7cf41232b0d3ee805ab9 libinput-1.8.3.tar.xz
ce677ef7f209a2290a40ad1a73503f1c libinput-1.9.1.tar.xz

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/xorg.pub
RWTSGWF5Q7TndHgln72ecWt0zN8JKMbFQVqUdJ9YLYWKRbaWwC0ZUNIaIJXnThbjKLfg5dgr6IH60jaI9woOvpdUm/8m+5d3Xwk=
SHA256 (Pkgfile) = 968f208fac4bf94c775c62c9ecb93f78d213ad07d935586d899070a5dd7aaf73
SHA256 (.footprint) = cd69850a3979ec4db35277d876c679c10f53da4c4baed326ededd66c48a48f17
SHA256 (libinput-1.8.3.tar.xz) = 2fe2e2f52f0971a9c43541b8f26582ca8df6ed4bb9050e85eb40d4ff6b13142d
RWTSGWF5Q7TndEbeZ5hq9ShTNlhP4RfYw/umrkE4PxY4yUS80/Gsm9pdQPaL/3NhwjQhGEBGH3zXoeVM4YvJgiLwuDDh2SnlKAo=
SHA256 (Pkgfile) = 1bee7d0aac7c3bc339b87901e1881e6848e9357661dbb12dba10657588b4859e
SHA256 (.footprint) = 2ef36b00bae08e2b61ada6f7900073debae3335eeb708be2dacfd5d66fa8cc31
SHA256 (libinput-1.9.1.tar.xz) = f0780de4211b3d09f86c17f619f936261a213ca532f8c9ec8f8e7e43422a65f8

View File

@ -1,28 +1,30 @@
# Description: A library that handles input devices for display servers
# URL: http://wayland.freedesktop.org/libinput/doc/latest/index.html
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
# Depends on: mtdev xorg-libevdev
# URL: http://wayland.freedesktop.org/libinput/doc/latest/index.html
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
# Depends on: mtdev xorg-libevdev meson ninja
name=libinput
version=1.8.3
version=1.9.1
release=1
source=(http://www.freedesktop.org/software/$name/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--libexecdir=/usr/lib \
--with-udev-dir=/lib/udev \
--disable-documentation \
--disable-debug-gui \
--disable-tests \
--disable-libwacom
meson build \
--prefix /usr \
--libexecdir /usr/lib \
--buildtype release \
-Ddebug-gui=false \
-Ddocumentation=false \
-Dtests=false \
-Dlibwacom=false \
-Dudev-dir=/lib/udev
make
make DESTDIR=$PKG install
DESTDIR=$PKG ninja -C build install
install -d $PKG/etc/udev
mv $PKG/lib/udev/hwdb.d $PKG/etc/udev
chmod -R g-w $PKG
}