Gentoo Archives: gentoo-commits

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