[buildout] parts = parameters promise-sudo-on-host template-full-build-script template-sudo-wrapper template-cros-sdk-wrapper # standard declaration of eggs directories eggs-directory = {{ eggs_directory }} develop-eggs-directory = {{ develop_eggs_directory }} #################################### Tools, sources getter ################################## [depot-tools] # needed for the "repo" command (to download many git repositories) recipe = slapos.recipe.build:gitclone repository = https://chromium.googlesource.com/chromium/tools/depot_tools.git branch = master git-executable = {{ git_path }}/git [customize-path] # add depot tools directory (for cros_sdk binary among others) and git directory to the path command = export PATH="${directory:wrapper_dir}":"{{ git_path }}":"{{ curl_path }}":"${depot-tools:location}":"$PATH"; [nayuos-ebuilds] recipe = slapos.recipe.build:gitclone repository = https://lab.nexedi.com/nexedi/nayuos-ebuilds.git branch = master git-executable = {{ git_path }}/git ############################################################################################ [parameters] # for use of the "parameters" XML configuration given from the # webrunner interface # if needed, .serialized => json (more complex structures are OK, but need another # jinja template for reading the content of the parameters) recipe = slapos.cookbook:slapconfiguration computer = ${slap_connection:computer_id} partition = ${slap_connection:partition_id} url = ${slap_connection:server_url} key = ${slap_connection:key_file} cert = ${slap_connection:cert_file} [directory] recipe = slapos.cookbook:mkdirectory log = ${buildout:directory}/var/log run = ${buildout:directory}/etc/run promise = ${buildout:directory}/etc/promise wrapper_dir = ${buildout:directory}/wrapper_bin cros_location = ${buildout:directory}/parts/chromiumos ebuilds_dir = ${nayuos-ebuilds:location} scripts_dir = {{ scripts_dir }} logo_dir = {{ logo_dir }} [bin] wrapper_cros_sdk=${directory:wrapper_dir}/wrapper_cros_sdk bash=/bin/bash sudo=/usr/bin/sudo [promise-sudo-on-host] # assert sudo is installed on the slapos host, as it is required to enter the # chroot 'cros_sdk' recipe = slapos.cookbook:wrapper wrapper-path = !py! '${directory:promise}/' + '${:_buildout_section_name_}'[8:] command-line = sudo -V [template-sudo-wrapper] recipe = slapos.recipe.template:jinja2 template = {{ scripts_dir }}/wrapper_sudo.in rendered = ${directory:wrapper_dir}/sudo md5sum = ded5a92be4e37ec32eb9d3087d3e19bd mode = 0700 context = key fake_cros_sdk_path bin:wrapper_cros_sdk key bash_path bin:bash key host_sudo_path bin:sudo [template-cros-sdk-wrapper] recipe = slapos.recipe.template:jinja2 template = {{ scripts_dir }}/wrapper_cros_sdk.in rendered = ${bin:wrapper_cros_sdk} md5sum = 7159fe3d5b85a283733cf686c4ee0a74 mode = 0700 context = # XXX bash path is the one from the host key bash_path bin:bash raw git_path {{ git_path }} raw curl_path {{ curl_path }} [template-full-build-script] # create the rendered script in the buildout-directory/etc/run # (use jinja for templating) recipe = slapos.recipe.template:jinja2 template = {{ scripts_dir }}/cros_full_build.in rendered = ${directory:run}/cros_full_build md5sum = 07cde435ed73c5730e928830280639e7 mode = 0700 context = key bash_path bin:bash key instance_log_dir directory:log key cros_location directory:cros_location key export_path_cmd customize-path:command key branch parameters:configuration.branch key boards_list parameters:configuration.boards key keep_cache parameters:configuration.keep_cache key ebuilds_dir directory:ebuilds_dir key scripts_dir directory:scripts_dir key logo_dir directory:logo_dir raw nayu_dev_rootfs_packages app-misc/nayuos-chromium-policy raw nayu_dev_packages net-libs/nodejs net-misc/re6stnet dev-vcs/git dev-python/flask dev-python/virtualenv sys-fs/cryptsetup