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/orca/
Date: Sat, 02 Jul 2022 03:22:04
Message-Id: 1656731289.b310943177ac1b3bedf6aa8a660778c002e8617b.mattst88@gentoo
1 commit: b310943177ac1b3bedf6aa8a660778c002e8617b
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 2 03:08:09 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 2 03:08:09 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3109431
7
8 app-accessibility/orca: Version bump to 42.2
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 app-accessibility/orca/Manifest | 1 +
13 app-accessibility/orca/orca-42.2.ebuild | 63 +++++++++++++++++++++++++++++++++
14 2 files changed, 64 insertions(+)
15
16 diff --git a/app-accessibility/orca/Manifest b/app-accessibility/orca/Manifest
17 index c981dbdfbec3..cef98c821d54 100644
18 --- a/app-accessibility/orca/Manifest
19 +++ b/app-accessibility/orca/Manifest
20 @@ -1 +1,2 @@
21 DIST orca-42.1.tar.xz 3700132 BLAKE2B 1310a1b43da709e9b273ce21374fff9fa30fbf08d1d0e171eb7eff4511ad5e2bcee12a2d6549a4c0c8e21526fb6f4b3b311d0e09fd6bfa863e29168809df9c10 SHA512 98f016087317666c4dcc7543d16ffb93214075d49d3708a1aa3dc8b6dd5d9d85c52dd31e650f4511371061c58d53e73455a09d6d7b4405b8a972b58ff1d7db91
22 +DIST orca-42.2.tar.xz 3707612 BLAKE2B a181c994ee8c35561d493dd00949807c09ccb3dd406ed0c61083c746c29fe7ef9db010484c34ca4416170cf51555b1f595f78816ca5f66ccf29970a0ff447088 SHA512 78c4e6d588d4929869100b761c85aa1d37a503e0960953c6ef7488ac7ed3c6d4ec400b9fd034b5178d64a69aca7daeaac2f25e292c32dfa814f7428b1c159fd5
23
24 diff --git a/app-accessibility/orca/orca-42.2.ebuild b/app-accessibility/orca/orca-42.2.ebuild
25 new file mode 100644
26 index 000000000000..b5714207dce1
27 --- /dev/null
28 +++ b/app-accessibility/orca/orca-42.2.ebuild
29 @@ -0,0 +1,63 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +PYTHON_COMPAT=( python3_{8..10} )
35 +PYTHON_REQ_USE="threads(+)"
36 +
37 +inherit gnome2 python-single-r1
38 +
39 +DESCRIPTION="Extensible screen reader that provides access to the desktop"
40 +HOMEPAGE="https://wiki.gnome.org/Projects/Orca"
41 +
42 +LICENSE="LGPL-2.1+ CC-BY-SA-3.0"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
45 +
46 +IUSE="+braille"
47 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
48 +
49 +DEPEND="${PYTHON_DEPS}
50 + >=app-accessibility/at-spi2-atk-2.34:2
51 + >=app-accessibility/at-spi2-core-2.36:2[introspection]
52 + >=dev-libs/atk-2.36
53 + >=dev-libs/glib-2.28:2
54 + media-libs/gstreamer:1.0[introspection]
55 + >=x11-libs/gtk+-3.6.2:3[introspection]
56 + $(python_gen_cond_dep '
57 + dev-python/gst-python:1.0[${PYTHON_USEDEP}]
58 + >=dev-python/pygobject-3.18:3[${PYTHON_USEDEP}]
59 + ')
60 + braille? (
61 + $(python_gen_cond_dep '
62 + >=app-accessibility/brltty-5.0-r3[python,${PYTHON_USEDEP}]
63 + dev-libs/liblouis[python,${PYTHON_USEDEP}]
64 + ')
65 + )
66 +"
67 +RDEPEND="${DEPEND}
68 + dev-libs/atk[introspection]
69 + $(python_gen_cond_dep '
70 + >=app-accessibility/speech-dispatcher-0.8[python,${PYTHON_USEDEP}]
71 + >=dev-python/pyatspi-2.36[${PYTHON_USEDEP}]
72 + dev-python/setproctitle[${PYTHON_USEDEP}]
73 + ')
74 + x11-libs/libwnck:3[introspection]
75 + x11-libs/pango[introspection]
76 +"
77 +BDEPEND="
78 + dev-util/itstool
79 + >=sys-devel/gettext-0.19.8
80 + virtual/pkgconfig
81 +"
82 +# app-text/yelp-tools
83 +
84 +src_configure() {
85 + gnome2_src_configure \
86 + $(use_with braille liblouis)
87 +}
88 +
89 +src_install() {
90 + gnome2_src_install
91 + python_optimize
92 +}