Re: Deplyoing Pylons applications as Debian packages?

2007-03-05 Thread Christoph Haas
Piotr, On Monday 05 March 2007 21:49, Piotr Ozarowski wrote: > Piotr Ozarowski wrote: > > # creating new Pylons app. > > $ paster create --template=pylons helloworld > > > > # creating Egg (f.e. for Windows users) > > $ python setup.py bdist_egg # will create an Egg in dist dir > > > > # creating

Re: Deplyoing Pylons applications as Debian packages?

2007-03-05 Thread Piotr Ozarowski
Piotr Ozarowski wrote: > # creating new Pylons app. > $ paster create --template=pylons helloworld > > # creating Egg (f.e. for Windows users) > $ python setup.py bdist_egg # will create an Egg in dist dir > > # creating debian package > $ zcat ../helloworld_0.0.0dev-1.diff.gz | patch -p1 # see at

Re: Deploying/packaging Pylons projects

2007-03-05 Thread Mark Eichin
Mikhail Gusarov <[EMAIL PROTECTED]> writes: > Twas brillig at 16:42:42 05.03.2007 UTC+01 when Christoph Haas did gyre and > gimble: > > CH> I already thought about some magical "egg-buildpackage" script > CH> that creates a proper Debian package from an egg so it can be > CH> deployed the Debi

Re: Deploying/packaging Pylons projects

2007-03-05 Thread Piotr Ozarowski
# creating new Pylons app. $ paster create --template=pylons helloworld # creating Egg (f.e. for Windows users) $ python setup.py bdist_egg # will create an Egg in dist dir # creating debian package $ zcat ../helloworld_0.0.0dev-1.diff.gz | patch -p1 # see attachment $ debuild -- -=[ Piotr

Re: Deploying/packaging Pylons projects

2007-03-05 Thread Mikhail Gusarov
Twas brillig at 16:42:42 05.03.2007 UTC+01 when Christoph Haas did gyre and gimble: CH> I already thought about some magical "egg-buildpackage" script CH> that creates a proper Debian package from an egg so it can be CH> deployed the Debian way. Yep, that's the only reliable solution, but no

Deploying/packaging Pylons projects

2007-03-05 Thread Christoph Haas
Dear list... I'm currently trying to write a web application using the "Pylons" (http://pylonshq.com) web framework. It's very different from the Apache/cgi-bin/Perl approach I've been using for the last 10-15 years. Pylons uses the Paste (http://pythonpaste.org) component as a web server and