Re: Freezing a Pylons app

2008-10-14 Thread Christopher Barker
Ian Bicking wrote: I'm trying to bundle up a pylons based app with py2app on OS-X. I've run into a problem with Paste. The issue is that paste (and paste.deploy, and paste.script) is set up as a setuptools namespace package. Another strategy might be to use pyinstall, which will install

Re: Freezing a Pylons app

2008-10-11 Thread Ian Bicking
Christopher Barker wrote: Mike Orr wrote: We're testing it right now. I'm cc'ing my colleague who's involved more directly with it. That would be me. I'm trying to bundle up a pylons based app with py2app on OS-X. I've run into a problem with Paste. The issue is that paste (and

Re: Freezing a Pylons app

2008-10-10 Thread Wichert Akkerman
Previously Christopher Barker wrote: So, is there a way to turn off the use of pkg_resources in paste? No, paste relies on it to handle entry points in various places. That is a very popular pattern that more and more things are starting to use. Wichert. -- Wichert Akkerman [EMAIL PROTECTED]

Re: Freezing a Pylons app

2008-10-10 Thread Christopher Barker
Wichert Akkerman wrote: Previously Christopher Barker wrote: So, is there a way to turn off the use of pkg_resources in paste? No, paste relies on it to handle entry points in various places. Darn. That is a very popular pattern that more and more things are starting to use. Well, I can

Re: Freezing a Pylons app

2008-10-10 Thread Mike Orr
On Thu, Oct 9, 2008 at 11:23 PM, Wichert Akkerman [EMAIL PROTECTED] wrote: Previously Christopher Barker wrote: So, is there a way to turn off the use of pkg_resources in paste? No, paste relies on it to handle entry points in various places. That is a very popular pattern that more and

Re: Freezing a Pylons app

2008-10-10 Thread Wichert Akkerman
Previously Mike Orr wrote: On Thu, Oct 9, 2008 at 11:23 PM, Wichert Akkerman [EMAIL PROTECTED] wrote: Previously Christopher Barker wrote: So, is there a way to turn off the use of pkg_resources in paste? No, paste relies on it to handle entry points in various places. That is a

Re: Freezing a Pylons app

2008-10-10 Thread Mike Orr
On Fri, Oct 10, 2008 at 2:14 PM, Wichert Akkerman [EMAIL PROTECTED] wrote: What exactly are 'the setuptools problems'? Entry points and namespaces are very practical and I wouldn't want to loose them. All the installation and index-handling logic in setuptools is probably best replaced.

Re: Freezing a Pylons app

2008-10-10 Thread Mike Orr
Here's the code to run a Pylons app without using entry points or Setuptools. It works from the command line, so now we're going to test it with py2app and the GUI (wxPython). === Run the standalone on the console similar to paster serve. This version imports the server and application rather

Re: Freezing a Pylons app

2008-10-09 Thread Christopher Barker
Mike Orr wrote: We're testing it right now. I'm cc'ing my colleague who's involved more directly with it. That would be me. I'm trying to bundle up a pylons based app with py2app on OS-X. I've run into a problem with Paste. The issue is that paste (and paste.deploy, and paste.script) is set

Re: Freezing a Pylons app

2008-10-09 Thread Jose Galvez
I just has some positive results using bbfreeze freezing a pylons app on windows and linux. I had to write my own launcher which called paste.script to serve it, but so far its working great. I'm also experimenting with the dev tip of bbfreeze on mac some success Jose [EMAIL PROTECTED

Re: Freezing a Pylons app

2008-09-25 Thread Mike Orr
On Thu, Sep 25, 2008 at 1:31 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: hey mike any success with this? Not yet. I'm not the main person working on it. I understand some of your reply and it looks promising. Will the frozen app to run on linux and solaris? Not the frozen app which is