Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-accessibility/at-spi2-core/
Date: Mon, 18 Feb 2019 19:00:36
Message-Id: 1550516256.bef8bbe559b10bd694fde5271eb74eac14687ef7.leio@gentoo
1 commit: bef8bbe559b10bd694fde5271eb74eac14687ef7
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 7 06:43:20 2019 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 18 18:57:36 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bef8bbe5
7
8 app-accessibility/at-spi2-core: Version bump to 2.30.0
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 app-accessibility/at-spi2-core/Manifest | 1 +
14 .../at-spi2-core/at-spi2-core-2.30.0.ebuild | 56 ++++++++++++++++++++++
15 2 files changed, 57 insertions(+)
16
17 diff --git a/app-accessibility/at-spi2-core/Manifest b/app-accessibility/at-spi2-core/Manifest
18 index 28c453e1082..94ae9b09920 100644
19 --- a/app-accessibility/at-spi2-core/Manifest
20 +++ b/app-accessibility/at-spi2-core/Manifest
21 @@ -1,2 +1,3 @@
22 DIST at-spi2-core-2.24.1.tar.xz 452440 BLAKE2B 2e3e262d507dadbdb8fc5bb1bd60d3dbe8a9c2946228b6dc551d0a9564684d96b1b6cbe29849c1d846b3106b5444a2c6880a10825ba20cca87893f6a52815023 SHA512 e7f354a90204f12d4e464a6b4e4cb27141af3715d7c5ec253bdd2ebe65bc7d191ae7b775c45470a1bd1fe2c0accdd4e84feeb5e1eb1a6c05f3e5e734371027be
23 DIST at-spi2-core-2.26.2.tar.xz 494484 BLAKE2B 0c67cea9c0107fb6503a933de134eb662f192ae2a98734bde1b0629da151476858720d2dcb1791a00a44b61ae2ead945178fba659f88303c552567d7f3f9817b SHA512 6a8e158e30c37ce475467b6634aff046a318875271966d7bfa3e56052d0cd26cd37435d0b9ae14f079542b8b3e76088da5bd50ed39eb39f3f40394c55ed3f255
24 +DIST at-spi2-core-2.30.0.tar.xz 188016 BLAKE2B 07e60fdcdf129f807d247bfc02d3d2f11796e21ce94f5149cb2970e13a02ec77c5ef05f8fcb8851d9bd83c1c2ab4c72868980c570c27e63704ad2263e527702e SHA512 f875738fd8a30dc8eeebb0b1a2631d7ef03e93db4dd8475cddb91c173a4ca7b473149ccb4fa2480df53555654612aa02f571461160e8931f50fda10b6a8b8c21
25
26 diff --git a/app-accessibility/at-spi2-core/at-spi2-core-2.30.0.ebuild b/app-accessibility/at-spi2-core/at-spi2-core-2.30.0.ebuild
27 new file mode 100644
28 index 00000000000..1e699cd04fa
29 --- /dev/null
30 +++ b/app-accessibility/at-spi2-core/at-spi2-core-2.30.0.ebuild
31 @@ -0,0 +1,56 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +inherit gnome.org meson multilib-minimal virtualx
38 +
39 +DESCRIPTION="D-Bus accessibility specifications and registration daemon"
40 +HOMEPAGE="https://wiki.gnome.org/Accessibility"
41 +
42 +LICENSE="LGPL-2+"
43 +SLOT="2"
44 +IUSE="X gtk-doc +introspection"
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
46 +
47 +RDEPEND="
48 + >=dev-libs/glib-2.36:2[${MULTILIB_USEDEP}]
49 + >=sys-apps/dbus-1.5[${MULTILIB_USEDEP}]
50 + introspection? ( >=dev-libs/gobject-introspection-1.54.0:= )
51 + X? (
52 + x11-libs/libX11[${MULTILIB_USEDEP}]
53 + x11-libs/libXtst[${MULTILIB_USEDEP}]
54 + x11-libs/libXi[${MULTILIB_USEDEP}]
55 + )
56 +"
57 +DEPEND="${RDEPEND}
58 + gtk-doc? ( >=dev-util/gtk-doc-1.25 )
59 + >=sys-devel/gettext-0.19.8
60 + virtual/pkgconfig[${MULTILIB_USEDEP}]
61 +"
62 +
63 +PATCHES=(
64 + # disable teamspaces test since that requires Novell.ICEDesktop.Daemon
65 + "${FILESDIR}/${PN}-2.0.2-disable-teamspaces-test.patch"
66 +)
67 +
68 +multilib_src_configure() {
69 + local emesonargs=(
70 + -Denable_docs=$(multilib_native_usex gtk-doc true false)
71 + -Denable-introspection=$(multilib_native_usex introspection)
72 + -Denable-x11=$(usex X)
73 + )
74 + meson_src_configure
75 +}
76 +
77 +multilib_src_compile() {
78 + meson_src_compile
79 +}
80 +
81 +multilib_src_test() {
82 + virtx meson_src_test
83 +}
84 +
85 +multilib_src_install() {
86 + meson_src_install
87 +}