You are not logged in.
Hi,
Until last week i was able to fetch lyrics with exaile, but something broke it, and now exaile is complaining about missing gnome-python-extras. I have installed both libgtkhtml and gnome-python-extras:
$ pacman -Qs gnome-python-extras libgtkhtml exaile
local/gnome-python-extras 2.14.3-1
Gnome Python interfaces for libraries not part of the core platform
local/libgtkhtml 2.11.1-1
An HTML library for GTK
local/exaile 0.2.11-1
Exaile is a media player aiming to be similar to KDE's AmaroK, but for GTK+
Reinstall didn't help. Any ideas?
Last edited by lman (2008-02-23 20:44:35)
Offline
hmm - I am not sure if this is it - but - do you have gnome-python 2.20.1-1 installed?
AFAIR this helped my exaile... Anyway - mine is working OK - so, let me know if this was it - if not I will try to search further.
Have a nice weekend,
tami
EDIT: Do not bother - I was too optimistic - fetching lyrics is not working here, too. Also complaining on missing gnome-python-extras. It seems the pack should be recompiled by hand from ABS than...
Last edited by tami (2008-02-23 14:37:05)
"Possession means worries and luggage bags one has to drag along." Little My
Offline
gnome-python-extras needs to be rebuilt against the new xulrunner *.12* pkg;
submit a bug report if you need to
Offline
Hi,
thanks for the tip. It kinda solved the problem.
I can see now the lyrics and the other tabs, but there is just a button that says, that 'open browser' and a link next to it. And when I try to open the information tab again exaile dies. I suppose that's another bug.
So now I'm trying to build the whole xulrunner from abs as I'm writing. I'm not really familiar with bug reporting, but if it still isn't working, I will report it.
Anyway, here is the bug report from bug buddy: http://lmanweb.extra.hu/gecko-bugreport.txt
EDIT: After installing xulrunner from abs exaile won't die, but it still don't load the pages within the tabs, and the wiki plugin still doesn't work
EDIT2: OK, i reported it: bug ID 9660
Last edited by lman (2008-02-23 18:54:20)
Offline
I have the same problem, exaile complains that python-gnome2-extras is missing.... ;-(
Mr Green
Offline
OK, yeah I solved it.
You still have to build the gnome-python-extras from ABS.
And then just comment out these two lines in /usr/bin/exaile:
#export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/mozilla/lib/xulrunner
#export MOZILLA_FIVE_HOME=/opt/mozilla/lib/xulrunner
If that dosn't work try ldconfig or in /usr/bin/exaile change '/opt/mozilla/' to '/usr/'. I think the problem was, that xulrunner libs are in /usr/lib/xulrunner now, no longer in /opt/mozilla/lib/xulrunner.
Last edited by lman (2008-02-23 20:55:31)
Offline
#!/bin/sh
cd /usr/share/exaile
exec python /usr/lib/exaile/exaile.py "$@"
That all I have in /usr/bin/exaile?
Mr Green
Offline
That's all I have there, and it's working.
Offline
make DESTDIR=$startdir/pkg PREFIX=/usr FIREFOX=/opt/mozilla/lib/xulrunner inst
all
from PKGBUILD
may be the problem
Rebuilt gnome-python-extras from abs [had to install other missing deps!] seems to work now
Why on earth is going on?
Last edited by Mr Green (2008-02-24 19:17:55)
Mr Green
Offline
in exaile PKGBUILd, change:
FIREFOX=/opt/mozilla/lib/xulrunner
to:
FIREFOX=/usr/lib/xulrunner
and rebuild.
Offline
Yeah did that and still had to rebuild gnome-python-extras ...weird working now
Thanks
MrG
Mr Green
Offline
I just checked. gnome-python-extras also has to be rebuilt for the latest xulrunner. Submit a bug report if it hasn't been done yet.
Offline
ok will check thanks
Mr Green
Offline
to live is to die
Offline
the bug persist in the new version, but you can do this workaround:
open the /usr/bin/exaile file and change it to look like this:
#!/bin/sh
cd /usr/share/exaile
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/xulrunner
export MOZILLA_FIVE_HOME=/usr/lib/xulrunner
exec python /usr/lib/exaile/exaile.py "$@"
Offline