aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-10-15 22:54:31 -0500
committerJack Nagel2013-10-15 22:56:04 -0500
commite9d608587d83221420653b3559974c87c9247824 (patch)
treef2f8234d723776f2c94f9251b042018f89692580 /Library
parent3df31557c8a378e8a13d2ce36391a7e1c0152acb (diff)
downloadbrew-e9d608587d83221420653b3559974c87c9247824.tar.bz2
Remove audit check for XZ
Any formula with a URL that ends in ".xz" now gets this dependency automatically, so this check no longer does anything.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/audit.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb
index 711812dae..0f09016b8 100644
--- a/Library/Homebrew/cmd/audit.rb
+++ b/Library/Homebrew/cmd/audit.rb
@@ -263,10 +263,6 @@ class FormulaAuditor
urls.select { |u| u =~ %r[https://.*/(?:tar|zip)ball/] && u !~ %r[\.git$] }.each do |u|
problem "Use /archive/ URLs for GitHub tarballs (url is #{u})."
end
-
- if urls.any? { |u| u =~ /\.xz/ } && !f.deps.any? { |d| d.name == "xz" }
- problem "Missing a build-time dependency on 'xz'"
- end
end
def audit_specs