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: Thu, 19 Sep 2019 07:15:49
Message-Id: 1568877190.ffb064349f72914042e3df913c880cee031babc7.leio@gentoo
1 commit: ffb064349f72914042e3df913c880cee031babc7
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 19 06:19:26 2019 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 19 07:13:10 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffb06434
7
8 app-accessibility/at-spi2-core: bump to 2.32.1
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.12
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.32.1.ebuild | 61 ++++++++++++++++++++++
15 2 files changed, 62 insertions(+)
16
17 diff --git a/app-accessibility/at-spi2-core/Manifest b/app-accessibility/at-spi2-core/Manifest
18 index 63be5bdc8f2..e573ee9b7cf 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.26.2.tar.xz 494484 BLAKE2B 0c67cea9c0107fb6503a933de134eb662f192ae2a98734bde1b0629da151476858720d2dcb1791a00a44b61ae2ead945178fba659f88303c552567d7f3f9817b SHA512 6a8e158e30c37ce475467b6634aff046a318875271966d7bfa3e56052d0cd26cd37435d0b9ae14f079542b8b3e76088da5bd50ed39eb39f3f40394c55ed3f255
23 DIST at-spi2-core-2.30.1.tar.xz 188056 BLAKE2B 8686a5bd0a359d575d052f5c42cec76bbd88f7d681decbcec92ef163d5f59dac4e642b544b928e141739479b9e349868c0f5ecb7d42a29e9b32615f27a852e52 SHA512 c8b6a2ae5f96ce7d8c1fd32c9fec861148ceff631069b417296425fe6e2ae15198628826e13a72e018871d38e12b1128aa299edcc45eaf3eb7bbff83774361cd
24 +DIST at-spi2-core-2.32.1.tar.xz 188952 BLAKE2B a12e234b19a38b0fcffbabb8430ef49dc538b38831cc22bbafc7f5d499082007909a82e785184d052f3a62853474cbc4838125540026a6d0e2ac2181e98a6a4c SHA512 cec6ea1426b25d9738c5c401a1038b39e04b1e989b7ef8e02590d117b35cfb253b260cc6e41b09e10e007801fedcb7702c48ba7f3a0c7b6c1f16edd4e8ad0cca
25
26 diff --git a/app-accessibility/at-spi2-core/at-spi2-core-2.32.1.ebuild b/app-accessibility/at-spi2-core/at-spi2-core-2.32.1.ebuild
27 new file mode 100644
28 index 00000000000..bd6e7782747
29 --- /dev/null
30 +++ b/app-accessibility/at-spi2-core/at-spi2-core-2.32.1.ebuild
31 @@ -0,0 +1,61 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit gnome.org meson multilib-minimal systemd virtualx xdg
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 ~s390 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
46 +
47 +RDEPEND="
48 + >=sys-apps/dbus-1.5[${MULTILIB_USEDEP}]
49 + >=dev-libs/glib-2.36:2[${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 +BDEPEND="
59 + dev-util/glib-utils
60 + gtk-doc? (
61 + >=dev-util/gtk-doc-1.25
62 + app-text/docbook-xml-dtd:4.3 )
63 + >=sys-devel/gettext-0.19.8
64 + virtual/pkgconfig[${MULTILIB_USEDEP}]
65 +"
66 +
67 +PATCHES=(
68 + # disable teamspaces test since that requires Novell.ICEDesktop.Daemon
69 + "${FILESDIR}/${PN}-2.0.2-disable-teamspaces-test.patch"
70 +)
71 +
72 +multilib_src_configure() {
73 + local emesonargs=(
74 + -Dsystemd_user_dir="$(systemd_get_userunitdir)"
75 + -Ddocs=$(multilib_native_usex gtk-doc true false)
76 + -Dintrospection=$(multilib_native_usex introspection)
77 + -Dx11=$(usex X)
78 + )
79 + meson_src_configure
80 +}
81 +
82 +multilib_src_compile() {
83 + meson_src_compile
84 +}
85 +
86 +multilib_src_test() {
87 + virtx meson_src_test
88 +}
89 +
90 +multilib_src_install() {
91 + meson_src_install
92 +}