aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/dev-cmd
diff options
context:
space:
mode:
authorMike McQuaid2016-10-12 15:37:33 +0100
committerMike McQuaid2016-10-12 15:37:33 +0100
commit26e4899fde482cafcb2d85212020a3b86882bf3e (patch)
tree6c04006ccab04a4feb227b0b5b2040e056e99695 /Library/Homebrew/dev-cmd
parenta812e9541799d6a296c561dadcb6aec3a0418c75 (diff)
downloadbrew-26e4899fde482cafcb2d85212020a3b86882bf3e.tar.bz2
Deprecate apr requirement.
It's not used on enough configurations now that there's little point in keeping it around. See e.g. `:autoconf` for prior art.
Diffstat (limited to 'Library/Homebrew/dev-cmd')
-rw-r--r--Library/Homebrew/dev-cmd/audit.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/Library/Homebrew/dev-cmd/audit.rb b/Library/Homebrew/dev-cmd/audit.rb
index de53b0292..bfe56302e 100644
--- a/Library/Homebrew/dev-cmd/audit.rb
+++ b/Library/Homebrew/dev-cmd/audit.rb
@@ -811,6 +811,10 @@ class FormulaAuditor
problem ":#{$1} is deprecated. Usage should be \"#{$1}\""
end
+ if line =~ /depends_on :apr/
+ problem ":apr is deprecated. Usage should be \"apr-util\""
+ end
+
# Commented-out depends_on
problem "Commented-out dep #{$1}" if line =~ /#\s*depends_on\s+(.+)\s*$/