aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-06-04 11:15:30 -0500
committerJack Nagel2013-06-04 11:15:31 -0500
commit816531e28dd476f5f266e3327f0b73b11c23e9ce (patch)
treeb5961c7236888ae726f4aa45c39f67d99fc68527 /Library
parentb97b013fcea50c783faf85e7c12f7844eb86e4b3 (diff)
downloadbrew-816531e28dd476f5f266e3327f0b73b11c23e9ce.tar.bz2
Remove postgresql and mysql audit noise
Closes Homebrew/homebrew#20159.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/audit.rb10
1 files changed, 1 insertions, 9 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb
index 99aad1392..d3ee4ed62 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'