Skip to content
Snippets Groups Projects
Commit fdcffb25 authored by Mike McQuaid's avatar Mike McQuaid Committed by GitHub
Browse files

Merge pull request #2482 from MikeMcQuaid/audit-dependency-options

audit: ensure default dependencies don't use options.
parents 96ea9796 3011cbac
No related branches found
No related tags found
No related merge requests found
......@@ -1031,11 +1031,15 @@ class FormulaAuditor
end
if line =~ /depends_on :tex/
problem ":tex is deprecated."
problem ":tex is deprecated"
end
if line =~ /depends_on\s+['"].+['"]\s+=>\s+:(lua|perl|python|ruby)(\d*)/
problem "Formulae should vendor #{$1} modules rather than use `depends_on ... => :#{$1}#{$2}`."
if line =~ /depends_on\s+['"](.+)['"]\s+=>\s+:(lua|perl|python|ruby)(\d*)/
problem "#{$2} modules should be vendored rather than use deprecated `depends_on \"#{$1}\" => :#{$2}#{$3}`"
end
if line =~ /depends_on\s+['"](.+)['"]\s+=>\s+.*['"](.+)['"]/
problem "Dependency #{$1} should not use option #{$2}"
end
# Commented-out depends_on
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment