Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 200112 - orca failes to configure, bonobo-python not found
Summary: orca failes to configure, bonobo-python not found
Status: RESOLVED NEEDINFO
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] GNOME (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo Linux Gnome Desktop Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-11-23 19:38 UTC by Onkobu
Modified: 2008-12-19 11:52 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
emerge --info (emerge.info,3.52 KB, text/plain)
2007-11-23 19:38 UTC, Onkobu
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Onkobu 2007-11-23 19:38:00 UTC
configure: error: Could not find python module bonobo - make sure you have gnome-python with support for libbonobo-2.0 >= 2.14.0 installed

when emerging orca-package, included by gnome-ebuild. package bonobo-python was removed in Dec '06 (GWN from 25th?). Neither libbonobo nor libbonoboui include any python-sources.

Reproducible: Always
Comment 1 Onkobu 2007-11-23 19:38:52 UTC
Created attachment 136792 [details]
emerge --info
Comment 2 Onkobu 2007-11-23 19:41:00 UTC
see also:

http://forums.gentoo.org/viewtopic-p-4445966.html?sid=d0f8241558282e3e16790fa54c950a13#4445966

I don't like downgrades and I just want to emerge gnome and not revdep-rebuild my whole system.
Comment 3 Jakub Moc (RETIRED) gentoo-dev 2007-11-23 23:15:20 UTC
Reopen with actual errors and config.log attached; we don't want any references to forums.g.o. or any other external links.
Comment 4 Onkobu 2007-11-24 18:15:58 UTC
If you don't need info like the info provided, I can't help you with that. Everytime I try to emerge orca it fails during configure with the same message: «configure: error: Could not find python module bonobo - make sure you have
gnome-python with support for libbonobo-2.0 >= 2.14.0 installed»
There was module bonobo-python in portage tree, but it disappeared somewhere back in December 2006 (GWN from 25th of December).

So what info do you need in addition to already existing one, to ask someone (or look up the stable ebuilds for orca or the ebuilds referenced by gnome ebuild, e.g. orca in app-accessibility), if there's a dependency to something called bonobo-python?

I don't care about any technical sort of information hidden in a log somewhere in /var/bla/foo/portage/your-build-version-number-xyz. If you're not able to reproduce: my fault, close as WONTFIX or WORKSFORME. You're responsible for proper error messages, I take care 'bout posting them here. Thanks for understanding and patience.
Comment 5 Onkobu 2007-11-24 18:18:59 UTC
> (In reply to comment #4)
BTW: why is there no bug when searching for «orca», not even my own? What's the use of a «description» or search action, if I can't find what I'm looking for? (I know, RESOLVED might suggest, that there is no bug, but there *was* one - maybe I'm a bit old school).
Comment 6 Rémi Cardona (RETIRED) gentoo-dev 2007-11-24 19:30:57 UTC
A few things :

1) We _want_ the info, but we also want you to attach it in bugzilla for easier research. Reading through forums (even our own) can be tedious. Having the info properly attached here saves time for everyone.

2) You _should_ care about the technical info in /var/portage/blah ... that's what we need to help you. We don't want you to analyze it yourself, we just want you to give it to us.

3) NEEDINFO means exactly that. There's no underlying personal attack. So please reopen the bug once you've attached the files Jakub asked you. That's all there is to it.

Thanks
Comment 7 Gilles Dartiguelongue (RETIRED) gentoo-dev 2007-11-24 19:50:22 UTC
cleanup your old python versions and run python-updater, it should fix your problem.
Comment 8 eric.williams 2008-12-19 11:52:18 UTC
The message may be slightly misleading; I was also having the identical problem.  In my case the root cause apparently wasn't that it couldn't find bonobo, but that it couldn't import bonobo.  (This after I had emerged dev-python/libbonbo-python, cleaned out python-2.4.4-r13, and run python-updater.  Puzzled me a little.)

If I enter python and type in

# python
Python 2.5.2 (r252:60911, Oct 28 2008, 17:15:29) 
[GCC 4.3.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import bonobo;
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "//usr/lib/python2.5/site-packages/gtk-2.0/bonobo/__init__.py", line 6, in <module>
    import ORBit
ImportError: No module named ORBit
>>>

Re-emerging dev-python/pyorbit worked around this problem and allowed orca to build successfully as well.  I'll admit to a little puzzlement as to exactly why; presumably python-updater should have resolved this issue?  Still, this worked for me.

HTH