-----Original Message----- From: David Frager [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2008 7:24 AM To: '[email protected]' Subject: RE: [Freevo-users] Freevo 1.8.0-svn Crashes
-----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Duncan Webb Sent: Wednesday, March 19, 2008 2:16 AM To: [email protected] Subject: Re: [Freevo-users] Freevo 1.8.0-svn Crashes David Frager wrote: > This did not appear to help. I even went as far as deleting > ~/freevo-test and re-installing everything...maybe I'm missing a step > or I may have a bad config file. > > 1) svn co svn://svn.freevo.org/kaa/trunk kaa > cd kaa > python setup.py install --prefix=~/freevo-test > > 2) svn co svn://svn.freevo.org/freevo/branches/rel-1 freevo-1.x > cd freevo-1.x > > 3) cd BeautifulSoup-3.0.5 > python setup.py install --prefix=~/freevo-test step 3 is not necessary but does no harm. > 4) ./autogen.sh > > 5) python setup.py install --prefix=~/freevo-test > > 6) cd ~/freevo-test > copied backup of freevo.conf and local.conf.py > > PYTHONPATH=/root/freevo-test/lib/python2.5/site-packages > PATH=/root/freevo-test/bin:/usr/lib64/qt-3.3/bin:/usr/kerberos/sbin:/u > sr/ker > beros/bin: > /usr/lib64/ccache:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin: > /usr/b > in:/root/bin You now have a different error: > AttributeError: 'module' object has no attribute 'coroutine' This is most likely caused by picking up an old kaa version instead of the svn version. PYTHONPATH should be: /root/freevo-test/lib/python2.5/site-packages/freevo: /root/freevo-test/lib/python2.5/site-packages I've split the line up so that you can see it better. You should see in /root/freevo-test/lib/python2.5/site-packages two directories: freevo and kaa (BeautifulSoup will be there too). We import kaa modules as kaa.module but the freevo modules are imported relative to freevo, eg. import config is used rather than import freevo.config. This is why freevo needs to be in the PYTHONPATH. I may need to update the wiki page with this information. You may also need to update the freevo svn, as I've put in a fix for freevo simply exiting when kaa has not been installed. HTH Duncan ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Freevo-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/freevo-users I saw this conflict last night. I attempted to move things out of the way but still ran into additional issues. I am now seeing an error. I am thinking I may need to just remove everything and just install only from the source and not attempt to have 2 versions 2008-03-19 07:13:36,095 INFO config.py (1044): overlaydir: /var/cache/freevo/vfs 2008-03-19 07:13:36,104 WARNING rc.py (167): '/etc/freevo/lircrc' not found! 2008-03-19 07:13:36,163 WARNING rc.py (167): '/etc/freevo/lircrc' not found! Freevo 1.8.0 r10547 ready 2008-03-19 07:13:38,652 INFO create thread notifier pipe Traceback (most recent call last): File "/root/freevo-test/lib/python2.5/site-packages/freevo/main.py", line 285, in eventhandler app.eventhandler(event) File "/root/freevo-test/lib/python2.5/site-packages/freevo/menu.py", line 730, in eventhandler action(arg=arg, menuw=self) File "/root/freevo-test/lib/python2.5/site-packages/freevo/menu.py", line 92, in select self.function(arg=self.arg, menuw=menuw) File "/root/freevo-test/lib/python2.5/site-packages/freevo/tv/tvmenu.py", line 139, in start_tvguide TVGuide(self.get_start_time(), start_tv, menuw) File "/root/freevo-test/lib/python2.5/site-packages/freevo/tv/tvguide.py", line 73, in __init__ channels = guide.get_programs(start_time+1, stop_time-1) File "/root/freevo-test/lib/python2.5/site-packages/freevo/tv/epg_types.py", line 284, in get_programs c.set_logo(chan.logo) AttributeError: TvChannel instance has no attribute 'logo' ---------------------------------------------------------------------------- ---- Freevo 1.8.0-svn r10547 finished at Wed Mar 19 07:13:35 2008 ============================================================================ ==== I removed the old version of freevo, python-kaa-base, and python-kaa-metadata, then installed the source versions with a prefix of /usr. I still get the issue with chan.logo ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Freevo-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/freevo-users
