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-misc/xkeyboard-config/
Date: Sat, 04 Jun 2022 12:33:45
Message-Id: 1654346014.9653add7d50b05fdf01ff737e59ddca0506b18b6.mattst88@gentoo
1 commit: 9653add7d50b05fdf01ff737e59ddca0506b18b6
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 4 12:27:40 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 4 12:33:34 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9653add7
7
8 x11-misc/xkeyboard-config: Version bump to 2.36
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 x11-misc/xkeyboard-config/Manifest | 1 +
13 .../xkeyboard-config/xkeyboard-config-2.36.ebuild | 42 ++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/x11-misc/xkeyboard-config/Manifest b/x11-misc/xkeyboard-config/Manifest
17 index ed05158ba3b2..ec2b91c31613 100644
18 --- a/x11-misc/xkeyboard-config/Manifest
19 +++ b/x11-misc/xkeyboard-config/Manifest
20 @@ -1 +1,2 @@
21 DIST xkeyboard-config-2.35.1.tar.xz 873196 BLAKE2B 22a57cf8858f85dedb78c6fb8d29914e3ba07fc1bafacce40ea1aca485d5db510140af3a5df286ccf3247e8e2715820ea6b6ef412d808b448236f04325eefb8f SHA512 0c62246aa45c9cb883979cc32ba01a6ebf1c3e40673603ddd304a46f1583b997b17ade708849102285f01fe0caafb35abf9c7686ef8be49f4f2b521e03418f94
22 +DIST xkeyboard-config-2.36.tar.xz 880776 BLAKE2B 3ce6d9e5a1e763beb15614cd1b559ff6d56c2f6438b1c0680755a029ac90e48de4a939b1bcc0054a510cc0e08f6ffa6db98fecd4bf11e01510b151aa664425c3 SHA512 a81054ff6b7928a445a913b80fad995056559feff7bc1f4926657f171a102108b6e22958dc6c814ae2a25445f65c94485f13399628016f1358cf3840e235e3de
23
24 diff --git a/x11-misc/xkeyboard-config/xkeyboard-config-2.36.ebuild b/x11-misc/xkeyboard-config/xkeyboard-config-2.36.ebuild
25 new file mode 100644
26 index 000000000000..007071e3699d
27 --- /dev/null
28 +++ b/x11-misc/xkeyboard-config/xkeyboard-config-2.36.ebuild
29 @@ -0,0 +1,42 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python3_{8..11} )
36 +inherit meson python-any-r1
37 +
38 +DESCRIPTION="X keyboard configuration database"
39 +HOMEPAGE="https://www.freedesktop.org/wiki/Software/XKeyboardConfig https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config"
40 +
41 +if [[ ${PV} == 9999 ]]; then
42 + EGIT_REPO_URI="https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config.git"
43 + inherit git-r3
44 +else
45 + SRC_URI="https://www.x.org/releases/individual/data/${PN}/${P}.tar.xz"
46 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
47 +fi
48 +
49 +LICENSE="MIT"
50 +SLOT="0"
51 +
52 +DEPEND=""
53 +RDEPEND=""
54 +BDEPEND="
55 + ${PYTHON_DEPS}
56 + dev-lang/perl
57 + dev-libs/libxslt
58 + sys-devel/gettext
59 +"
60 +
61 +pkg_setup() {
62 + python-any-r1_pkg_setup
63 +}
64 +
65 +src_configure() {
66 + local emesonargs=(
67 + -Dxkb-base="${EPREFIX}/usr/share/X11/xkb"
68 + -Dcompat-rules=true
69 + )
70 + meson_src_configure
71 +}