aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/dev-cmd
diff options
context:
space:
mode:
authorMike McQuaid2016-10-12 18:22:27 +0100
committerGitHub2016-10-12 18:22:27 +0100
commitfd0dffdd778370c2ab2a6b3e03a28ba0e1cc2d8a (patch)
tree1a1341b9e1d3d9b6302f98bbd690be8e95810ed2 /Library/Homebrew/dev-cmd
parentdc4ab8fd26691ad19b3a639a58062280abbacb0e (diff)
parent26e4899fde482cafcb2d85212020a3b86882bf3e (diff)
downloadbrew-fd0dffdd778370c2ab2a6b3e03a28ba0e1cc2d8a.tar.bz2
Merge pull request #1271 from MikeMcQuaid/deprecate-apr-requirement
Deprecate apr requirement.
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*$/