libxkbcommon: update to 0.8.2.

This commit is contained in:
maxice8 2018-08-05 16:26:06 -03:00
parent abf5f964ab
commit b69ad95ede
2 changed files with 32 additions and 12 deletions

View file

@ -0,0 +1,19 @@
Source: maxice8
Upstream: no
Reason: removes creation of fuzzing infrastructure which isn't included in the distfiles
--- meson.build
+++ meson.build
@@ -382,12 +382,6 @@ if get_option('enable-x11')
executable('test-x11comp', 'test/x11comp.c', dependencies: x11_test_dep)
endif
-
-# Fuzzing target programs.
-executable('fuzz-keymap', 'fuzz/keymap/target.c', dependencies: test_dep)
-executable('fuzz-compose', 'fuzz/compose/target.c', dependencies: test_dep)
-
-
# Demo programs.
executable('rmlvo-to-kccgst', 'test/rmlvo-to-kccgst.c', dependencies: test_dep)
executable('print-compiled-keymap', 'test/print-compiled-keymap.c', dependencies: test_dep)

View file

@ -1,21 +1,23 @@
# Template file for 'libxkbcommon'. # Template file for 'libxkbcommon'.
pkgname=libxkbcommon pkgname=libxkbcommon
version=0.8.1 version=0.8.2
revision=1 revision=1
build_style=gnu-configure build_style=meson
hostmakedepends="automake pkg-config libtool flex xorg-util-macros" configure_args="-Denable-wayland=true -Denable-docs=false -Denable-x11=true"
makedepends="xkeyboard-config libxcb-devel" hostmakedepends="pkg-config bison wayland-protocols"
makedepends="xkeyboard-config libxcb-devel wayland-devel"
depends="xkeyboard-config" depends="xkeyboard-config"
short_desc="Library to handle keyboard descriptions" short_desc="Library to handle keyboard descriptions"
maintainer="Juan RP <xtraeme@voidlinux.eu>" maintainer="maxice8 <thinkabit.ukim@gmail.com>"
license="MIT" license="MIT"
homepage="https://xkbcommon.org/" homepage="https://xkbcommon.org/"
distfiles="https://xkbcommon.org/download/${pkgname}-${version}.tar.xz" distfiles="https://xkbcommon.org/download/${pkgname}-${version}.tar.xz"
checksum=8d1df6bdf216950da611e66cff1af576710aad79772de3be6e131019f761f897 checksum=7ab8c4b3403d89d01898066b72cb6069bddeb5af94905a65368f671a026ed58c
pre_configure() { if [ "$CROSS_BUILD" ]; then
autoreconf -fi hostmakedepends+=" wayland-devel"
} makedepends+=" wayland-protocols"
fi
pkg_install() { pkg_install() {
vlicense LICENSE vlicense LICENSE
@ -24,7 +26,7 @@ pkg_install() {
libxkbcommon-x11_package() { libxkbcommon-x11_package() {
short_desc+=" - X11 support" short_desc+=" - X11 support"
pkg_install() { pkg_install() {
vmove usr/lib/*x11*.so.* vmove "usr/lib/*x11*.so.*"
} }
} }
@ -34,7 +36,6 @@ libxkbcommon-devel_package() {
pkg_install() { pkg_install() {
vmove usr/include vmove usr/include
vmove usr/lib/pkgconfig vmove usr/lib/pkgconfig
vmove usr/lib/*.a vmove "usr/lib/*.so"
vmove usr/lib/*.so
} }
} }