Commit b65fefc7 authored by Romain Courteaud's avatar Romain Courteaud

Reduce diff with upstream for cookbook development

parent 3d134565
...@@ -27,8 +27,12 @@ unzip = true ...@@ -27,8 +27,12 @@ unzip = true
recipe = plone.recipe.command recipe = plone.recipe.command
stop-on-error = true stop-on-error = true
location = ${buildout:parts-directory}/${:_buildout_section_name_} location = ${buildout:parts-directory}/${:_buildout_section_name_}
command = ${git:location}/bin/git clone --branch erp5-generic --quiet http://git.erp5.org/repos/slapos.git ${:location} repository = https://saneftestbot:kucahS5oav6jahch@git.erp5.org/repos/slapos/sanef.git
update-command = cd ${:location} && ${git:location}/bin/git pull --quiet branch = CR1094
# Note: GIT_SSL_NO_VERIFY is used as SlapOS OpenSSL configuration does not
# contain master certificates to verify.
command = (GIT_SSL_NO_VERIFY=1 ${git:location}/bin/git clone --quiet -b ${:branch} ${:repository} ${:location}) || (rm -fr ${:location} && exit 1)
update-command =
[check-recipe] [check-recipe]
recipe = plone.recipe.command recipe = plone.recipe.command
......
[buildout] [buildout]
develop = develop =
${:parts-directory}/bef_erp5-recipe
${:parts-directory}/z2loganalyser ${:parts-directory}/z2loganalyser
extends = extends =
...@@ -24,7 +23,6 @@ parts += ...@@ -24,7 +23,6 @@ parts +=
# - [instance-recipe] needs [bef_erp5-recipe] to be finished # - [instance-recipe] needs [bef_erp5-recipe] to be finished
# - we cannot rely on anything else being executed before [eggs] # - we cannot rely on anything else being executed before [eggs]
bef_dummy = bef_dummy =
${bef_erp5-recipe:location}
${z2loganalyser:location} ${z2loganalyser:location}
# XXX: Workaround for hack; # XXX: Workaround for hack;
...@@ -48,10 +46,6 @@ stop-on-error = true ...@@ -48,10 +46,6 @@ stop-on-error = true
update-command = ${:command} update-command = ${:command}
command = grep parts ${buildout:develop-eggs-directory}/${:egg}.egg-link command = grep parts ${buildout:develop-eggs-directory}/${:egg}.egg-link
[checkrecipe]
<= eggcheck
egg = slapos.cookbook
[checkz2loganalyser] [checkz2loganalyser]
<= eggcheck <= eggcheck
egg = z2loganalyser egg = z2loganalyser
...@@ -112,14 +106,3 @@ command = ...@@ -112,14 +106,3 @@ command =
# list of products, possible to extend, it is passed in reversed way # list of products, possible to extend, it is passed in reversed way
# to allow overriding during extending profile # to allow overriding during extending profile
list = ${products-deps:location} ${products-upgrade:location} list = ${products-deps:location} ${products-upgrade:location}
[bef_erp5-recipe]
recipe = plone.recipe.command
stop-on-error = true
location = ${buildout:parts-directory}/${:_buildout_section_name_}
repository = https://saneftestbot:kucahS5oav6jahch@git.erp5.org/repos/slapos/sanef.git
branch = CR1094
# Note: GIT_SSL_NO_VERIFY is used as SlapOS OpenSSL configuration does not
# contain master certificates to verify.
command = (GIT_SSL_NO_VERIFY=1 ${git:location}/bin/git clone --quiet -b ${:branch} ${:repository} ${:location}) || (rm -fr ${:location} && exit 1)
update-command =
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment