[Freevo-users] Freevo FreeBSD port freevo-1.5.4_3 install problems (mmpython detection?)

2006-10-17 Thread Olaf van Loon




Hi list,

I try to install the FreeBSD port of Freevo, but I am not able to
install. The last few lines are:
checking for mmpython... not found
please download it from http://www.sf.net/projects/mmpython and install
it
*** Error code 1

But mmpython s installed:
/usr/ports/multimedia/freevo#pkg_info | grep mmpython
py24-mmpython-0.4.8_1 Retrieves metadata from mp3, ogg, avi, jpg and
other format

Does anyone have a clue how to handle this problem? Thanks a lot.
Olaf



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Freevo FreeBSD port freevo-1.5.4_3 install problems (mmpython detection?)

2006-10-17 Thread Gorka Olaizola
On Tue, Oct 17, 2006 at 11:46:10AM +0200, Olaf van Loon wrote:
Hi list,
 
checking for mmpython...   not found
  [...]
But mmpython ís installed:

There is a bug in the installation script. mmpython needs
xml.utils.qp_xml and if it can't import it the check for mmpython fails.
Maybe you need to install pyxml before running the setup script

-- 


signature.asc
Description: Digital signature
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Freevo FreeBSD port freevo-1.5.4_3 install problems (mmpython detection?)

2006-10-17 Thread Olaf van Loon




Thanks for you reply Gorka, but I think pyxml is already installed:

~pkg_info | grep PyXML
py24-xml-0.8.4 PyXML: Python XML library enhancements

Gorka Olaizola wrote:

  On Tue, Oct 17, 2006 at 11:46:10AM +0200, Olaf van Loon wrote:
  
  
   Hi list,

   checking for mmpython...   not found
 [...]
   But mmpython s installed:


  
  There is a bug in the installation script. mmpython needs
xml.utils.qp_xml and if it can't import it the check for mmpython fails.
Maybe you need to install pyxml before running the setup script

  
  

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  

___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users
  



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Freevo FreeBSD port freevo-1.5.4_3 install problems (mmpython detection?)

2006-10-17 Thread Duncan Webb
Olaf van Loon wrote:
 Thanks for you reply Gorka, but I think pyxml is already installed:
 
 ~pkg_info | grep PyXML
 py24-xml-0.8.4  PyXML: Python XML library enhancements
 
 Gorka Olaizola wrote:
 On Tue, Oct 17, 2006 at 11:46:10AM +0200, Olaf van Loon wrote:
   
Hi list,

checking for mmpython...   not found
  [...]
But mmpython ís installed:

 
 There is a bug in the installation script. mmpython needs
 xml.utils.qp_xml and if it can't import it the check for mmpython fails.
 Maybe you need to install pyxml before running the setup script

Could be Imaging

Try:
python
import mmpython
Ctrl-D

It will tell you what the real problem is.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Freevo FreeBSD port freevo-1.5.4_3 install problems (mmpython detection?)

2006-10-17 Thread Olaf van Loon




Thanks,

The problem is there seems to be no thread library?

This is the output:
Python 2.4.1 (#2, Jun 21 2005, 00:31:18)
[GCC 3.4.2 [FreeBSD] 20040728] on freebsd5
Type "help", "copyright", "credits" or "license" for more information.
 import mmpython
Traceback (most recent call last):
 File "stdin", line 1, in ?
 File "/usr/local/lib/python2.4/site-packages/mmpython/__init__.py",
line 121, in ?
 import audio.pcminfo
 File
"/usr/local/lib/python2.4/site-packages/mmpython/audio/pcminfo.py",
line 81, in ?
 mmpython.registertype( 'application/pcm', ('wav','aif','voc','au'),
mediainfo.TYPE_AUDIO, PCMInfo )
 File "/usr/local/lib/python2.4/site-packages/mmpython/__init__.py",
line 107, in registertype
 f = Factory()
 File "/usr/local/lib/python2.4/site-packages/mmpython/__init__.py",
line 102, in Factory
 _factory = SynchronizedObject(factory.Factory())
 File
"/usr/local/lib/python2.4/site-packages/mmpython/synchronizedobject.py",
line 45, in __init__
 import threading
 File "/usr/local/lib/python2.4/threading.py", line 6, in ?
 import thread
ImportError: No module named thread

The threading.py file exists, so what is the problem? Could it be so
that threading has to be compiled in python itself? 
Or should there be a thread.py as well as the threading.py?

Thanks for you assistence.


Duncan Webb wrote:

  Olaf van Loon wrote:
  
  
Thanks for you reply Gorka, but I think pyxml is already installed:

~pkg_info | grep PyXML
py24-xml-0.8.4  PyXML: Python XML library enhancements

Gorka Olaizola wrote:


  On Tue, Oct 17, 2006 at 11:46:10AM +0200, Olaf van Loon wrote:
  
  
  
   Hi list,

   checking for mmpython...   not found
 [...]
   But mmpython s installed:



  
  There is a bug in the installation script. mmpython needs
xml.utils.qp_xml and if it can't import it the check for mmpython fails.
Maybe you need to install pyxml before running the setup script
  

  
  
Could be Imaging

Try:
python
import mmpython
Ctrl-D

It will tell you what the real problem is.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users

  



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Freevo FreeBSD port freevo-1.5.4_3 install problems (mmpython detection?)

2006-10-17 Thread Duncan Webb
Olaf van Loon wrote:
 Thanks,
 
 The problem is there seems to be no thread library?
 
 This is the output:
 Python 2.4.1 (#2, Jun 21 2005, 00:31:18)
 [GCC 3.4.2 [FreeBSD] 20040728] on freebsd5
 Type help, copyright, credits or license for more information.
 import mmpython
 Traceback (most recent call last):
   File stdin, line 1, in ?
   File /usr/local/lib/python2.4/site-packages/mmpython/__init__.py,
 line 121, in ?
 import audio.pcminfo
   File
 /usr/local/lib/python2.4/site-packages/mmpython/audio/pcminfo.py, line
 81, in ?
 mmpython.registertype( 'application/pcm', ('wav','aif','voc','au'),
 mediainfo.TYPE_AUDIO, PCMInfo )
   File /usr/local/lib/python2.4/site-packages/mmpython/__init__.py,
 line 107, in registertype
 f = Factory()
   File /usr/local/lib/python2.4/site-packages/mmpython/__init__.py,
 line 102, in Factory
 _factory = SynchronizedObject(factory.Factory())
   File
 /usr/local/lib/python2.4/site-packages/mmpython/synchronizedobject.py,
 line 45, in __init__
 import threading
   File /usr/local/lib/python2.4/threading.py, line 6, in ?
 import thread
 ImportError: No module named thread
 
 The threading.py file exists, so what is the problem? Could it be so
 that threading has to be compiled in python itself?
 Or should there be a thread.py as well as the threading.py?

There should be a class Thread(_Verbose) in threading.py

 
 Thanks for you assistence.
 
 
 Duncan Webb wrote:
 Olaf van Loon wrote:
   
 Thanks for you reply Gorka, but I think pyxml is already installed:

 ~pkg_info | grep PyXML
 py24-xml-0.8.4  PyXML: Python XML library enhancements

 Gorka Olaizola wrote:
 
 On Tue, Oct 17, 2006 at 11:46:10AM +0200, Olaf van Loon wrote:
   
   
Hi list,

checking for mmpython...   not found
  [...]
But mmpython ís installed:

 
 
 There is a bug in the installation script. mmpython needs
 xml.utils.qp_xml and if it can't import it the check for mmpython fails.
 Maybe you need to install pyxml before running the setup script
   

 Could be Imaging

 Try:
 python
 import mmpython
 Ctrl-D

 It will tell you what the real problem is.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Freevo FreeBSD port freevo-1.5.4_3 install problems (mmpython detection?)

2006-10-17 Thread Olaf van Loon

Duncan Webb wrote:

 There should be a class Thread(_Verbose) in threading.py

   
There is a class Thread in threading.py. But it's asking for a module 
(No module named thread). What's going on here?


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Freevo FreeBSD port freevo-1.5.4_3 install problems (mmpython detection?)

2006-10-17 Thread Duncan Webb
Olaf van Loon wrote:
 Duncan Webb wrote:
 There should be a class Thread(_Verbose) in threading.py

   
 There is a class Thread in threading.py. But it's asking for a module 
 (No module named thread). What's going on here?

I'm no BSD man, have you tried:
python
import threading
import thread
Ctrl-D

If this works then it must be another problem.

If not then it could be a problem with BSD's python, try googling about
for this it may be a known problem.

Sorry that I can't be any more help.

Duncan


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Freevo FreeBSD port freevo-1.5.4_3 install problems (mmpython detection?)

2006-10-17 Thread Olaf van Loon




A renstall of python did the trick. For some reasen it must have been
installed without threading support whereas the default is with. Weird
but thanks for the help. Now to get it working with my PVR250, but it
has to wait now because I'm too busy.
Thanks

Duncan Webb wrote:

  Olaf van Loon wrote:
  
  
Duncan Webb wrote:


  There should be a class Thread(_Verbose) in threading.py

  
  

There is a class Thread in threading.py. But it's asking for a module 
("No module named thread"). What's going on here?

  
  
I'm no BSD man, have you tried:
python
import threading
import thread
Ctrl-D

If this works then it must be another problem.

If not then it could be a problem with BSD's python, try googling about
for this it may be a known problem.

Sorry that I can't be any more help.

Duncan


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users

  



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users