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

Merge pull request #2473 from MikeMcQuaid/audit-language-module-requirements

audit: deprecate language module requirements.
parents 1deb8843 0948d201
No related branches found
No related tags found
No related merge requests found
......@@ -1021,6 +1021,10 @@ class FormulaAuditor
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}`."
end
# Commented-out depends_on
problem "Commented-out dep #{$1}" if line =~ /#\s*depends_on\s+(.+)\s*$/
......
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