software.cfg 2.38 KB
Newer Older
1
[buildout]
2 3 4
slaposcookbook_recipe_location = ${:parts-directory}/slaposcookbook
develop =
  ${:slaposcookbook_recipe_location}
5

6 7 8
extensions =
  slapos.tool.networkcache
  slapos.zcbworkarounds
9
  slapos.rebootstrap
10

11
find-links +=
12 13 14
    http://www.nexedi.org/static/packages/source/slapos.buildout/

extends =
15
  ../../component/git/buildout.cfg
16
  ../../component/kumo/buildout.cfg
17
  ../../component/python-2.7/buildout.cfg
18 19 20 21
  ../../component/dcron/buildout.cfg
  ../../component/stunnel/buildout.cfg
  ../../component/python-2.7/buildout.cfg
  ../../component/rdiff-backup/buildout.cfg
22
  ../../component/lxml-python/buildout.cfg
23 24 25 26 27

versions = versions

parts +=
# Create instance template
28
#TODO : list here all parts.
29
  template
30
  eggs
31
  instance-recipe-egg
32 33 34 35 36 37

# XXX: Workaround of SlapOS limitation
# Unzippig of eggs is required, as SlapOS do not yet provide nicely working
# development / fast switching environment for whole software
unzip = true

38
[rebootstrap]
39
# Default first version of rebootstrapped python
40 41
version = 2
section = python2.7
42 43 44 45 46 47

[instance-recipe]
egg = slapos.cookbook
module = kumofs

[instance-recipe-egg]
48 49 50 51 52
# Just so buildout executes [slaposcookbook] before [eggs], as
# - [eggs] references [slaposcookbook]
# - [instance-recipe] needs [slaposcookbook] to be finished
# - we cannot rely on anything else being executed before [instance-recipe]
slaposcookbook_dummy = ${slaposcookbook:location}
53
recipe = zc.recipe.egg
54
python = python2.6
55 56
eggs = ${instance-recipe:egg}

57 58 59 60 61 62
[eggs]
recipe = zc.recipe.egg
python = python2.6
eggs =
  ${lxml-python:egg}

63
[template]
64 65
# Default template for the instance.
recipe = slapos.recipe.template
66
url = ${:_profile_base_location_}/instance.cfg
67
#md5sum = 1b29b27aedcc7fa5f30f1053e8eab13f
68 69 70
output = ${buildout:directory}/template.cfg
mode = 0644

71 72 73 74 75 76 77 78 79
[slaposcookbook]
recipe = plone.recipe.command
git_param =--quiet -b kumofs
git = ${git:location}/bin/git
location = ${buildout:parts-directory}/${:_buildout_section_name_}
stop-on-error = true
command = ${:git} clone ${:git_param} http://git.erp5.org/repos/slapos.git ${:location} || exit 1;
update-command = cd ${:location} && ${git:location}/bin/git pull --quiet

80 81 82
[versions]
# Required by:
# slapos.cookbook==0.1
83 84 85 86 87 88 89
#collective.recipe.template = 1.8
#slapos.slap = 1.2.dev-r4679
#netaddr = 0.7.5
#xml-marshaller = 0.9.7

#zc.buildout=1.5.3-dev-SlapOS-002
#setuptools = 0.6c12dev-r88795
90

91 92
# Use SlapOS patched zc.buildout
zc.buildout = 1.5.3-dev-SlapOS-001