Re: [Repoze-dev] bfg vs buildout

2009-06-25 Thread Chris Withers
Shane Hathaway wrote: I'm not very familiar with pip, but I don't think that's an issue for Buildout. Buildout also has the ability to pin the version of all packages, but I don't think that's what Jens and I want in this case. yep, the only thing buildout is missing is a command to dump

Re: [Repoze-dev] bfg vs buildout

2009-06-25 Thread Chris McDonough
On 6/25/09 3:38 AM, Chris Withers wrote: Shane Hathaway wrote: I'm not very familiar with pip, but I don't think that's an issue for Buildout. Buildout also has the ability to pin the version of all packages, but I don't think that's what Jens and I want in this case. yep, the only thing

Re: [Repoze-dev] bfg vs buildout

2009-06-24 Thread Jens W. Klein
Am Wed, 24 Jun 2009 10:54:33 +0100 schrieb Chris Withers: Hey All, Just been reading http://docs.repoze.org/bfg/narr/install.html and I notice a conspicuous absence of zc.buildout... Do you guys recommend not using buildout? If not, are there docs anywhere for using BFG in a buildout

Re: [Repoze-dev] bfg vs buildout

2009-06-24 Thread Chris Withers
Jens W. Klein wrote: - [buildout] extensions = buildout.dumppickedversions parts = instance eggs-directory = ${buildout:directory}/eggs find-links = http://dist.repoze.org/bfg/1.0/ [instance] recipe = repoze.recipe.egg:scripts eggs = repoze.bfg

Re: [Repoze-dev] bfg vs buildout

2009-06-24 Thread Chris Rossi
On Wed, Jun 24, 2009 at 9:16 AM, Chris Withers ch...@simplistix.co.ukwrote: Also, how do you wire running tests, particularly running them with nose, into this? bin/nosetests path/to/src Chris ___ Repoze-dev mailing list

Re: [Repoze-dev] bfg vs buildout

2009-06-24 Thread Chris Withers
Chris Rossi wrote: On Wed, Jun 24, 2009 at 9:16 AM, Chris Withers ch...@simplistix.co.uk mailto:ch...@simplistix.co.uk wrote: Also, how do you wire running tests, particularly running them with nose, into this? bin/nosetests path/to/src ...having added nosetests as a dependent

Re: [Repoze-dev] bfg vs buildout

2009-06-24 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Jens W. Klein wrote: Am Wed, 24 Jun 2009 10:54:33 +0100 schrieb Chris Withers: Hey All, Just been reading http://docs.repoze.org/bfg/narr/install.html and I notice a conspicuous absence of zc.buildout... Do you guys recommend not using

Re: [Repoze-dev] bfg vs buildout

2009-06-24 Thread Chris Withers
Chris Rossi wrote: (karl3)ch...@opportunity:~/proj/karl3/src/karl$ cat test ../../bin/nosetests $* So, we just do: $ cd src/karl $ ./test Hackish, but I guess functional. Sadly not cross platform. I wonder if a little buildout recipe is in order? I see:

Re: [Repoze-dev] bfg vs buildout

2009-06-24 Thread Shane Hathaway
Jens W. Klein wrote: Am Wed, 24 Jun 2009 09:59:14 -0400 schrieb Tres Seaver: [..] Missing is a version fixation like done in ZTK, Grok, Plone, ... I'd really like to see such a version.cfg for each repoze release. Creation could be automated. You shouldn't need to pin the versions if you would

Re: [Repoze-dev] bfg vs buildout

2009-06-24 Thread Shane Hathaway
z...@kevinkal.com wrote: I've become a big fan of pip. The --freeze option is great. It seems that it lets you pin your versions all the way down. I'm just watching all of the pain with certain buildout recipes where I could imagine them easier to create if the person creating the

Re: [Repoze-dev] bfg vs buildout

2009-06-24 Thread zope
Hi Shane, z...@kevinkal.com wrote: I've become a big fan of pip. The --freeze option is great. It seems that it lets you pin your versions all the way down. I'm just watching all of the pain with certain buildout recipes where I could imagine them easier to create if the person