Gentoo Archives: gentoo-commits

From: Alexandre Restovtsev <tetromino@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:master commit in: dev-python/pyatspi/
Date: Tue, 26 Jul 2011 07:04:06
Message-Id: 62b65d7cb84d78eca31e4d35175693ea13e676a7.tetromino@gentoo
1 commit: 62b65d7cb84d78eca31e4d35175693ea13e676a7
2 Author: Alexandre Rostovtsev <tetromino <AT> gmail <DOT> com>
3 AuthorDate: Tue Jul 26 07:01:22 2011 +0000
4 Commit: Alexandre Restovtsev <tetromino <AT> gmail <DOT> com>
5 CommitDate: Tue Jul 26 07:01:22 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=62b65d7c
7
8 dev-python/pyatspi: qa
9
10 Fix dependencies (dbus-python is a required buildtime and runtime
11 dependency; dbus is always required at runtime). Builds and passes
12 tests on x86.
13
14 ---
15 dev-python/pyatspi/pyatspi-2.0.2.ebuild | 15 +++++++--------
16 1 files changed, 7 insertions(+), 8 deletions(-)
17
18 diff --git a/dev-python/pyatspi/pyatspi-2.0.2.ebuild b/dev-python/pyatspi/pyatspi-2.0.2.ebuild
19 index 7da749f..869b529 100644
20 --- a/dev-python/pyatspi/pyatspi-2.0.2.ebuild
21 +++ b/dev-python/pyatspi/pyatspi-2.0.2.ebuild
22 @@ -15,24 +15,24 @@ HOMEPAGE="http://live.gnome.org/Accessibility"
23
24 LICENSE="LGPL-2"
25 SLOT="0"
26 -KEYWORDS="~amd64"
27 +KEYWORDS="~amd64 ~x86"
28 IUSE="test"
29
30 -RDEPEND="
31 +COMMON_DEPEND="dev-python/dbus-python
32 >=dev-python/pygobject-2.26:2
33 "
34 -DEPEND="${RDEPEND}
35 +RDEPEND="${COMMON_DEPEND}
36 + >=sys-apps/dbus-1
37 + !<gnome-extra/at-spi-1.32.0-r1
38 +"
39 +DEPEND="${COMMON_DEPEND}
40 dev-util/pkgconfig
41 test? (
42 >=dev-libs/atk-1.17
43 >=dev-libs/dbus-glib-0.7
44 dev-libs/glib:2
45 dev-libs/libxml2:2
46 - dev-python/dbus-python
47 - >=sys-apps/dbus-1
48 >=x11-libs/gtk+-2.10:2 )"
49 -RDEPEND="${RDEPEND}
50 - !<gnome-extra/at-spi-1.32.0-r1"
51
52 pkg_setup() {
53 G2CONF="${G2CONF} $(use_enable test tests)"
54 @@ -74,5 +74,4 @@ pkg_postinst() {
55 pkg_postrm() {
56 gnome2_pkg_postrm
57 python_mod_cleanup pyatspi
58 -
59 }