forked from nueces/buildout.ejemplo.tarde
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
45 lines (37 loc) · 780 Bytes
/
buildout.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[buildout]
extends =
base.cfg
versions.cfg
parts =
zopeskel
message
message2
chmod
script
versions = versions
[loteria]
premio = 10 BsF
firma += Desiree Lopez
[zopeskel]
recipe = zc.recipe.egg:scripts
eggs = ${config:eggs}
interpreter = ${config:nombre}
extra-paths = ${buildout:directory}/src
[message]
recipe = collective.recipe.template
ganador = ${config:nombre}
input = templates/message.in
output = ${buildout:directory}/etc/${:_buildout_section_name_}
[message2]
<= message
ganador = Jashet
[script]
recipe = collective.recipe.template
input = inline:
#!/bin/bash
echo "Hola mundo!"
output = ${buildout:bin-directory}/hellow2
[chmod]
recipe = plone.recipe.command
command = chmod +x ${script:output}
update-command = ${:command}