aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorMike McQuaid2017-03-21 14:47:52 +0100
committerGitHub2017-03-21 14:47:52 +0100
commitb3a32070fe708047c8feee604797e94dbec74f9d (patch)
treee29c3a3c4b639e79aa0a2f58953873031a6b2dad /Library/Homebrew
parentec0737d71fc7a04ff30081496266bca3b95842b5 (diff)
parent8efc0a608d6fa0b90c8295c8237e0fc843e30d02 (diff)
downloadbrew-b3a32070fe708047c8feee604797e94dbec74f9d.tar.bz2
Merge pull request #2366 from MikeMcQuaid/deprecate-tex
audit: deprecate depends_on :tex.
Diffstat (limited to 'Library/Homebrew')
-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 677a52447..7cad2f0d3 100644
--- a/Library/Homebrew/dev-cmd/audit.rb
+++ b/Library/Homebrew/dev-cmd/audit.rb
@@ -1036,6 +1036,10 @@ class FormulaAuditor
problem ":apr is deprecated. Usage should be \"apr-util\""
end
+ if line =~ /depends_on :tex/
+ problem ":tex is deprecated."
+ end
+
# Commented-out depends_on
problem "Commented-out dep #{$1}" if line =~ /#\s*depends_on\s+(.+)\s*$/