Re: [Distutils] development egg and --find-links easy_install option

2010-05-22 Thread P.J. Eby
At 12:41 AM 5/23/2010 +0200, Manlio Perillo wrote: P.J. Eby ha scritto: > At 10:39 PM 5/22/2010 +0200, Manlio Perillo wrote: >> The trivial solution is of course to not use "develop" command, and to >> build a normal egg. > > Right. The slightly-less-trivial version is to make sure your source is

Re: [Distutils] Script for easy access to the coverage report on distutils2

2010-05-22 Thread Yannick Gingras
> Is there anyone one against adding a --with coverage option to > `runtests.py`? Please see the proof of concept patch in attachment. -- Yannick Gingras http://ygingras.net http://montrealpython.org -- lead organizer # HG changeset patch # Parent fa62924e8f37e9dfca5bcdede499e4389744059f added o

[Distutils] Script for easy access to the coverage report on distutils2

2010-05-22 Thread Yannick Gingras
Greetings Packagers, as part of our sprinting effort at Montréal-Python, we found it relevant to give an easy access to the test coverage reports to sprinters because it really helps them to see what needs more testing and when kind of breakage then can expect the tests to catch. I tried to us

Re: [Distutils] development egg and --find-links easy_install option

2010-05-22 Thread Manlio Perillo
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 P.J. Eby ha scritto: > At 10:39 PM 5/22/2010 +0200, Manlio Perillo wrote: >> The trivial solution is of course to not use "develop" command, and to >> build a normal egg. > > Right. The slightly-less-trivial version is to make sure your source is > in

Re: [Distutils] development egg and --find-links easy_install option

2010-05-22 Thread P.J. Eby
At 10:39 PM 5/22/2010 +0200, Manlio Perillo wrote: The trivial solution is of course to not use "develop" command, and to build a normal egg. Right. The slightly-less-trivial version is to make sure your source is in subversion, and add svn: links to your --find-links. If `-maxd` will make

Re: [Distutils] development egg and --find-links easy_install option

2010-05-22 Thread Manlio Perillo
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 P.J. Eby ha scritto: > At 05:55 PM 5/22/2010 +0200, Manlio Perillo wrote: >> What is the reason why a development egg is being skipped? > > Because it can't be copied (currently), And I usually don't need it to be copied, since on the production serv

Re: [Distutils] development egg and --find-links easy_install option

2010-05-22 Thread P.J. Eby
At 05:55 PM 5/22/2010 +0200, Manlio Perillo wrote: What is the reason why a development egg is being skipped? Because it can't be copied (currently), and the -a flag in your -maxd means "--always-copy" -- that is, copy the egg, even if it's on sys.path. What I want is that in `deps` directo

[Distutils] development egg and --find-links easy_install option

2010-05-22 Thread Manlio Perillo
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi. Reading easy_install documentation I recently discovered the - --find-links option, and I'm starting to experiment with it in order to create a tar archive with all the dependencies of a Python package. This is very useful when I have to deploy a