Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-accessibility/caribou/
Date: Sun, 16 May 2021 19:11:14
Message-Id: 1621192247.0c98efdcc1dd2c5809f4dd18df88f326ab9d425b.asturm@gentoo
1 commit: 0c98efdcc1dd2c5809f4dd18df88f326ab9d425b
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 15 20:17:43 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun May 16 19:10:47 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c98efdc
7
8 app-accessibility/caribou: Drop 0.4.21-r2
9
10 Closes: https://bugs.gentoo.org/772950
11 Package-Manager: Portage-3.0.18, Repoman-3.0.3
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 app-accessibility/caribou/caribou-0.4.21-r2.ebuild | 103 ---------------------
15 1 file changed, 103 deletions(-)
16
17 diff --git a/app-accessibility/caribou/caribou-0.4.21-r2.ebuild b/app-accessibility/caribou/caribou-0.4.21-r2.ebuild
18 deleted file mode 100644
19 index 158e4af5f78..00000000000
20 --- a/app-accessibility/caribou/caribou-0.4.21-r2.ebuild
21 +++ /dev/null
22 @@ -1,103 +0,0 @@
23 -# Copyright 1999-2021 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=6
27 -
28 -GNOME2_LA_PUNT="yes"
29 -
30 -PYTHON_COMPAT=( python3_{7..9} )
31 -
32 -PYTHON_REQ_USE="xml"
33 -
34 -inherit gnome2 python-r1 vala
35 -
36 -DESCRIPTION="Input assistive technology intended for switch and pointer users"
37 -HOMEPAGE="https://wiki.gnome.org/Projects/Caribou"
38 -
39 -LICENSE="LGPL-2.1"
40 -SLOT="0"
41 -KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
42 -
43 -IUSE=""
44 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
45 -
46 -COMMON_DEPEND="
47 - app-accessibility/at-spi2-core
48 - >=dev-python/pygobject-2.90.3:3[${PYTHON_USEDEP}]
49 - >=x11-libs/gtk+-3:3[introspection]
50 - x11-libs/gtk+:2
51 - >=dev-libs/gobject-introspection-0.10.7:=
52 - dev-libs/libgee:0.8
53 - dev-libs/libxml2
54 - >=media-libs/clutter-1.5.11:1.0[introspection]
55 - x11-libs/libX11
56 - x11-libs/libxklavier
57 - x11-libs/libXtst
58 - ${PYTHON_DEPS}
59 - $(vala_depend)
60 -"
61 -# gsettings-desktop-schemas is needed for the 'toolkit-accessibility' key
62 -# pyatspi-2.1.90 needed to run caribou if pygobject:3 is installed
63 -# librsvg needed to load svg images in css styles
64 -RDEPEND="${COMMON_DEPEND}
65 - dev-libs/glib[dbus]
66 - >=dev-python/pyatspi-2.1.90[${PYTHON_USEDEP}]
67 - >=gnome-base/gsettings-desktop-schemas-3
68 - gnome-base/librsvg:2
69 - sys-apps/dbus
70 - !<x11-base/xorg-server-1.20.10
71 -"
72 -DEPEND="${COMMON_DEPEND}
73 - dev-libs/libxslt
74 - >=dev-util/intltool-0.35.5
75 - virtual/pkgconfig
76 -"
77 -
78 -PATCHES=(
79 - "${FILESDIR}/${PN}-fix-compilation-error.patch"
80 - "${FILESDIR}/${PN}-fix-subkey-popmenu.patch"
81 - "${FILESDIR}/${PN}-fix-xadapter-xkb-calls.patch"
82 - "${FILESDIR}/${PN}-fix-antler-style-css.patch"
83 -)
84 -
85 -src_prepare() {
86 - # FIXME: Now this supports python3 too...
87 - # delete custom PYTHONPATH, useless on Gentoo and potential bug source
88 - # + caribou is python2 only so fix the shell scripts
89 -# sed -e '/export PYTHONPATH=.*python/ d' \
90 -# -e "s:@PYTHON@:${EPREFIX}/usr/bin/python2:" \
91 -# -i bin/{antler-keyboard,caribou-preferences}.in ||
92 -# die "sed failed"
93 -
94 - vala_src_prepare
95 - gnome2_src_prepare
96 -
97 - prepare_caribou() {
98 - mkdir -p "${BUILD_DIR}" || die
99 - }
100 - python_foreach_impl prepare_caribou
101 -}
102 -
103 -src_configure() {
104 - ECONF_SOURCE="${S}" python_foreach_impl run_in_build_dir \
105 - gnome2_src_configure \
106 - --disable-docs \
107 - --disable-static \
108 - --enable-gtk3-module \
109 - --enable-gtk2-module
110 -}
111 -
112 -src_compile() {
113 - python_foreach_impl run_in_build_dir gnome2_src_compile
114 -}
115 -
116 -src_test() {
117 - python_foreach_impl run_in_build_dir default
118 -}
119 -
120 -src_install() {
121 - python_foreach_impl run_in_build_dir gnome2_src_install
122 -
123 - # https://bugzilla.gnome.org/show_bug.cgi?id=769323
124 - dodoc AUTHORS NEWS README # ChangeLog simply points to git log
125 -}