Re: [Freevo-users] Freevo Fails to Recognize DVDs (which lsdvd does)

2008-11-30 Thread Jim Duda
Duncan Webb wrote:

> I have seen this reported several times, dischi fixed this in
> kaa.metadata svn.
> 
> Cheers,
> Duncan

I upgraded to kaa-svn and my issue is resolved.
Thanks Duncan,
Jim


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] osd changes and imlib2 trackback

2008-11-30 Thread John Molohan
Jason Tackaberry wrote:
> On Sun, 2008-11-30 at 20:39 +0100, Dirk Meyer wrote:
>   
>> That is odd, that is what kaa.base is doing to detect imlib2
>> support. Can you try to debug the library functions in
>> kaa.base.distribution.core?
>> 
>
> Yeah, I'm not sure what's going on here, but if you could add some
> debugging to kaa/base/src/dist/core.py that'd be a big help.
> Particularly, around line 72, print the 'result' variable.
>   
Had a quick glance at it earlier but wouldn't have known where to 
pinpoint. I'll have a quick look during the week (tomorrow hopefully) 
and let you know.
> (You'll need to reinstall kaa.base before running setup.py in
> kaa/display again.)
>
> Thanks,
> Jason.
>
>   
Thanks,

John

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] osd changes and imlib2 trackback

2008-11-30 Thread Jason Tackaberry
On Sun, 2008-11-30 at 20:39 +0100, Dirk Meyer wrote:
> That is odd, that is what kaa.base is doing to detect imlib2
> support. Can you try to debug the library functions in
> kaa.base.distribution.core?

Yeah, I'm not sure what's going on here, but if you could add some
debugging to kaa/base/src/dist/core.py that'd be a big help.
Particularly, around line 72, print the 'result' variable.

(You'll need to reinstall kaa.base before running setup.py in
kaa/display again.)

Thanks,
Jason.


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] osd changes and imlib2 trackback

2008-11-30 Thread Dirk Meyer
John Molohan wrote:
> None?
>
> [EMAIL PROTECTED] ~]# vim test.c
> [EMAIL PROTECTED] ~]# cc test.c `imlib2-config --libs --cflags`
> [EMAIL PROTECTED] ~]#

That is odd, that is what kaa.base is doing to detect imlib2
support. Can you try to debug the library functions in
kaa.base.distribution.core?


Dischi

-- 
This signature is temporarily under construction


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] osd changes and imlib2 trackback

2008-11-30 Thread John Molohan
Jason Tackaberry wrote:
> On Fri, 2008-11-28 at 22:43 +, John Molohan wrote:
>   
>> I'm a bit puzzled now but have probably missed something?
>> 
>
> Is this a 64-bit platform?
>   
Nope.
> Try compiling this short file, call it test.c:
>
> #include 
> 
> int main(int argc, char **argv) {
> imlib_context_set_display(NULL);
> }
>
> Compile it with:
>
>cc test.c `imlib2-config --libs --cflags`
>
> What output do you see from cc?
>   
None?

[EMAIL PROTECTED] ~]# vim test.c
[EMAIL PROTECTED] ~]# cc test.c `imlib2-config --libs --cflags`
[EMAIL PROTECTED] ~]#

> Thanks,
> Jason.
>
>   
Thanks,

John

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Running multiple versions

2008-11-30 Thread Daniel Lawson
Hi all,

I'm trying to upgrade from 1.73 to 1.82 seemlessly, so I want to run 1.82 for a 
while without replacing 1.73.  I've followed the instructions for doing this 
with an SVN version (http://doc.freevo.org/SourceSVNInstallation) but am having 
problems getting things working.  I installed to a local directory:

>python setup.py install --prefix=~/freevo-1.82

then created a second .freevo directory for 1.82:
>cd ~;mv .freevo .freevo_1.73
>cp -r .freevo_1.73 .freevo_1.82
>ln -s .freevo_1.82 .freevo

and told python to use the local freevo files
>export PYTHONPATH=~/freevo-1.82/lib/python2.5/site-packages
(which exists and contains freevo)

finally, I upgraded the freevo config file to 1.82:
>cd ~/freevo-1.82
>cp /etc/freevo/freevo.conf .
>./bin/freevo convert_config ~/.freevo/local_conf.py -w

(run without the -w to see the changes first).

However, when I try to run freevo I get some notes and freevo just dies:
>./bin/freevo
trying "/var/log/freevo"...
trying "/var/lib/freevo"...


The log is not informative, but its included below (it is the same with freevo 
run with freevo --trace).

Obviously I'm doing something wrong and I suspect its setting up the 
environment for the new version.  Any help would be much appreciated!

Cheers

Dan

the log:
cat ~/.freevo/log/main-1002.log 
Freevo 1.8.2 r10954 started at Sun Nov 30 18:22:33 2008

2008-11-30 18:22:33,451 INFO config.py (522): LOGDIR: /var/log 
/home/dan/.freevo/log
2008-11-30 18:22:33,452 INFO config.py (523): STATICDIR: /var/lib 
/home/dan/.freevo/static
2008-11-30 18:22:33,452 INFO config.py (524): CACHEDIR: /var/cache 
/var/cache/freevo
2008-11-30 18:22:33,452 INFO config.py (543): Loading freevo configuration 
file "./freevo.conf"

PS For information, downgrading is at least easy: 
> cd ~;rm .freevo;ln -s .freevo_1.73 .freevo;export PYTHONPATH="";
and freevo 1.73 is working smoothly again.



  

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users