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 00:08:31 +05:30
|
|
|
|
|
|
|
module RuboCop
|
|
|
|
module Cop
|
|
|
|
module FormulaAudit
|
|
|
|
class Text < FormulaCop
|
|
|
|
def audit_formula(_node, _class_node, _parent_class_node, body_node)
|
|
|
|
if !find_node_method_by_name(body_node, :plist_options) &&
|
|
|
|
find_method_def(body_node, :plist)
|
|
|
|
problem "Please set plist_options when using a formula-defined plist."
|
|
|
|
end
|
|
|
|
|
2020-04-11 14:20:49 +01:00
|
|
|
if (depends_on?("openssl") || depends_on?("openssl@1.1")) && depends_on?("libressl")
|
2017-05-24 00:08:31 +05:30
|
|
|
problem "Formulae should not depend on both OpenSSL and LibreSSL (even optionally)."
|
|
|
|
end
|
|
|
|
|
2019-06-07 09:31:24 +01:00
|
|
|
if formula_tap == "homebrew-core" && (depends_on?("veclibfort") || depends_on?("lapack"))
|
2020-01-08 15:38:48 -05:00
|
|
|
problem "Formulae in homebrew/core should use OpenBLAS as the default serial linear algebra library."
|
2019-05-23 19:07:17 -04:00
|
|
|
end
|
|
|
|
|
2017-05-24 00:08:31 +05:30
|
|
|
if method_called_ever?(body_node, :virtualenv_create) ||
|
|
|
|
method_called_ever?(body_node, :virtualenv_install_with_resources)
|
2017-05-30 01:24:17 +05:30
|
|
|
find_method_with_args(body_node, :resource, "setuptools") do
|
|
|
|
problem "Formulae using virtualenvs do not need a `setuptools` resource."
|
2017-05-24 00:08:31 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
unless method_called_ever?(body_node, :go_resource)
|
|
|
|
# processed_source.ast is passed instead of body_node because `require` would be outside body_node
|
2017-05-30 01:24:17 +05:30
|
|
|
find_method_with_args(processed_source.ast, :require, "language/go") do
|
|
|
|
problem "require \"language/go\" is unnecessary unless using `go_resource`s"
|
2017-05-24 00:08:31 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-30 01:24:17 +05:30
|
|
|
find_instance_method_call(body_node, "Formula", :factory) do
|
|
|
|
problem "\"Formula.factory(name)\" is deprecated in favor of \"Formula[name]\""
|
2017-05-24 00:08:31 +05:30
|
|
|
end
|
|
|
|
|
2017-05-30 01:24:17 +05:30
|
|
|
find_every_method_call_by_name(body_node, :xcodebuild).each do |m|
|
|
|
|
next if parameters_passed?(m, /SYMROOT=/)
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2017-05-30 01:24:17 +05:30
|
|
|
problem 'xcodebuild should be passed an explicit "SYMROOT"'
|
2017-05-24 00:08:31 +05:30
|
|
|
end
|
|
|
|
|
2017-05-30 01:24:17 +05:30
|
|
|
find_method_with_args(body_node, :system, "xcodebuild") do
|
|
|
|
problem %q(use "xcodebuild *args" instead of "system 'xcodebuild', *args")
|
|
|
|
end
|
|
|
|
|
|
|
|
find_method_with_args(body_node, :system, "go", "get") do
|
2017-10-31 00:47:57 +00:00
|
|
|
problem "Do not use `go get`. Please ask upstream to implement Go vendoring"
|
2017-05-24 00:08:31 +05:30
|
|
|
end
|
2018-06-08 00:07:07 +10:00
|
|
|
|
|
|
|
find_method_with_args(body_node, :system, "dep", "ensure") do |d|
|
|
|
|
next if parameters_passed?(d, /vendor-only/)
|
2020-04-14 11:59:56 +01:00
|
|
|
next if @formula_name == "goose" # needed in 2.3.0
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2018-06-08 00:07:07 +10:00
|
|
|
problem "use \"dep\", \"ensure\", \"-vendor-only\""
|
|
|
|
end
|
2018-06-08 10:15:32 +10:00
|
|
|
|
|
|
|
find_method_with_args(body_node, :system, "cargo", "build") do
|
2020-06-22 13:24:41 +02:00
|
|
|
problem "use \"cargo\", \"install\", *std_cargo_args"
|
2018-06-08 10:15:32 +10:00
|
|
|
end
|
2020-07-03 16:27:35 -04:00
|
|
|
|
|
|
|
find_every_method_call_by_name(body_node, :system).each do |m|
|
|
|
|
next unless parameters_passed?(m, /make && make/)
|
|
|
|
|
|
|
|
offending_node(m)
|
|
|
|
problem "Use separate `make` calls"
|
|
|
|
end
|
2020-07-05 13:50:48 -04:00
|
|
|
|
|
|
|
body_node.each_descendant(:dstr) do |dstr_node|
|
|
|
|
dstr_node.each_descendant(:begin) do |interpolation_node|
|
|
|
|
next unless interpolation_node.source.match?(/#\{\w+\s*\+\s*['"][^}]+\}/)
|
|
|
|
|
|
|
|
offending_node(interpolation_node)
|
|
|
|
problem "Do not concatenate paths in string interpolation"
|
|
|
|
end
|
|
|
|
end
|
2020-07-05 14:32:27 -04:00
|
|
|
|
|
|
|
find_strings(body_node).each do |n|
|
|
|
|
next unless regex_match_group(n, /JAVA_HOME/i)
|
|
|
|
|
|
|
|
next if @formula_name.match?(/^openjdk(@|$)/)
|
|
|
|
|
|
|
|
next if find_every_method_call_by_name(body_node, :depends_on).any? do |dependency|
|
|
|
|
dependency.each_descendant(:str).count.zero? ||
|
|
|
|
regex_match_group(dependency.each_descendant(:str).first, /^openjdk(@|$)/) ||
|
|
|
|
depends_on?(:java)
|
|
|
|
end
|
|
|
|
|
|
|
|
offending_node(n)
|
|
|
|
problem "Use `depends_on :java` to set JAVA_HOME"
|
|
|
|
end
|
2020-07-05 15:02:47 -04:00
|
|
|
|
|
|
|
find_strings(body_node).each do |n|
|
|
|
|
# Skip strings that don't start with one of the keywords
|
|
|
|
next unless regex_match_group(n, %r{^(bin|include|libexec|lib|sbin|share|Frameworks)/?})
|
|
|
|
|
|
|
|
parent = n.parent
|
|
|
|
# Only look at keywords that have `prefix` before them
|
|
|
|
prefix_keyword_regex = %r{(prefix\s*\+\s*["'](bin|include|libexec|lib|sbin|share|Frameworks))["'/]}
|
|
|
|
if match = parent.source.match(prefix_keyword_regex)
|
|
|
|
offending_node(parent)
|
|
|
|
problem "Use `#{match[2].downcase}` instead of `#{match[1]}\"`"
|
|
|
|
end
|
|
|
|
end
|
2017-05-24 00:08:31 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-04-11 14:23:02 +01:00
|
|
|
|
2017-10-31 00:55:00 +00:00
|
|
|
module FormulaAuditStrict
|
|
|
|
class Text < FormulaCop
|
2020-04-13 14:36:18 +01:00
|
|
|
def audit_formula(_node, _class_node, _parent_class_node, body_node)
|
|
|
|
find_method_with_args(body_node, :go_resource) do
|
|
|
|
problem "`go_resource`s are deprecated. Please ask upstream to implement Go vendoring"
|
|
|
|
end
|
2020-07-05 11:42:16 -04:00
|
|
|
|
2020-07-05 11:46:53 -04:00
|
|
|
find_method_with_args(body_node, :env, :userpaths) do
|
|
|
|
problem "`env :userpaths` in homebrew/core formulae is deprecated"
|
|
|
|
end
|
|
|
|
|
2020-07-05 19:58:26 -04:00
|
|
|
body_node.each_descendant(:dstr) do |dstr_node|
|
|
|
|
next unless match = dstr_node.source.match(%r{(\#{share}/#{Regexp.escape(@formula_name)})[ /"]})
|
|
|
|
|
|
|
|
offending_node(dstr_node)
|
|
|
|
problem "Use `\#{pkgshare}` instead of `#{match[1]}`"
|
|
|
|
end
|
|
|
|
|
|
|
|
find_every_method_call_by_name(body_node, :share).each do |share_node|
|
|
|
|
if match = share_node.parent.source.match(%r{(share\s*[/+]\s*"#{Regexp.escape(@formula_name)})[/"]})
|
|
|
|
offending_node(share_node.parent)
|
|
|
|
problem "Use `pkgshare` instead of `#{match[1]}\"`"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-07-05 11:42:16 -04:00
|
|
|
return unless formula_tap == "homebrew-core"
|
|
|
|
|
|
|
|
find_method_with_args(body_node, :env, :std) do
|
|
|
|
problem "`env :std` in homebrew/core formulae is deprecated"
|
|
|
|
end
|
2020-04-13 14:36:18 +01:00
|
|
|
end
|
2017-10-31 00:55:00 +00:00
|
|
|
end
|
|
|
|
end
|
2017-05-24 00:08:31 +05:30
|
|
|
end
|
|
|
|
end
|