Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-accessibility/at-spi2-core/
Date: Sat, 01 May 2021 19:47:46
Message-Id: 1619898210.d0a2bec6e566e3d15b47f35ab5c78509efe4e03f.mattst88@gentoo
1 commit: d0a2bec6e566e3d15b47f35ab5c78509efe4e03f
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 1 19:43:30 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat May 1 19:43:30 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0a2bec6
7
8 app-accessibility/at-spi2-core: Version bump to 2.40.1
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 app-accessibility/at-spi2-core/Manifest | 1 +
13 .../at-spi2-core/at-spi2-core-2.40.1.ebuild | 62 ++++++++++++++++++++++
14 2 files changed, 63 insertions(+)
15
16 diff --git a/app-accessibility/at-spi2-core/Manifest b/app-accessibility/at-spi2-core/Manifest
17 index e666f188374..048cbaa3471 100644
18 --- a/app-accessibility/at-spi2-core/Manifest
19 +++ b/app-accessibility/at-spi2-core/Manifest
20 @@ -1,2 +1,3 @@
21 DIST at-spi2-core-2.38.0.tar.xz 190540 BLAKE2B 6c5c479c279285460a5ff80533d600b5173fe9bedacfa1522bc37da4a305b965cec2c677eaae8be809ed1a5fd8aaef6475fd27b80510efd1c530e46368e954af SHA512 3a1eb27cff6e0dd03119b4f8361a3b6037b26c511e80e2d003d1d5c41fede6d49eb5e0ac1ee45cfb4f3ca8e53292a7e2da67df80be28e77014775e41777a96c1
22 DIST at-spi2-core-2.40.0.tar.xz 197080 BLAKE2B 56c0ca8138b5178d713851ffb9a9299544a65708a3e5bf37b1e59e515bb30fccffd8b8cc9dea1e78c32a5d1fa3d21de506ef674c5e0ab8067a8ff5df206d349a SHA512 45f9123dac27982003e4c5e357ddaf31dbe945ff334bf1a7d02e81011b841bd69c717233e8b2d33abb6cfe16320bfe5893499f25d9f603cde5d11d63315e8725
23 +DIST at-spi2-core-2.40.1.tar.xz 197064 BLAKE2B dfa19413e6688678fcc0c0ed76d0fca0d5de5039c9b1e42dc10c9c387c0cbffb3c6a38570f9e74c343fa86310f2c3f6fcf0e311c57d11b5adeac5faf7bdf9630 SHA512 fcb73e78a85db9b982ae10d8c968c7732079832877fa0214c30a04b9e27910448c3f5456b8628ed4a3d4dbd59037c8c206916ad1462ca5c7a44409a702096b14
24
25 diff --git a/app-accessibility/at-spi2-core/at-spi2-core-2.40.1.ebuild b/app-accessibility/at-spi2-core/at-spi2-core-2.40.1.ebuild
26 new file mode 100644
27 index 00000000000..a38a43100ab
28 --- /dev/null
29 +++ b/app-accessibility/at-spi2-core/at-spi2-core-2.40.1.ebuild
30 @@ -0,0 +1,62 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit gnome.org meson multilib-minimal systemd virtualx xdg
37 +
38 +DESCRIPTION="D-Bus accessibility specifications and registration daemon"
39 +HOMEPAGE="https://wiki.gnome.org/Accessibility"
40 +
41 +LICENSE="LGPL-2.1+"
42 +SLOT="2"
43 +IUSE="X gtk-doc +introspection"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
45 +
46 +RDEPEND="
47 + >=sys-apps/dbus-1.5[${MULTILIB_USEDEP}]
48 + >=dev-libs/glib-2.62:2[${MULTILIB_USEDEP}]
49 + introspection? ( >=dev-libs/gobject-introspection-1.54.0:= )
50 + X? (
51 + x11-libs/libX11[${MULTILIB_USEDEP}]
52 + x11-libs/libXtst[${MULTILIB_USEDEP}]
53 + x11-libs/libXi[${MULTILIB_USEDEP}]
54 + )
55 +"
56 +DEPEND="${RDEPEND}"
57 +BDEPEND="
58 + dev-util/glib-utils
59 + gtk-doc? (
60 + >=dev-util/gtk-doc-1.25
61 + app-text/docbook-xml-dtd:4.3
62 + )
63 + >=sys-devel/gettext-0.19.8
64 + virtual/pkgconfig
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 dbus-run-session meson test -C "${BUILD_DIR}"
88 +}
89 +
90 +multilib_src_install() {
91 + meson_src_install
92 +}