maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Applications (https://talk.maemo.org/forumdisplay.php?f=41)
-   -   Python - BeautifulSoup ? (https://talk.maemo.org/showthread.php?t=42127)

RipTorn 2010-01-25 08:49

Python - BeautifulSoup ?
 
Hi Does anyone know if BeautifulSoup is being worked on for Maemo 5 (N900) at all?

Cheers
Rip

mattaustin 2010-01-25 09:11

Re: Python - BeautifulSoup ?
 
Beautiful soup is just one .py file - I have already used it in a project I am developing, but have no experience at packaging things. If I ever end up releasing my app I guess I could give it a go.

But if you are just looking to have a play, then you can just drop the file in to the same folder.

warpstalker 2010-01-25 09:15

Re: Python - BeautifulSoup ?
 
[offtopic-ish]
I want python-lxml. :p

Haven't checked what's required for it to work though.
[/offtopic]

RipTorn 2010-01-25 09:34

Re: Python - BeautifulSoup ?
 
so I can put it on the N900 and run the setup.py ?

or just the program I want to test needs to know where it is hiding?

blubbi 2010-01-25 09:49

Re: Python - BeautifulSoup ?
 
Quote:

Originally Posted by RipTorn (Post 493250)
so I can put it on the N900 and run the setup.py ?

or just the program I want to test needs to know where it is hiding?

If it really only one file, include this into the package of your project and just "import" it.

On the other hand side you could as well port the Debian package (http://packages.debian.org/sid/python-beautifulsoup) to Maemo as it would be a nice "to have" along with mechanize ;-)

I did this with python-clientform and python-mechanize. It was not that hard after some help from #python-devel.

You can look into my packages, or into other python-${module} packages to fin out how.

Most likely you only have to add pymaemo-optify to "Depends"
http://maemo.org/packages/view/python-mechanize/
http://maemo.org/packages/view/python-clientform/

Cheers
Bjoern

RipTorn 2010-01-25 10:28

Re: Python - BeautifulSoup ?
 
I'd love to I've barly got the grasp of making packages in debian with debhelper :p python just seems to confuse me even more.

Big Phat Jan 2010-01-25 10:45

Re: Python - BeautifulSoup ?
 
This is very simple to install from the developer's site. Just download the latest version 3.0 release, extract, cd into the extracted directory, and then:

Code:

python setup.py build
sudo gainroot
python setup.py install
exit

Working fine for me.

Cheers,
Jan

blubbi 2010-01-25 11:58

Re: Python - BeautifulSoup ?
 
Quote:

Originally Posted by Big Phat Jan (Post 493324)
This is very simple to install from the developer's site. Just download the latest version 3.0 release, extract, cd into the extracted directory, and then:

Code:

python setup.py build
sudo gainroot
python setup.py install
exit

Working fine for me.

Cheers,
Jan

Well this is suitable for DEVS, but no enduser will install it this way.

If you write software which depends on python-beautifulsoup, you'll have to build a package for all dependencies of you software.

Thought this is only on .py file you could just include it in your project. But I would encourage you to build a package! This way not everybody has to include this .py file but can make use of the package you kindly ported to Maemo ;-)

How to quickly port a python package:

Add the Debain repositories to you /etc/apt/sources.list
Code:

#Debian Stable
#deb ftp://ftp.de.debian.org/debian/ stable main contrib non-free
#deb-src ftp://ftp.de.debian.org/debian/ stable main contrib non-free

#Debian Testing
#deb ftp://ftp.de.debian.org/debian testing main contrib non-free
#deb-src ftp://ftp.de.debian.org/debian/ testing main contrib non-free

#Debian Unstable
#deb ftp://ftp.de.debian.org/debian unstable main contrib non-free
deb-src ftp://ftp.de.debian.org/debian/ unstable main contrib non-free

Update the repo:
Code:

apt-get update
Get the source:
Code:

apt-get source python-${package}
Alter the "Debian/control" file:
Code:

Source: python-${package}
Maintainer: You
XSBC-Original-Maintainer: Original Maintainer
Depends: (Add pymaemo-optify)
Section: user/development

Update the "Debian/changelog" file.

Check the Debian/rules file

Test the package:
Maemo 5 Developer Guide - Packaging Deploying and Distributing - Creating Debian Packages

If it fails check the "Debian/rules" file.

If it builds, upload it to the autobuilder:
Maemo Extras Assistant - Step 1

Thats not that hard, is it?

Cheers
Bjoern

Big Phat Jan 2010-01-25 12:11

Re: Python - BeautifulSoup ?
 
Quote:

Originally Posted by blubbi (Post 493437)
Thats not that hard, is it?

Cheers
Bjoern

Nope! Most things are easy when you know how though, thank you for the instructions. Of course it doesn't quite end there, as I'm sure you know.

I assumed that the original poster was a developer looking for quick confirmation that it would work before attempting the install. I don't think an end user will ever want to install BeautifulSoup on its own anyway...

Cheers,
Jan

blubbi 2010-01-25 12:21

Re: Python - BeautifulSoup ?
 
Quote:

Originally Posted by Big Phat Jan (Post 493465)
Nope! Most things are easy when you know how though, thank you for the instructions. Of course it doesn't quite end there, as I'm sure you know.

Go for it (I mean RipTorn in particular) ;)

Quote:

Originally Posted by Big Phat Jan (Post 493465)
I assumed that the original poster was a developer looking for quick confirmation that it would work before attempting the install. I don't think an end user will ever want to install BeautifulSoup on its own anyway...

Right! So lets rig up a package RipTorn ;-)

CU
Bjoern

RipTorn 2010-01-25 12:23

Re: Python - BeautifulSoup ?
 
well, not a developer, but I've been using linux for awhile :p and have been testing some python programs out from another site. :P

RipTorn 2010-01-25 12:51

Re: Python - BeautifulSoup ?
 
I can have a look in the morning hopefully :P and have a shot, can't hurt right?

RipTorn 2010-01-25 14:07

Re: Python - BeautifulSoup ?
 
1 Attachment(s)
ok packaged this up, it seems to work perfectly for me.

I couldn't get it to build with the pymaemo-optify package and I couldn't find it in the repository either.

That aside.

Heres the package, I dunno if I sould try to upload any of my packages to extras devel as they are all just me trying to teach myself some packaging :p


Also disclaimers apply, may break everything yadda yadda :p

EDIT: my extras repository in the SDK wasn't working, silly me. I'll upload one with pymaemo-optify as a dep shortly.

EDIT: Added pymaemo-optify as a dep

RipTorn 2010-01-25 14:11

Re: Python - BeautifulSoup ?
 
also another package I created for rtmp streams, was using these two programs together to download some programs so they are watchable on the N900

http://talk.maemo.org/showthread.php?p=493484

blubbi 2010-01-25 15:22

Re: Python - BeautifulSoup ?
 
nice done. Did it build with the autobuilder? Did you check for proper optification (just in case). Cheers Bjoern

blubbi 2010-01-25 15:25

Re: Python - BeautifulSoup ?
 
Just in case you missed it:
https://garage.maemo.org/pipermail/e...uldron-builds/

here you can see if you package was run by the autobuilder and check the results

Cheers
Bjoern

RipTorn 2010-01-25 15:27

Re: Python - BeautifulSoup ?
 
No I haven't yet applied to be able to upload packages into Maemo repositories

Cheers

blubbi 2010-01-25 17:03

Re: Python - BeautifulSoup ?
 
hehe, just pushing you, because I might need the package for my app www2sms in a future version :-) Thanks in advance for your afford ;-)


Cheers
Bjoern

RipTorn 2010-01-26 00:14

Re: Python - BeautifulSoup ?
 
no worries :P

just a bit daunting looking at all the auto-build stuff ;)

RipTorn 2010-01-26 04:31

Re: Python - BeautifulSoup ?
 
Ok tried putting it through the Auto-builder but it fails, not really sure why either, errors out when trying to run clean.

https://garage.maemo.org/builder/fre...log.FAILED.txt

blubbi 2010-01-26 09:08

Re: Python - BeautifulSoup ?
 
Quote:

Originally Posted by RipTorn (Post 494919)
Ok tried putting it through the Auto-builder but it fails, not really sure why either, errors out when trying to run clean.

https://garage.maemo.org/builder/fre...log.FAILED.txt

Well, here's the error msg:
Code:

rm BeautifulSoup.pyc BeautifulSoupTests.pyc
/scratchbox/tools/bin/rm: cannot remove `BeautifulSoup.pyc': No such file or directory
/scratchbox/tools/bin/rm: cannot remove `BeautifulSoupTests.pyc': No such file or directory
make: *** [clean] Error 1

So check the "rules" file in ${Path_to_your_package}/Debian/
and find out why the "rm" is placed there.

At least I would start to search there.

Cheers
Bjoern

RipTorn 2010-01-26 09:12

Re: Python - BeautifulSoup ?
 
Yeah I've looked at that, its in the clean part of the Make file.
It seems to run fine on my SDK, I could remove it and test it, but I don't really know if its required. I wouldn't of thought the clean script is needed when only 2 files are being copied across.

RipTorn 2010-01-28 10:36

Re: Python - BeautifulSoup ?
 
ok, worked part of it out, seems that when it goes through the autobuilder its not generating the compiled python files .pyc and this is why its erroring out. So I am guessing I'm not including something in the autobuilder that is on my SDK.

qwerty12 2010-01-28 10:47

Re: Python - BeautifulSoup ?
 
Make "rm" in your rules file "rm -f". This will ensure that rm does not exit with a status code that != 0, causing make to exit and your build to fail. Depending on when the "clean" target was invoked, those pyc files may exist.

blubbi 2010-01-28 10:55

Re: Python - BeautifulSoup ?
 
Python compiles the modules on runtime. So apparently there is no need to precompile the modules.

If you want you can precompile (Byte-compile) the modules, which will speed up their loading time, but IMHO this should be done by the installer (at least it is handled this way in Gentoo ebuilds).

But you should avoid placing stuff in the .dep file which happened to be created during testing (like the .pyc files, backup files from editor etc...)

Cheers
Bjoern

RipTorn 2010-01-29 02:53

Re: Python - BeautifulSoup ?
 
ok, I'll give these a shot later tonight and see how it turns out.

Just strange that my SDK is generating the .pyc and the auto-builder isn't.

I've changed a few commands in the make file to list the contents out so I can see this.

Cheers


All times are GMT. The time now is 11:58.

vBulletin® Version 3.8.8