Gentoo Archives: gentoo-commits

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