Re: More on the necessity and difficulty of a package management system

2011-02-08 Thread Christopher Nicholson-Sauls
On 01/26/11 16:45, Andrei Alexandrescu wrote: > Seems to be unduly difficult in Python: > > http://www.google.com/buzz/michael.bruntonspall/AcMtiMEUgZ2/Packaging-and-deploying-python-web-apps > > > We need to have a good solution for D. > > > Andrei This seems related to a project I've been p

Re: More on the necessity and difficulty of a package management system

2011-02-04 Thread Bruno Medeiros
On 26/01/2011 22:45, Andrei Alexandrescu wrote: Seems to be unduly difficult in Python: http://www.google.com/buzz/michael.bruntonspall/AcMtiMEUgZ2/Packaging-and-deploying-python-web-apps We need to have a good solution for D. Andrei I'm not really familiar with Python so I didn't underst

Re: More on the necessity and difficulty of a package management system

2011-01-27 Thread Jacob Carlborg
On 2011-01-27 00:06, Adam D. Ruppe wrote: D's deployment is helped a lot by being compiled. We could just use native package systems (deb, rpm; whatever works for C works for D too) and/or static linking to ease the case of pushing something to a live server with zero* outside dependencies. Tha

Re: More on the necessity and difficulty of a package management system

2011-01-26 Thread spir
On 01/26/2011 11:45 PM, Andrei Alexandrescu wrote: Seems to be unduly difficult in Python: http://www.google.com/buzz/michael.bruntonspall/AcMtiMEUgZ2/Packaging-and-deploying-python-web-apps Yes, experienced. Related, but distinct, difficulty with intra-package import (inter-module references

Re: More on the necessity and difficulty of a package management system

2011-01-26 Thread Adam D. Ruppe
D's deployment is helped a lot by being compiled. We could just use native package systems (deb, rpm; whatever works for C works for D too) and/or static linking to ease the case of pushing something to a live server with zero* outside dependencies. * Well, one: libc I guess. But that's pretty eas

Re: More on the necessity and difficulty of a package management system

2011-01-26 Thread Robert Clipsham
On 26/01/11 22:45, Andrei Alexandrescu wrote: Seems to be unduly difficult in Python: http://www.google.com/buzz/michael.bruntonspall/AcMtiMEUgZ2/Packaging-and-deploying-python-web-apps We need to have a good solution for D. Andrei It's on my todo list for Serenity, which is almost able to

More on the necessity and difficulty of a package management system

2011-01-26 Thread Andrei Alexandrescu
Seems to be unduly difficult in Python: http://www.google.com/buzz/michael.bruntonspall/AcMtiMEUgZ2/Packaging-and-deploying-python-web-apps We need to have a good solution for D. Andrei