From 96cf0e5bcd3b5ec0e08495b990ab89c6b2f9c380 Mon Sep 17 00:00:00 2001 From: Rylan Polster Date: Thu, 26 Nov 2020 14:30:05 -0500 Subject: [PATCH] Migrate VERSIONED_DEPENDENCIES_CONFLICTS_ALLOWLIST --- Library/Homebrew/formula_auditor.rb | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/Library/Homebrew/formula_auditor.rb b/Library/Homebrew/formula_auditor.rb index a4e8a96b5d..1489a290ee 100644 --- a/Library/Homebrew/formula_auditor.rb +++ b/Library/Homebrew/formula_auditor.rb @@ -210,17 +210,6 @@ module Homebrew end end - # TODO: try to remove these, it's not a good user experience - VERSIONED_DEPENDENCIES_CONFLICTS_ALLOWLIST = %w[ - agda - anjuta - fdroidserver - gradio - predictionio - sqoop - visp - ].freeze - def audit_deps @specs.each do |spec| # Check for things we don't like to depend on. @@ -297,7 +286,7 @@ module Homebrew end return unless @core_tap - return if VERSIONED_DEPENDENCIES_CONFLICTS_ALLOWLIST.include?(formula.name) + return if tap_audit_exception :versioned_dependencies_conflicts_allowlist, formula.name # The number of conflicts on Linux is absurd. # TODO: remove this and check these there too.