Factor out dev setup to dev.cfg.
This commit is contained in:
parent
4b25ccca48
commit
508eb44199
69
buildout.cfg
69
buildout.cfg
@ -1,77 +1,10 @@
|
|||||||
[buildout]
|
[buildout]
|
||||||
extends =
|
extends =
|
||||||
http://svn.plone.org/svn/collective/buildout/plonetest/plone-4.1.x.cfg
|
http://svn.plone.org/svn/collective/buildout/plonetest/plone-4.1.x.cfg
|
||||||
extensions = buildout.eggtractor mr.developer
|
|
||||||
tractor-src-directory =
|
|
||||||
.
|
|
||||||
src
|
|
||||||
auto-checkout =
|
|
||||||
collective.autoresizetextarea
|
|
||||||
collective.akismet
|
|
||||||
collective.z3cform.norobots
|
|
||||||
plone.formwidget.captcha
|
|
||||||
plone.formwidget.recaptcha
|
|
||||||
package-name = plone.app.discussion
|
package-name = plone.app.discussion
|
||||||
package-directory = plone/app/discussion
|
package-directory = plone/app/discussion
|
||||||
|
|
||||||
parts +=
|
|
||||||
omelette
|
|
||||||
test
|
|
||||||
releaser
|
|
||||||
zopepy
|
|
||||||
sphinxbuilder
|
|
||||||
sphinxupload
|
|
||||||
|
|
||||||
#develop = .
|
|
||||||
versions = versions
|
versions = versions
|
||||||
|
|
||||||
[versions]
|
[versions]
|
||||||
plone.app.discussion = 2.1.1dev
|
plone.app.discussion = 2.1.1dev
|
||||||
|
|
||||||
[instance]
|
|
||||||
eggs +=
|
|
||||||
Products.PdbDebugMode
|
|
||||||
Products.PrintingMailHost
|
|
||||||
roman
|
|
||||||
Sphinx
|
|
||||||
Sphinx-PyPI-upload
|
|
||||||
repoze.sphinx.autointerface
|
|
||||||
|
|
||||||
[omelette]
|
|
||||||
recipe = collective.recipe.omelette
|
|
||||||
eggs = ${instance:eggs}
|
|
||||||
packages = ${instance:location}/lib/python ./
|
|
||||||
|
|
||||||
[test]
|
|
||||||
recipe = collective.xmltestreport
|
|
||||||
eggs = ${buildout:package-name} [test]
|
|
||||||
defaults = ['--auto-color', '--auto-progress']
|
|
||||||
|
|
||||||
[releaser]
|
|
||||||
recipe = zc.recipe.egg
|
|
||||||
eggs = jarn.mkrelease
|
|
||||||
|
|
||||||
[zopepy]
|
|
||||||
recipe = zc.recipe.egg
|
|
||||||
eggs = ${instance:eggs}
|
|
||||||
interpreter = zopepy
|
|
||||||
scripts = zopepy
|
|
||||||
|
|
||||||
[sphinxbuilder]
|
|
||||||
recipe = collective.recipe.sphinxbuilder
|
|
||||||
interpreter = ${buildout:directory}/bin/zopepy
|
|
||||||
|
|
||||||
[sphinxupload]
|
|
||||||
recipe = collective.recipe.template
|
|
||||||
input = inline:
|
|
||||||
#!/bin/sh
|
|
||||||
bin/zopepy setup.py upload_sphinx
|
|
||||||
output = ${buildout:directory}/bin/sphinxupload
|
|
||||||
mode = 755
|
|
||||||
|
|
||||||
[sources]
|
|
||||||
collective.akismet = svn https://svn.plone.org/svn/collective/collective.autoresizetextarea/trunk
|
|
||||||
collective.autoresizetextarea = svn https://svn.plone.org/svn/collective/collective.autoresizetextarea/trunk
|
|
||||||
collective.z3cform.norobots = svn https://svn.plone.org/svn/collective/collective.z3cform.norobots/trunk
|
|
||||||
plone.formwidget.captcha = svn https://svn.plone.org/svn/plone/plone.formwidget.captcha/trunk/
|
|
||||||
plone.formwidget.recaptcha = svn https://svn.plone.org/svn/plone/plone.formwidget.recaptcha/trunk/
|
|
75
dev.cfg
Normal file
75
dev.cfg
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
[buildout]
|
||||||
|
extends =
|
||||||
|
buildout.cfg
|
||||||
|
extensions = buildout.eggtractor mr.developer
|
||||||
|
tractor-src-directory =
|
||||||
|
.
|
||||||
|
src
|
||||||
|
auto-checkout =
|
||||||
|
collective.autoresizetextarea
|
||||||
|
collective.akismet
|
||||||
|
collective.z3cform.norobots
|
||||||
|
plone.formwidget.captcha
|
||||||
|
plone.formwidget.recaptcha
|
||||||
|
|
||||||
|
parts +=
|
||||||
|
omelette
|
||||||
|
test
|
||||||
|
releaser
|
||||||
|
zopepy
|
||||||
|
sphinxbuilder
|
||||||
|
sphinxupload
|
||||||
|
|
||||||
|
#develop = .
|
||||||
|
versions = versions
|
||||||
|
|
||||||
|
[versions]
|
||||||
|
plone.app.discussion = 2.1.1dev
|
||||||
|
|
||||||
|
[instance]
|
||||||
|
eggs +=
|
||||||
|
Products.PdbDebugMode
|
||||||
|
Products.PrintingMailHost
|
||||||
|
roman
|
||||||
|
Sphinx
|
||||||
|
Sphinx-PyPI-upload
|
||||||
|
repoze.sphinx.autointerface
|
||||||
|
|
||||||
|
[omelette]
|
||||||
|
recipe = collective.recipe.omelette
|
||||||
|
eggs = ${instance:eggs}
|
||||||
|
packages = ${instance:location}/lib/python ./
|
||||||
|
|
||||||
|
[test]
|
||||||
|
recipe = zc.recipe.testrunner
|
||||||
|
eggs = ${test:eggs}
|
||||||
|
defaults = ['--auto-color', '--auto-progress']
|
||||||
|
|
||||||
|
[releaser]
|
||||||
|
recipe = zc.recipe.egg
|
||||||
|
eggs = jarn.mkrelease
|
||||||
|
|
||||||
|
[zopepy]
|
||||||
|
recipe = zc.recipe.egg
|
||||||
|
eggs = ${instance:eggs}
|
||||||
|
interpreter = zopepy
|
||||||
|
scripts = zopepy
|
||||||
|
|
||||||
|
[sphinxbuilder]
|
||||||
|
recipe = collective.recipe.sphinxbuilder
|
||||||
|
interpreter = ${buildout:directory}/bin/zopepy
|
||||||
|
|
||||||
|
[sphinxupload]
|
||||||
|
recipe = collective.recipe.template
|
||||||
|
input = inline:
|
||||||
|
#!/bin/sh
|
||||||
|
bin/zopepy setup.py upload_sphinx
|
||||||
|
output = ${buildout:directory}/bin/sphinxupload
|
||||||
|
mode = 755
|
||||||
|
|
||||||
|
[sources]
|
||||||
|
collective.akismet = svn https://svn.plone.org/svn/collective/collective.autoresizetextarea/trunk
|
||||||
|
collective.autoresizetextarea = svn https://svn.plone.org/svn/collective/collective.autoresizetextarea/trunk
|
||||||
|
collective.z3cform.norobots = svn https://svn.plone.org/svn/collective/collective.z3cform.norobots/trunk
|
||||||
|
plone.formwidget.captcha = svn https://svn.plone.org/svn/plone/plone.formwidget.captcha/trunk/
|
||||||
|
plone.formwidget.recaptcha = svn https://svn.plone.org/svn/plone/plone.formwidget.recaptcha/trunk/
|
Loading…
Reference in New Issue
Block a user