You are not logged in.
I'm rather forgetful with remembering my passwords and I found revelation. Following is the PKGBUILD
pkgname=revelation
pkgver=0.3.0
pkgrel=2
pkgdesc="a gnome password manager"
url="http://oss.wired-networks.net/revelation/"
license="gpl"
depends=(pygtk gnome-python pycrypto pyorbit)
source=($pkgname-$pkgver.tar.bz2)
build() {
cd $startdir/src/$pkgname-$pkgver
python ./setup.py build
python ./setup.py install --root $startdir/pkg/
}
But after I install it I get this error
[wdemoss@FRISCO wdemoss]$ revelation
Traceback (most recent call last):
File "/usr/bin/revelation", line 27, in ?
import gtk, gnome, gnome.ui, revelation, os, os.path, sys, gobject, gc, gconf
ImportError: could not import bonobo.ui
I have the dependencies pygtk, gnome-python, pycrypto installed. The bonobo.ui module appears to be owned by gnome-python and is in /usr/lib/python2.3/site-packages/gtk-2.0/bonobo/ui.so.
Any python gurus out there have any ideas?
-wd
Hobbes : Shouldn't we read the instructions?
Calvin : Do I look like a sissy?
Offline
well it could be a few things but likely it is looking for the necessary gnome bit it needs to run in /usr while in arch they reside in /opt/gnome. some of those in the list sound strangely like old gnome 1.4 files. but if the code is current i am likely wrong.
AKA uknowme
I am not your friend
Offline
Doing a little bit of testing here, you'll also need to make it depend on pyorbit... though, it does seem to be a dependency of gnome-python's... maybe someone should contact the gnome-python maintainer..
I have discovered that all of mans unhappiness derives from only one source, not being able to sit quietly in a room
- Blaise Pascal
Offline
Doing a little bit of testing here, you'll also need to make it depend on pyorbit... though, it does seem to be a dependency of gnome-python's... maybe someone should contact the gnome-python maintainer..
Thanks Xentac, that was it. Pyorbit solved the problem. I'll file a bug report against gnome-python.
EDIT:
Looks like I already did for something else:
http://bugs.archlinux.org/index.php?do=details&id=907
Hobbes : Shouldn't we read the instructions?
Calvin : Do I look like a sissy?
Offline