package/libxkbcommon: bump version to 1.4.0

- bump version to 1.4.0

- add new option to select some tools for the target (xkbcli,
  xkbcli-compile-keymap, xkbcli-how-to-type, xkbcli-interactive-evdev,
  xkbcli-interactive-x11, xkbcli-interactive-wayland

For details see [1].

[1] https://lists.freedesktop.org/archives/wayland-devel/2022-February/042104.html

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
Peter Seiderer 2022-02-08 23:20:24 +01:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent 2f7f8f3813
commit 948050c0f9
3 changed files with 20 additions and 3 deletions

View File

@ -7,3 +7,14 @@ config BR2_PACKAGE_LIBXKBCOMMON
specification.
https://xkbcommon.org
if BR2_PACKAGE_LIBXKBCOMMON
config BR2_PACKAGE_LIBXKBCOMMON_TOOLS
bool "tools"
help
Tools: xkbcli, xkbcli-compile-keymap, xkbcli-how-to-type,
xkbcli-interactive-evdev, xkbcli-interactive-x11,
xkbcli-interactive-wayland
endif

View File

@ -1,5 +1,5 @@
# From https://lists.freedesktop.org/archives/wayland-devel/2021-September/041976.html
sha256 b3c710d27a2630054e1e1399c85b7f330ef03359b460f0c1b3b587fd01fe9234 libxkbcommon-1.3.1.tar.xz
# From https://lists.freedesktop.org/archives/wayland-devel/2022-February/042104.html
sha256 106cec5263f9100a7e79b5f7220f889bc78e7d7ffc55d2b6fdb1efefb8024031 libxkbcommon-1.4.0.tar.xz
# License file:
sha256 086caee279449369d41c1157911ec7696e707b93feba7280de757d3c470b2dfb LICENSE

View File

@ -4,7 +4,7 @@
#
################################################################################
LIBXKBCOMMON_VERSION = 1.3.1
LIBXKBCOMMON_VERSION = 1.4.0
LIBXKBCOMMON_SITE = https://xkbcommon.org/download
LIBXKBCOMMON_SOURCE = libxkbcommon-$(LIBXKBCOMMON_VERSION).tar.xz
LIBXKBCOMMON_LICENSE = MIT/X11
@ -23,4 +23,10 @@ else
LIBXKBCOMMON_CONF_OPTS += -Denable-x11=false
endif
ifeq ($(BR2_PACKAGE_LIBXKBCOMMON_TOOLS),y)
LIBXKBCOMMON_CONF_OPTS += -Denable-tools=true
else
LIBXKBCOMMON_CONF_OPTS += -Denable-tools=false
endif
$(eval $(meson-package))