Commit b8b389267e75c064503cfe772831b68444b413b0

Authored by Antonio Terceiro
1 parent 69faa492
Exists in master and in 70 other branches add_sisp_to_chef, add_super_archives_plugin, api_for_colab, automates_core_packing, backup_not_prod, changes_in_buttons_on_content_panel, colab_automated_login, colab_spb_plugin_recipe, colab_widgets_settings, design_validation, disable_email_dev, fix_breadcrumbs_position, fix_categories_software_link, fix_edit_institution, fix_edit_software_with_another_license, fix_get_license_info, fix_gitlab_assets_permission, fix_list_style_inside_article, fix_list_style_on_folder_elements, fix_members_pagination, fix_merge_request_url, fix_models_translations, fix_no_license, fix_software_block_migration, fix_software_communities_translations, fix_software_communities_unit_test, fix_style_create_institution_admin_panel, fix_superarchives_imports, fix_sym_links_noosfero, focus_search_field_theme, gov-user-refactoring, gov-user-refactoring-rails4, header_fix, institution_modal_on_rating, kalibro-conf-refactoring, kalibro-processor-package, lxc_settings, margin_fix, mezuro_cookbook, prezento, refactor_download_block, refactor_software_communities, refactor_software_for_sisp, register_page, release-process, release-process-v2, remove_broken_theme, remove_secondary_email_from_user, remove_sisp_buttons, removing_super_archives_email, review_message, scope2method, signals_user_noosfero, sisp_catalog_header, sisp_dev_master, software_as_organization, software_catalog_style_fix, software_communities_html_refactor, software_infos_api, spb_to_rails4, spec_refactor, stable-4.1, stable-4.2, temp_soft_comm_refactoring, theme_header, theme_javascript_refactory, thread_dropdown, thread_page, update_search_by_categories, update_softwares_boxes

check dependencies; requires chake >= 0.10

Showing 2 changed files with 15 additions and 3 deletions   Show diff stats
Rakefile
... ... @@ -49,8 +49,8 @@ end
49 49  
50 50 require 'chake'
51 51  
52   -if Gem::Version.new(Chake::VERSION) < Gem::Version.new('0.7')
53   - fail "Please upgrade to chake 0.7+"
  52 +if Gem::Version.new(Chake::VERSION) < Gem::Version.new('0.10')
  53 + fail "Please upgrade to chake 0.10+"
54 54 end
55 55  
56 56 ips ||= YAML.load_file(ips_file)
... ... @@ -137,7 +137,7 @@ namespace :export_data do
137 137 end
138 138 end
139 139  
140   -task :bootstrap_common => 'config/local/ssh_config'
  140 +task :bootstrap_common => :check_dependencies
141 141  
142 142 unless ENV['nodeps']
143 143 task 'converge:integration' => 'converge:database'
... ...
tasks/dependencies.rake 0 → 100644
... ... @@ -0,0 +1,12 @@
  1 +task :check_dependencies do
  2 + missing = [
  3 + { program: 'sphinx-build', package: 'python-sphinx' },
  4 + { program: 'make', package: 'make' },
  5 + ].select do |dependency|
  6 + !system("which #{dependency[:program]} >/dev/null")
  7 + end
  8 + missing.each do |dependency|
  9 + puts "Please install package #{dependency[:package]}"
  10 + end
  11 + fail 'E: missing dependencies' if missing.size > 0
  12 +end
... ...