Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libxkbcommon/
Date: Thu, 08 Apr 2021 03:06:01
Message-Id: 1617851148.ef3b3a2d5f609c00b9e607b2d6aef29795410145.mattst88@gentoo
1 commit: ef3b3a2d5f609c00b9e607b2d6aef29795410145
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 8 03:00:39 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 8 03:05:48 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef3b3a2d
7
8 x11-libs/libxkbcommon: Version bump to 1.2.1
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 x11-libs/libxkbcommon/Manifest | 1 +
13 x11-libs/libxkbcommon/libxkbcommon-1.2.1.ebuild | 65 +++++++++++++++++++++++++
14 2 files changed, 66 insertions(+)
15
16 diff --git a/x11-libs/libxkbcommon/Manifest b/x11-libs/libxkbcommon/Manifest
17 index 32e1920227e..96172c2ef5c 100644
18 --- a/x11-libs/libxkbcommon/Manifest
19 +++ b/x11-libs/libxkbcommon/Manifest
20 @@ -1,2 +1,3 @@
21 DIST libxkbcommon-1.0.3.tar.xz 432944 BLAKE2B 49dcefcc17cbbfe5623728e9852e700a623e07ad7e6df78c8d7c39784948eb230f9e141d8aaa1de94305cb552244fe54d384abbc8e57f5ec5846915b5ae484e3 SHA512 b05a2db0acd6628427baad1967979a161019dec90a078a926d41f4dfeffb84eab63e627803df1a401e42c8e48953d6c434ce08d7206eae21e890890f29b03d3c
22 DIST libxkbcommon-1.1.0.tar.xz 439488 BLAKE2B ddccb9942af5f5d80b750bf8f02289e073615c99bed2a8f7ff1d03ca70bffdbe3b1fe15daef2346819887efe10a308d00f671fc2ae50e0fe33e76e4b748f6d01 SHA512 6137329653ada711abc0e093532627111ab1fb53e6b2b0d05ec4d77709cfc4368f094ebbf68b23c8e9af9a69826351b64466e81c11e6593eafa7e43cd3e7bf75
23 +DIST libxkbcommon-1.2.1.tar.xz 453172 BLAKE2B f8846befae348287032601f589607a9c899826135b325245824650d77435050fe7e300514cc9f16bd0f3c37693c9f8f08d78aa738c160676019338d72addcd80 SHA512 28de91166a289586a78068b725b904da46fca144936ea0677ec9234c7f0499b9ae321d79c57f15782b63c6e7a37b074fe44648673a2294bbde13110195567e3b
24
25 diff --git a/x11-libs/libxkbcommon/libxkbcommon-1.2.1.ebuild b/x11-libs/libxkbcommon/libxkbcommon-1.2.1.ebuild
26 new file mode 100644
27 index 00000000000..c34ea6d0be1
28 --- /dev/null
29 +++ b/x11-libs/libxkbcommon/libxkbcommon-1.2.1.ebuild
30 @@ -0,0 +1,65 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +if [[ ${PV} = *9999* ]]; then
37 + GIT_ECLASS="git-r3"
38 + EGIT_REPO_URI="https://github.com/xkbcommon/${PN}"
39 +else
40 + SRC_URI="https://xkbcommon.org/download/${P}.tar.xz"
41 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
42 +fi
43 +
44 +PYTHON_COMPAT=( python3_{7..9} )
45 +
46 +inherit meson multilib-minimal ${GIT_ECLASS} python-any-r1
47 +
48 +DESCRIPTION="keymap handling library for toolkits and window systems"
49 +HOMEPAGE="https://xkbcommon.org/ https://github.com/xkbcommon/libxkbcommon/"
50 +LICENSE="MIT"
51 +IUSE="X doc static-libs test"
52 +RESTRICT="!test? ( test )"
53 +SLOT="0"
54 +
55 +BDEPEND="
56 + sys-devel/bison
57 + doc? ( app-doc/doxygen )
58 + test? ( ${PYTHON_DEPS} )
59 +"
60 +RDEPEND="
61 + X? ( >=x11-libs/libxcb-1.10:=[${MULTILIB_USEDEP},xkb] )
62 + dev-libs/libxml2[${MULTILIB_USEDEP}]
63 + x11-misc/compose-tables
64 +"
65 +DEPEND="${RDEPEND}
66 + X? ( x11-base/xorg-proto )"
67 +
68 +pkg_setup() {
69 + if use test; then
70 + python-any-r1_pkg_setup
71 + fi
72 +}
73 +
74 +multilib_src_configure() {
75 + local emesonargs=(
76 + -Ddefault_library="$(usex static-libs both shared)"
77 + -Dxkb-config-root="${EPREFIX}/usr/share/X11/xkb"
78 + -Denable-wayland=false # Demo applications
79 + $(meson_use X enable-x11)
80 + $(meson_use doc enable-docs)
81 + )
82 + meson_src_configure
83 +}
84 +
85 +multilib_src_compile() {
86 + meson_src_compile
87 +}
88 +
89 +multilib_src_test() {
90 + meson_src_test
91 +}
92 +
93 +multilib_src_install() {
94 + meson_src_install
95 +}