From 26e4899fde482cafcb2d85212020a3b86882bf3e Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Wed, 12 Oct 2016 15:37:33 +0100 Subject: 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. --- Library/Homebrew/dev-cmd/audit.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Library/Homebrew/dev-cmd') 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*$/ -- cgit v1.2.3