package/libinput: bump version to 1.29.0

Release notes:
https://lists.freedesktop.org/archives/wayland-devel/2025-March/044026.html
https://lists.freedesktop.org/archives/wayland-devel/2025-April/044102.html
https://lore.freedesktop.org/wayland-devel/20250731092534.GA4100432@quokka/T/

Upstream changed mtdev into an optional dependency:
27f4b0ae74

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Bernd Kuhls
2025-08-04 20:51:59 +02:00
committed by Peter Korsgaard
parent 178cc76deb
commit 6b607a7744
3 changed files with 10 additions and 4 deletions

View File

@@ -2,7 +2,6 @@ config BR2_PACKAGE_LIBINPUT
bool "libinput"
depends on BR2_PACKAGE_HAS_UDEV
select BR2_PACKAGE_LIBEVDEV
select BR2_PACKAGE_MTDEV
help
libinput is a library to handle input devices in Wayland
compositors and to provide a generic X.Org input driver.

View File

@@ -1,5 +1,5 @@
# Locally computed
sha256 8e823cc9f44c51b63ae90af0b73676ed82c0402cc1cbd4a59ac91b7bb6cad716 libinput-1.27.0.tar.bz2
sha256 7160c16c409c9ea4f7da9d91923ae0a92df7f3453a292bf684bed071acd7b4ff libinput-1.29.0.tar.bz2
# License files
sha256 80de50b2022a840db044c56db804ca3565600a692c0714babface587acc6d1b0 COPYING

View File

@@ -4,10 +4,10 @@
#
################################################################################
LIBINPUT_VERSION = 1.27.0
LIBINPUT_VERSION = 1.29.0
LIBINPUT_SOURCE = libinput-$(LIBINPUT_VERSION).tar.bz2
LIBINPUT_SITE = https://gitlab.freedesktop.org/libinput/libinput/-/archive/$(LIBINPUT_VERSION)
LIBINPUT_DEPENDENCIES = host-pkgconf libevdev mtdev udev
LIBINPUT_DEPENDENCIES = host-pkgconf libevdev udev
LIBINPUT_INSTALL_STAGING = YES
LIBINPUT_LICENSE = MIT
LIBINPUT_LICENSE_FILES = COPYING
@@ -31,6 +31,13 @@ else
LIBINPUT_CONF_OPTS += -Ddebug-gui=false
endif
ifeq ($(BR2_PACKAGE_MTDEV),y)
LIBINPUT_CONF_OPTS += -Dmtdev=true
LIBINPUT_DEPENDENCIES += mtdev
else
LIBINPUT_CONF_OPTS += -Dmtdev=false
endif
ifeq ($(BR2_PACKAGE_LIBINPUT_PYTHON_TOOLS),)
LIBINPUT_PYTHON_TOOLS = libinput-analyze-per-slot-delta \
libinput-analyze-recording \