version up : zc.buildout 1.6.0-dev-SlapOS-013.
[slapos.git] / software / os-commerce / software.cfg
1 [buildout]
2 versions = versions
3
4 parts =
5   template
6   apache-php
7   mariadb
8   eggs
9   instance-recipe-egg
10   downloadcache-workaround
11   
12 extends =
13   ../../stack/lamp.cfg 
14   ../../stack/shacache-client.cfg
15
16 [application]
17 recipe = slapos.recipe.build:download-unpacked
18 url = http://www.oscommerce.com/files/oscommerce-3.0.2.zip
19 md5sum = 680caf7dde7cf7772a576ef3930970ff
20 extract-directory = oscommerce
21   
22 [instance-recipe]
23 egg = slapos.cookbook
24 module = lamp.simple
25
26 [template]
27 # Default template for the instance.
28 recipe = slapos.recipe.template
29 url = ${:_profile_base_location_}/instance.cfg
30 #md5sum = Student shall put md5 of instance.cfg here
31 output = ${buildout:directory}/template.cfg
32 mode = 0644
33
34 [instance-recipe-egg]
35 recipe = zc.recipe.egg
36 eggs = ${instance-recipe:egg}
37
38 [versions]
39 # Use SlapOS patched zc.buildout
40
41 Jinja2 = 2.6
42 MySQL-python = 1.2.3
43 Werkzeug = 0.8.1
44 apache-libcloud = 0.5.2
45 buildout-versions = 1.7
46 hexagonit.recipe.cmmi = 1.5.0
47 meld3 = 0.6.7
48 plone.recipe.command = 1.1
49 slapos.cookbook = 0.34
50 slapos.recipe.build = 0.7
51 slapos.recipe.download = 1.0.dev-r4053
52 slapos.recipe.template = 2.2
53 slapos.toolbox = 0.10
54
55 # Required by:
56 # slapos.core==0.18
57 # slapos.toolbox==0.10
58 Flask = 0.8
59
60 # Required by:
61 # slapos.cookbook==0.34
62 PyXML = 0.8.4
63
64 # Required by:
65 # hexagonit.recipe.cmmi==1.5.0
66 hexagonit.recipe.download = 1.6nxd002
67
68 # Required by:
69 # slapos.cookbook==0.34
70 # slapos.core==0.18
71 # slapos.toolbox==0.10
72 # xml-marshaller==0.9.7
73 lxml = 2.3.1
74
75 # Required by:
76 # slapos.cookbook==0.34
77 netaddr = 0.7.6
78
79 # Required by:
80 # slapos.core==0.18
81 netifaces = 0.6
82
83 # Required by:
84 # slapos.toolbox==0.10
85 paramiko = 1.7.7.1
86
87 # Required by:
88 # slapos.toolbox==0.10
89 psutil = 0.3.0
90
91 # Required by:
92 # slapos.cookbook==0.34
93 # slapos.core==0.18
94 # slapos.toolbox==0.10
95 setuptools = 0.6c12dev-r88846
96
97 # Required by:
98 # slapos.cookbook==0.34
99 # slapos.toolbox==0.10
100 slapos.core = 0.18
101
102 # Required by:
103 # slapos.core==0.18
104 supervisor = 3.0a10
105
106 # Required by:
107 # slapos.cookbook==0.34
108 # slapos.toolbox==0.10
109 xml-marshaller = 0.9.7
110
111 # Required by:
112 # slapos.cookbook==0.34
113 zc.recipe.egg = 1.3.2
114
115 # Required by:
116 # slapos.core==0.18
117 zope.interface = 3.8.0
118
119 [downloadcache-workaround]
120 # workaround irritating problem of hexagonit.recipe.cmmi which automatically
121 # creates download cache, which in turn switches builout to "semi-offline" mode
122 recipe = plone.recipe.command
123 # in hexagonit.recipe.cmmi if there is no ${buildout:download-cache} set it resolves
124 # to ${buildout:directory}/downloads but this variable is available late, that's
125 # why it is hardcoded only for required case
126 download-cache = ${buildout:directory}/downloads
127 command = [ -d ${:download-cache} ] && rm -fr ${:download-cache}/* || exit 0
128 update-command = ${:command}
129 stop-on-error = True