2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-10-26 19:41:14 +01:00
|
|
|
require "rubocops/extend/formula"
|
2017-05-24 21:07:50 +05:30
|
|
|
|
|
|
|
module RuboCop
|
|
|
|
module Cop
|
|
|
|
module FormulaAudit
|
2018-10-18 21:42:43 -04:00
|
|
|
# This cop audits `options` in Formulae.
|
2017-05-24 21:07:50 +05:30
|
|
|
class Options < FormulaCop
|
2019-04-19 15:38:03 +09:00
|
|
|
DEPRECATION_MSG = "macOS has been 64-bit only since 10.6 so 32-bit options are deprecated."
|
|
|
|
UNI_DEPRECATION_MSG = "macOS has been 64-bit only since 10.6 so universal options are deprecated."
|
2017-05-24 21:07:50 +05:30
|
|
|
|
2019-04-19 15:38:03 +09:00
|
|
|
DEP_OPTION = "Formulae should not use `deprecated_option`"
|
|
|
|
OPTION = "Formulae should not have an `option`"
|
2019-01-22 13:30:24 +00:00
|
|
|
|
2017-05-24 21:07:50 +05:30
|
|
|
def audit_formula(_node, _class_node, _parent_class_node, body_node)
|
|
|
|
option_call_nodes = find_every_method_call_by_name(body_node, :option)
|
|
|
|
option_call_nodes.each do |option_call|
|
|
|
|
option = parameters(option_call).first
|
|
|
|
problem DEPRECATION_MSG if regex_match_group(option, /32-bit/)
|
|
|
|
end
|
2017-07-14 21:11:53 +05:30
|
|
|
|
|
|
|
option_call_nodes.each do |option_call|
|
|
|
|
offending_node(option_call)
|
|
|
|
option = string_content(parameters(option_call).first)
|
2018-10-27 21:47:58 +10:00
|
|
|
problem UNI_DEPRECATION_MSG if option == "universal"
|
2017-07-14 21:11:53 +05:30
|
|
|
|
|
|
|
if option !~ /with(out)?-/ &&
|
|
|
|
option != "cxx11" &&
|
|
|
|
option != "universal"
|
|
|
|
problem "Options should begin with with/without."\
|
|
|
|
" Migrate '--#{option}' with `deprecated_option`."
|
|
|
|
end
|
|
|
|
|
|
|
|
next unless option =~ /^with(out)?-(?:checks?|tests)$/
|
|
|
|
next if depends_on?("check", :optional, :recommended)
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2017-07-14 21:11:53 +05:30
|
|
|
problem "Use '--with#{Regexp.last_match(1)}-test' instead of '--#{option}'."\
|
|
|
|
" Migrate '--#{option}' with `deprecated_option`."
|
|
|
|
end
|
2019-01-22 13:30:24 +00:00
|
|
|
|
|
|
|
return unless formula_tap == "homebrew-core"
|
|
|
|
|
|
|
|
problem DEP_OPTION if method_called_ever?(body_node, :deprecated_option)
|
|
|
|
problem OPTION if method_called_ever?(body_node, :option)
|
2017-07-14 21:11:53 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-07-15 13:34:16 +05:30
|
|
|
|
2019-01-22 13:30:24 +00:00
|
|
|
# Keep this (empty) module and class around in case we need it later to
|
|
|
|
# avoid deleting all the NewFormulaAudit referencing logic.
|
2017-07-15 13:34:16 +05:30
|
|
|
module NewFormulaAudit
|
|
|
|
class Options < FormulaCop
|
|
|
|
end
|
|
|
|
end
|
2017-05-24 21:07:50 +05:30
|
|
|
end
|
|
|
|
end
|