Date: Friday, May 8, 2015 @ 21:21:42 Author: andyrtr Revision: 238731
upgpkg: libinput 0.15.0-1 upstream update 0.15.0; call udevadm hwdb --update in post.install - FS#44791 Added: libinput/trunk/libinput.install Modified: libinput/trunk/PKGBUILD ------------------+ PKGBUILD | 8 ++++---- libinput.install | 11 +++++++++++ 2 files changed, 15 insertions(+), 4 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2015-05-08 19:08:40 UTC (rev 238730) +++ PKGBUILD 2015-05-08 19:21:42 UTC (rev 238731) @@ -3,17 +3,17 @@ # Maintainer: Jan de Groot pkgname=libinput -pkgver=0.14.1 +pkgver=0.15.0 pkgrel=1 pkgdesc="library that handles input devices for display servers and other applications that need to directly deal with input devices." arch=(i686 x86_64) url="http://www.freedesktop.org/wiki/Software/libinput/" license=(custom:X11) -depends=('mtdev' 'libsystemd' 'libevdev') -makedepends=('systemd') +depends=('mtdev' 'systemd' 'libevdev') +install=libinput.install options=('!libtool') source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig}) -sha256sums=('2bed202ebe2d5026950d6f9d2ac0f0160d12f61c5a0f6d0d6ef671bbb02c1b64' +sha256sums=('1656db18977d24b4f5754d38ba350a1c2f8b3fb00358fa96e931ce28e112fc1d' 'SKIP') validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer (Who-T) <[email protected]> Added: libinput.install =================================================================== --- libinput.install (rev 0) +++ libinput.install 2015-05-08 19:21:42 UTC (rev 238731) @@ -0,0 +1,11 @@ +post_install() { + udevadm hwdb --update >/dev/null 2>&1 +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + post_install $1 +}
