[buildout] versions = versions parts = template apache-php mariadb eggs instance-recipe-egg downloadcache-workaround mediawiki-patch patch extends = ../../stack/lamp.cfg ../../stack/shacache-client.cfg [mediawiki-patch] recipe = slapos.recipe.download url = ${:_profile_base_location_}/patch/mediawiki-1.17.0.config.patch #md5sum = Student may put here md5sum of this file, this is good idea download-only = True location = ${buildout:parts-directory}/${:_buildout_section_name_} filename = mediawiki-1.17.0.config.patch [application] recipe = hexagonit.recipe.download url = http://download.wikimedia.org/mediawiki/1.17/mediawiki-1.17.0.tar.gz md5sum = 871a00a8eb6dcae1b7b654ae635af7cd #If provided tarball does not contain top directory, option shall be changed to false #strip-top-level-dir = true [patch] recipe = iw.recipe.cmd on_install = true on_update = true cmds= patch -d ${application:location} -p1 < ${mediawiki-patch:location}/${mediawiki-patch:filename} [application-template] recipe = slapos.recipe.download url = ${:_profile_base_location_}/template/mediawiki.inc.php.in #md5sum = Student may put here md5sum of this file, this is good idea download-only = True filename = template.in mode = 0644 location = ${buildout:parts-directory}/${:_buildout_section_name_} [application-configuration] location = config.inc.php [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 python = python2.7 eggs = ${instance-recipe:egg} [versions] # Use SlapOS patched zc.buildout zc.buildout = 1.5.3-dev-SlapOS-010 [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