source: main/waeup.diazo/trunk/buildout.cfg @ 17843

Last change on this file since 17843 was 10881, checked in by uli, 11 years ago

Use latest twbs version (3.0.3) and reenable update cmd for npm (seems it is needed to rebuild after twbs upgrades).

File size: 1.1 KB
Line 
1[buildout]
2parts = 
3    lxml
4    diazo
5    nodejs
6    npm
7    bootstrap
8
9extends =
10    http://good-py.appspot.com/release/diazo/1.0
11    versions.cfg
12
13find-links =
14
15extensions =
16    mr.developer
17
18auto-checkout = bootstrap waeup.kofa
19
20develop =
21
22show-picked-versions = true
23update-versions-file = versions.cfg
24
25[sources]
26bootstrap = git https://github.com/twbs/bootstrap.git egg=false rev=v3.0.3
27waeup.kofa = svn https://svn.waeup.org/repos/main/waeup.kofa/trunk
28
29[lxml]
30recipe = z3c.recipe.staticlxml
31egg = lxml
32
33[diazo]
34recipe = zc.recipe.egg
35eggs =
36    diazo [wsgi]
37    PasteScript
38
39[nodejs]
40recipe = zc.recipe.cmmi
41url = http://nodejs.org/dist/v0.9.3/node-v0.9.3.tar.gz
42
43[npm]
44recipe = plone.recipe.command
45command =
46    cd ${buildout:directory}/src/bootstrap
47    ${buildout:parts-directory}/nodejs/bin/npm install -g grunt-cli
48    ${buildout:parts-directory}/nodejs/bin/npm install
49update-command =
50    ${npm:command}
51
52
53[bootstrap]
54recipe = plone.recipe.command
55command =
56    cd ${buildout:directory}/src/bootstrap && PATH=${buildout:parts-directory}/nodejs/bin/:$PATH && grunt dist && grunt test
57update-command =
58    ${bootstrap:command}
Note: See TracBrowser for help on using the repository browser.