From 816531e28dd476f5f266e3327f0b73b11c23e9ce Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Tue, 4 Jun 2013 11:15:30 -0500 Subject: [PATCH] Remove postgresql and mysql audit noise Closes Homebrew/homebrew#20159. --- Library/Homebrew/cmd/audit.rb | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb index 99aad13928..d3ee4ed62c 100644 --- a/Library/Homebrew/cmd/audit.rb +++ b/Library/Homebrew/cmd/audit.rb @@ -148,7 +148,7 @@ class FormulaAuditor problem <<-EOS.undent unless dep.tags.any? || f.name =~ /automake/ && dep.name == 'autoconf' #{dep} dependency should be "depends_on '#{dep}' => :build" EOS - when "git", "ruby", "emacs", "mysql", "mercurial" + when "git", "ruby", "emacs", "mercurial" problem <<-EOS.undent Don't use #{dep} as a dependency. We allow non-Homebrew #{dep} installations. @@ -160,14 +160,6 @@ class FormulaAuditor that works with brewed and system Python and allows us to support bindings for 2.x and 3.x in parallel and much more. EOS - when "postgresql" - # Postgis specifically requires a Homebrewed postgresql - unless f.name == "postgis" - problem <<-EOS.undent - Don't use #{dep} as a dependency. We allow non-Homebrew - #{dep} installations. - EOS - end when 'gfortran' problem "Use ENV.fortran during install instead of depends_on 'gfortran'" when 'open-mpi', 'mpich2'