Re: Unresolved dependecies for python.

2007-05-18 Thread Osvaldo Santana
Hi Jonathan,

On 5/18/07, Jonathan Greene [EMAIL PROTECTED] wrote:

[cut]

 application packages missing libbluetooth1 (=2.19)

This package is available at the Maemo SDK repository. Take a look at
the step 3 in the following tutorial:

http://pymaemo.garage.maemo.org/manual_installation.html

or download and install the base-repository.install available at:

http://pymaemo.garage.maemo.org/base-repository.install

Nobody needs to use the red pill mode to install Python.

Thanks,
Osvaldo

-- 
Osvaldo Santana Neto (aCiDBaSe)
http://www.pythonologia.org
___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


Re: [maemo-users] Howto reintroduce Python termios

2006-08-20 Thread Osvaldo Santana

Hi Michael,

We've removed termios.so file from Python for Maemo package to save
disk space on Nokia 770.

To add back this file to the package you want to recompile the package
from the source (changing the debian/rules file):

$ apt-get source python2.4
$ cd python*/debian
$ patch -p0  add_termios.patch
$ cd ..
$ dpkg-buildpackage -rfakeroot
$ ls ../*.deb # new packages!

After that, you can copy the termios.so file to your application
directory to make the deploy of your software.

BTW, are you planning to use PySerial inside Nokia 770? :)

Thanks,
Osvaldo

---8--

--- rules.orig  2006-08-21 02:07:52.0 -0300
+++ rules   2006-08-21 02:08:02.0 -0300
@@ -128,8 +128,7 @@
   $(d_base)/$(scriptdir)/lib-dynload/mmap.so \
   $(d_base)/$(scriptdir)/lib-dynload/readline.so \
   $(d_base)/$(scriptdir)/lib-dynload/ossaudiodev.so \
-   $(d_base)/$(scriptdir)/lib-dynload/syslog.so \
-   $(d_base)/$(scriptdir)/lib-dynload/termios.so
+   $(d_base)/$(scriptdir)/lib-dynload/syslog.so

   mkdir -p $(d_dev)/$(scriptdir)
   cp -a $(d_base)/$(scriptdir)/* $(d_dev)/$(scriptdir)

On 8/20/06, Michael Duergner [EMAIL PROTECTED] wrote:

Hi there,

I need Pyserial support on the Nokia 770 and I read that this could be done by 
reintroducing the termios module which has been removed. Could anyone give me a 
hint how to do this?

Thanks
Michael


--
Osvaldo Santana Neto (aCiDBaSe)
icq, url = (11287184, http://www.pythonbrasil.com.br;)
___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users