Tag 'libxkbcommon-0.7.0-1' created by Emilio Pozuelo Monfort <po...@debian.org> at 2016-12-07 17:49 +0000
Tagging upload of libxkbcommon 0.7.0-1 to unstable. -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEcJymx+vmJZxd92Q+nUbEiOQ2gwIFAlhIS5EACgkQnUbEiOQ2 gwJLJhAApwxMFYr3H+p8hHGnKMT/o/HsniRlS5VpVw323sPPU+bZzE9bvttK1RZu 9TQlZ+QSUVMcVLgH1YdCvIaadASw/8VnHmgJayPE8Ah40blF7OHq7K/trHgMqNZp CBWGifzPlAQFi4fcbaSDKGHMbx/TTdKZsMiKIIgULlSGr8FJkOPuf0gogHTRXk7X 5Cz2Tw9k+GisnwMIh53LLJHAnCnFe3ufY5m0yhmjtxdbQEIqE/quaN86+77Cq3EY LcAXFr1i2RMfkIVon/9Tbn5KmApIRal/ghDoT4Q6+9CPInoXyx0wkDosvOA/zzlZ Y+5Vb7368z25VIe93ydy8ci9ylB4McOugIKyi3QjKKttMBiHSn5343cXPozKpTPe fP/K+N/Vrpcj8EtJoSGARnDXruDQyPrDXQQKwP5kLFrU0yDx7EXs7gFb2S8Srk7r QvF8H0/YloPYczf7Gv/wECRriRfH7SiBe4hcg+743hRB1gmz3WRl6bhovn/y14d4 TLi4ohKAkTi4kJ7sEVeS/DrjBcAsWrx7lBWDSZSjbA/b7g3ZqHgee2av81KhBAE+ 94fTWJ4vPssl+DU8FRDho4k+XM5Gb9d8ZZ2t5jUy/Xgs6751hTthE8yAhqW+TQWe r8PcTM5SzXtNj4sUc022mZHwtag68EM4l0TWkUhLGeaLoXATSN0= =ZjYe -----END PGP SIGNATURE----- Changes since libxkbcommon-0.6.1-1: Bryce Harrington (6): doc: Fix ctx type in example doc: Declare keymap for wayland example doc: Also mention the wayland test client in the quick guide bench: Check for errors opening Compose file README: Bug *reports* are welcome README: Add basic build directions Daniel Stone (3): test: Add interactive-wayland interactive-wayland: Valgrind-proofing PACKAGING: Update for interactive-wayland Emilio Pozuelo Monfort (10): Build-depend on graphviz for the docs Merge branch 'upstream-unstable' into debian-unstable New upstream release Add new symbols Bump Standards-Version to 3.9.8 Bump debhelper compat to 10 debhelper compat 10 enables dh-autoreconf by default Rely on debhelper passing --disable-silent-rules Update upstream repo URL Release to unstable Ran Benita (18): gitignore: ignore generated wayland protocol stubs test: use termios instead of system() for disabling terminal echo test/interactive-wayland: don't ignore asprintf return value test/symbols-leak-test: use more portable shebang src/state: match_mod_masks can return bool instead of int keymap-dump: use consistent order set/latch/lock (style) test/interactive-wayland: fix control reaches end of non-void function doc/compat.md: xkbcomp ignores multiple-keysyms these days doc/compat: (! MODIFIER) syntax is parsed but ignored bench/compose: tabs -> spaces bench: fix compilation on hurd test/state: move wrongly-placed assert utils: add popcount function state: allow different modes for calculating consumed modifiers state: add GTK consumed modifiers mode Merge pull request #31 from bluetech/consumed-modes Update NEWS Bump version to 0.7.0 --- .gitignore | 2 LICENSE | 2 Makefile.am | 36 ++ NEWS | 25 + PACKAGING | 5 README.md | 17 - bench/bench.c | 1 bench/bench.h | 2 bench/compose.c | 6 configure.ac | 23 + debian/changelog | 14 debian/compat | 2 debian/control | 14 debian/libxkbcommon0.symbols | 3 debian/rules | 4 doc/compat.md | 4 doc/quick-guide.md | 5 src/state.c | 124 +++++-- src/utils.h | 13 src/xkbcomp/keymap-dump.c | 2 test/.gitignore | 1 test/common.c | 29 + test/interactive-evdev.c | 21 - test/interactive-wayland.c | 693 +++++++++++++++++++++++++++++++++++++++++++ test/interactive-x11.c | 7 test/state.c | 34 ++ test/symbols-leak-test.bash | 2 test/test.h | 9 xkbcommon.map | 6 xkbcommon/xkbcommon.h | 99 +++++- 30 files changed, 1115 insertions(+), 90 deletions(-) ---