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: Mon, 27 Feb 2023 18:44:12
Message-Id: 1677523444.7cb5a17c707efe7c9bf041ce1442a4d4f172783d.mattst88@gentoo
1 commit: 7cb5a17c707efe7c9bf041ce1442a4d4f172783d
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 27 18:38:03 2023 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 27 18:44:04 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cb5a17c
7
8 x11-misc/xkeyboard-config: Version bump to 2.38
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.38.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 ef0114fb8d20..44559d585ba5 100644
18 --- a/x11-misc/xkeyboard-config/Manifest
19 +++ b/x11-misc/xkeyboard-config/Manifest
20 @@ -1 +1,2 @@
21 DIST xkeyboard-config-2.37.tar.xz 879744 BLAKE2B 58cc62d48a857b0935bfe7415b4a28921d02218402ca0125e8644be04a14f897e357a224fed12f9a85c6d147b4fa659241004bf49ac16c19b7f5fceb2b6d3295 SHA512 3b2da77996d48bf7b6a5f5784bbcb62070ba6ab8eabb6f255d1addd7fa58080a329464010050e894c9acc901e42e3669333db2966140c78802efb8a86620ac0e
22 +DIST xkeyboard-config-2.38.tar.xz 884988 BLAKE2B 058543eb04917c785bbb02b5a11a2492c4ad3e1910e764f476e04fd2405e4c158d7e4942da00693efc683a39dd9fe11e55003c1c9ce10cc802744e98ebcd269d SHA512 20848a5a10cfa58265518add796fd97ddd2e39e7a87b18170cd9ebc3ec87268e92641f2cd8aaed1ed80cdbe3801b65a8a916321ffc20a419511b3d2a85b0dd2a
23
24 diff --git a/x11-misc/xkeyboard-config/xkeyboard-config-2.38.ebuild b/x11-misc/xkeyboard-config/xkeyboard-config-2.38.ebuild
25 new file mode 100644
26 index 000000000000..a73d92e50be9
27 --- /dev/null
28 +++ b/x11-misc/xkeyboard-config/xkeyboard-config-2.38.ebuild
29 @@ -0,0 +1,42 @@
30 +# Copyright 1999-2023 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python3_{9..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 +}