diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2020-05-13 15:59:49 +1000 |
---|---|---|
committer | Michael Catanzaro <mcatanzaro@gnome.org> | 2020-09-23 16:40:00 +0000 |
commit | 4f6bec60bfc781c59d5afb6f968fc94ad859e5b9 (patch) | |
tree | 3804a5c444ff014b8182aed901431bb9673f70d0 /.gitlab-ci.yml | |
parent | d35c6e0e41ec8c0426d1317b9f28f485b7b4530d (diff) | |
download | gnome-desktop-4f6bec60bfc781c59d5afb6f968fc94ad859e5b9.tar.gz |
xkbinfo: use libxkbregistry to parse the rules files for us
Available in libxkbcommon 1.0.0 and later, libxkbregistry is a library wrapper
around the evdev.xml rules file that we used to parse directly here. It
provides a basic iteration API - load the evdev ruleset, then iterate through
the layouts and options and copy the values over into our data structures as
needed. This removes the need for XML parsing and error-checking, we can now
rely on libxkbregistry to do this for us.
The side-effect of this (and motivation for libxkbregistry) is that we
automatically load user-specific XKB RMLVO as well where they are present.
Together with mutter commit f71238732508d91bdfcb581c84697a516499a1eb this
allows a user to drop up their custom XKB layouts in
$XDG_CONFIG_DIR/xkb and have them both listed in the GUIs and working.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b1a5d8e4..6fe953d9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,7 +3,7 @@ image: fedora:rawhide variables: LAST_ABI_BREAK: 9d01763ba2a3f71b7c0aade04d2ffa6a883e308d DEPENDENCIES: gtk3-devel gsettings-desktop-schemas-devel gettext - gtk-doc xkeyboard-config-devel itstool + gtk-doc libxkbcommon-devel xkeyboard-config-devel itstool gobject-introspection-devel systemd-devel iso-codes-devel libseccomp-devel gcc gcc-c++ glibc-devel meson redhat-rpm-config |