Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libxklavier/
Date: Sun, 01 Jan 2023 16:20:10
Message-Id: 1672589899.d6968cd79081b372b07b1f095d75f1961096a194.soap@gentoo
1 commit: d6968cd79081b372b07b1f095d75f1961096a194
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 1 16:18:19 2023 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 1 16:18:19 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6968cd7
7
8 x11-libs/libxklavier: update EAPI 7 -> 8
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 .../{libxklavier-5.4.ebuild => libxklavier-5.4-r1.ebuild} | 14 ++++++--------
13 1 file changed, 6 insertions(+), 8 deletions(-)
14
15 diff --git a/x11-libs/libxklavier/libxklavier-5.4.ebuild b/x11-libs/libxklavier/libxklavier-5.4-r1.ebuild
16 similarity index 88%
17 rename from x11-libs/libxklavier/libxklavier-5.4.ebuild
18 rename to x11-libs/libxklavier/libxklavier-5.4-r1.ebuild
19 index b8d6e7e7ab16..b73271b1117a 100644
20 --- a/x11-libs/libxklavier/libxklavier-5.4.ebuild
21 +++ b/x11-libs/libxklavier/libxklavier-5.4-r1.ebuild
22 @@ -1,9 +1,9 @@
23 -# Copyright 1999-2022 Gentoo Authors
24 +# Copyright 1999-2023 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 -EAPI=7
28 +EAPI=8
29
30 -inherit libtool vala xdg-utils
31 +inherit libtool vala
32
33 DESCRIPTION="A library for the X Keyboard Extension (high-level API)"
34 HOMEPAGE="https://www.freedesktop.org/wiki/Software/LibXklavier"
35 @@ -25,7 +25,6 @@ RDEPEND="
36 x11-libs/libxkbfile:=
37 >=x11-misc/xkeyboard-config-2.4.1-r3
38 introspection? ( >=dev-libs/gobject-introspection-1.30:= )
39 - vala? ( $(vala_depend) )
40 "
41 DEPEND="${RDEPEND}"
42 BDEPEND="
43 @@ -33,18 +32,18 @@ BDEPEND="
44 >=dev-util/gtk-doc-am-1.4
45 sys-devel/gettext
46 virtual/pkgconfig
47 + vala? ( $(vala_depend) )
48 "
49
50 src_prepare() {
51 default
52 elibtoolize
53 - xdg_environment_reset
54 - use vala && vala_src_prepare
55 }
56
57 src_configure() {
58 + use vala && vala_setup
59 +
60 econf \
61 - --disable-static \
62 --disable-gtk-doc \
63 $(use_enable introspection) \
64 $(use_enable vala) \
65 @@ -54,6 +53,5 @@ src_configure() {
66
67 src_install() {
68 default
69 - dodoc CREDITS
70 find "${ED}" -type f -name '*.la' -delete || die
71 }