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-atk/
Date: Thu, 19 Sep 2019 07:15:49
Message-Id: 1568877191.f690b20acd9d9c0ea07a2c696c2a94e71cb858d4.leio@gentoo
1 commit: f690b20acd9d9c0ea07a2c696c2a94e71cb858d4
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 19 07:12:13 2019 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 19 07:13:11 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f690b20a
7
8 app-accessibility/at-spi2-atk: bump to 2.32.0
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-atk/Manifest | 1 +
14 .../at-spi2-atk/at-spi2-atk-2.32.0.ebuild | 42 ++++++++++++++++++++++
15 2 files changed, 43 insertions(+)
16
17 diff --git a/app-accessibility/at-spi2-atk/Manifest b/app-accessibility/at-spi2-atk/Manifest
18 index f2a27f9d2c2..3c805bafc17 100644
19 --- a/app-accessibility/at-spi2-atk/Manifest
20 +++ b/app-accessibility/at-spi2-atk/Manifest
21 @@ -1,2 +1,3 @@
22 DIST at-spi2-atk-2.26.2.tar.xz 322800 BLAKE2B 108a01fd8c16816d9953ad42721080dd6dcb9f75c95c412387d7f54920998c66eb5855eb859e8e00096a47b387d05779691887a7717d31f4c70681d69a9c8266 SHA512 f938b8e2b999fcdfa13e9433bd13c39430bae2ceae0c664a24caccc6af522947bf73de02de3c359807f5370a85961193df2ba24b193b60b915c61828ea747bb2
23 DIST at-spi2-atk-2.30.1.tar.xz 94812 BLAKE2B fe3ef77e749bef2300219fe32586ac0b871d06dce708ce8b7b57356a1fa17041c3f7b788e3e6d6b5f89dc97c3e8d43a9d1eb897ed8fbaac954f042421aef68b6 SHA512 862cccb65d2a8a7df4e899e4f53742535389a0efa0a75c936b52e68690c07e206b19d8308f0910cddb71bda0d803012d613f6959329ae43c411d1314062b7018
24 +DIST at-spi2-atk-2.32.0.tar.xz 94952 BLAKE2B 972bb32590a51549eb8b0b3c46a068e95cc43783f0f0e31ca3663ff1669196a88def63342c01d056d45d6f4fb4bcc2127b50a49be37fd45d33aa1daeadca5172 SHA512 095ceaa33d5b35f1f4f81a31bea00487c054493cb29d4fdbcf74331ec8d1b9570dc7cb93e1cc06da9ea3f5805e7a3a9e7bf80cfdbce86a1822c2a46327109393
25
26 diff --git a/app-accessibility/at-spi2-atk/at-spi2-atk-2.32.0.ebuild b/app-accessibility/at-spi2-atk/at-spi2-atk-2.32.0.ebuild
27 new file mode 100644
28 index 00000000000..80158f6f336
29 --- /dev/null
30 +++ b/app-accessibility/at-spi2-atk/at-spi2-atk-2.32.0.ebuild
31 @@ -0,0 +1,42 @@
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 virtualx xdg
38 +
39 +DESCRIPTION="Gtk module for bridging AT-SPI to Atk"
40 +HOMEPAGE="https://wiki.gnome.org/Accessibility"
41 +
42 +LICENSE="LGPL-2+"
43 +SLOT="2"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
45 +IUSE="test"
46 +
47 +RDEPEND="
48 + >=sys-apps/dbus-1.5[${MULTILIB_USEDEP}]
49 + >=dev-libs/glib-2.32:2[${MULTILIB_USEDEP}]
50 + >=dev-libs/atk-2.31.1[${MULTILIB_USEDEP}]
51 + >=app-accessibility/at-spi2-core-2.31.2[${MULTILIB_USEDEP}]
52 +"
53 +DEPEND="${RDEPEND}"
54 +BDEPEND="
55 + virtual/pkgconfig[${MULTILIB_USEDEP}]
56 + test? ( >=dev-libs/libxml2-2.9.1 )
57 +"
58 +
59 +multilib_src_configure() {
60 + meson_src_configure
61 +}
62 +
63 +multilib_src_compile() {
64 + meson_src_compile
65 +}
66 +
67 +multilib_src_test() {
68 + virtx dbus-run-session meson test -C "${BUILD_DIR}" || die 'tests failed'
69 +}
70 +
71 +multilib_src_install() {
72 + meson_src_install
73 +}