Skip to content
Snippets Groups Projects
Commit c51d74a2 authored by Adam Vandenberg's avatar Adam Vandenberg
Browse files

External command "brew audit <formula>"

"brew audit <formula>" will check the given formula for a couple of
known issues:
  * Is an explicit mirror being used for a SourceForge download path?
  * Is the commented-out cmake support present?
parent 8fb8c330
No related branches found
No related tags found
No related merge requests found
require 'formula'
require 'utils'
def ff
if ARGV.named.empty?
stuff = []
Formulary.read_all do |name,k|
stuff << Formula.factory(name)
end
return stuff
else
return ARGV.formulae
end
end
ff.each do |f|
problems = []
unless `grep "# depends_on 'cmake'" "#{f.path}"`.strip.empty?
problems << " * Commented cmake support still in #{f.name}"
end
unless `grep "\?use_mirror=" "#{f.path}"`.strip.empty?
problems << " * Remove 'use_mirror' from url for #{f.name}"
end
unless problems.empty?
puts "#{f.name}:"
puts problems * '\n'
puts
end
end
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