[buildout] versions = versions parts = template apache-php mariadb eggs instance-recipe-egg downloadcache-workaround extends = ../../stack/lamp.cfg ../../stack/shacache-client.cfg [application] recipe = slapos.recipe.build url = http://downloads.sourceforge.net/project/phprojekt/PHProjekt%206.0/6.0.6/phprojekt-6.0.6.zip?r=http%3A%2F%2Fwww.google.fr%2Furl%3Fsa%3Dt%26rct%3Dj%26q%3Ddownload%2520phprojekt%26source%3Dweb%26cd%3D4%26ved%3D0CD4QFjAD%26url%3Dhttp%253A%252F%252Fsourceforge.net%252Fprojects%252Fphprojekt%252Ffiles%252Flatest%252Fdownload%26ei%3DeWuyToW3HMWEOqubkYQC%26usg%3DAFQjCNG0ZO1Bp-VS5t4X2pI9QKAmlovXpg&ts=1320315780&use_mirror=freefr md5sum = d139b3d9b791a39460e9a780dece7779 script = if not self.options.get('url'): self.options['url'], self.options['md5sum'] = self.options[guessPlatform()].split(' ') extract_dir = self.extract(self.download(self.options['url'], self.options.get('md5sum'))) workdir = guessworkdir(extract_dir) self.copyTree(workdir, "${buildout:parts-directory}/${:_buildout_section_name_}") [instance-recipe] egg = slapos.cookbook module = lamp.simple [template] # Default template for the instance. recipe = slapos.recipe.template url = ${:_profile_base_location_}/instance.cfg #md5sum = Student shall put md5 of instance.cfg here output = ${buildout:directory}/template.cfg mode = 0644 [instance-recipe-egg] recipe = zc.recipe.egg eggs = ${instance-recipe:egg} [versions] # Use SlapOS patched zc.buildout [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