software.cfg 3.09 KB
Newer Older
1
[buildout]
2 3
versions = versions

4 5 6 7 8
parts =
  template
  apache-php
  mariadb
  eggs
9
  instance-recipe-egg
10
  
11
extends =
12
  ../../stack/lamp.cfg
13
  ../../stack/shacache-client.cfg
14
  
15
[template]
Cédric de Saint Martin's avatar
Cédric de Saint Martin committed
16
# Default template for the instance.
17
recipe = slapos.recipe.template
Cédric de Saint Martin's avatar
Cédric de Saint Martin committed
18
url = ${:_profile_base_location_}/instance.cfg
19
md5sum = efdb8509f40c86b1b73924fc1ce92f13
20 21 22 23
output = ${buildout:directory}/template.cfg
mode = 0644

[application]
24
recipe = slapos.recipe.build:download-unpacked
25
url = http://downloads.sourceforge.net/project/phpmyadmin/phpMyAdmin/3.3.10/phpMyAdmin-3.3.10-all-languages.tar.bz2?r=http%3A%2F%2Fwww.phpmyadmin.net%2Fhome_page%2Fdownloads.php&ts=1300959842&use_mirror=sunet
26
md5sum = cb7a632fb4f10a180ead15f7f90087f1
27 28

[application-template]
29
recipe = slapos.recipe.download
30
url = ${:_profile_base_location_}/phpmyadmin.inc.php.in
31
md5sum = caab45c34c75661c214f4628ff545bb4
32
filename = template.in
33
mode = 0644
34
location = ${buildout:parts-directory}/${:_buildout_section_name_}
35 36

[application-configuration]
37 38
location = config.inc.php

39 40
[instance-recipe]
egg = slapos.cookbook
41
module = lamp.simple
42

43

44 45 46
[instance-recipe-egg]
recipe = zc.recipe.egg
eggs = ${instance-recipe:egg}
47

48 49
[versions]
# Use SlapOS patched zc.buildout
50 51
zc.buildout = 1.5.3-dev-SlapOS-010

52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
Jinja2 = 2.6
MySQL-python = 1.2.3
Werkzeug = 0.8.1
apache-libcloud = 0.5.2
buildout-versions = 1.7
hexagonit.recipe.cmmi = 1.5.0
meld3 = 0.6.7
plone.recipe.command = 1.1
slapos.cookbook = 0.34
slapos.recipe.build = 0.7
slapos.recipe.download = 1.0.dev-r4053
slapos.recipe.template = 2.2
slapos.toolbox = 0.10

# Required by:
# slapos.core==0.18
# slapos.toolbox==0.10
Flask = 0.8

# Required by:
# slapos.cookbook==0.34
PyXML = 0.8.4

# Required by:
# hexagonit.recipe.cmmi==1.5.0
hexagonit.recipe.download = 1.5.0

# Required by:
# slapos.cookbook==0.34
# slapos.core==0.18
# slapos.toolbox==0.10
# xml-marshaller==0.9.7
lxml = 2.3.1

# Required by:
# slapos.cookbook==0.34
netaddr = 0.7.6

# Required by:
# slapos.core==0.18
netifaces = 0.5

# Required by:
# slapos.toolbox==0.10
paramiko = 1.7.7.1

# Required by:
# slapos.toolbox==0.10
psutil = 0.3.0

# Required by:
# slapos.cookbook==0.34
# slapos.core==0.18
# slapos.toolbox==0.10
setuptools = 0.6c12dev-r88846

# Required by:
# slapos.cookbook==0.34
# slapos.toolbox==0.10
slapos.core = 0.18

# Required by:
# slapos.core==0.18
supervisor = 3.0a10

# Required by:
# slapos.cookbook==0.34
# slapos.toolbox==0.10
xml-marshaller = 0.9.7

# Required by:
# slapos.cookbook==0.34
zc.recipe.egg = 1.3.2

# Required by:
# slapos.core==0.18
zope.interface = 3.8.0

130 131 132 133 134 135 136 137 138 139 140
[downloadcache-workaround]
# workaround irritating problem of hexagonit.recipe.cmmi which automatically
# creates download cache, which in turn switches builout to "semi-offline" mode
recipe = plone.recipe.command
# in hexagonit.recipe.cmmi if there is no ${buildout:download-cache} set it resolves
# to ${buildout:directory}/downloads but this variable is available late, that's
# why it is hardcoded only for required case
download-cache = ${buildout:directory}/downloads
command = [ -d ${:download-cache} ] && rm -fr ${:download-cache}/* || exit 0
update-command = ${:command}
stop-on-error = True