From 69cf697e2ee94ec7e793d5022bbe9e9f1d09ab15 Mon Sep 17 00:00:00 2001 From: Thomas Date: Fri, 2 Apr 2021 15:25:34 +0800 Subject: [PATCH 1/2] Remove Audacity from denylist.rb --- Library/Homebrew/cask/denylist.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/Library/Homebrew/cask/denylist.rb b/Library/Homebrew/cask/denylist.rb index c6fd811c7d..6b3a0ca589 100644 --- a/Library/Homebrew/cask/denylist.rb +++ b/Library/Homebrew/cask/denylist.rb @@ -13,8 +13,6 @@ module Cask case name when /^adobe-(after|illustrator|indesign|photoshop|premiere)/ "Adobe casks were removed because they are too difficult to maintain." - when /^audacity$/ - "Audacity was removed because it is too difficult to download programmatically." when /^pharo$/ "Pharo developers maintain their own tap." end From 8cca00286d925eaab430e7fc998679f6df194f01 Mon Sep 17 00:00:00 2001 From: Thomas Date: Fri, 2 Apr 2021 16:10:27 +0800 Subject: [PATCH 2/2] Update denylist_spec.rb --- Library/Homebrew/test/cask/denylist_spec.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/Library/Homebrew/test/cask/denylist_spec.rb b/Library/Homebrew/test/cask/denylist_spec.rb index 65fc182c15..6bb3d15218 100644 --- a/Library/Homebrew/test/cask/denylist_spec.rb +++ b/Library/Homebrew/test/cask/denylist_spec.rb @@ -17,7 +17,6 @@ describe Cask::Denylist, :cask do it { is_expected.to disallow("adobe-indesign") } it { is_expected.to disallow("adobe-photoshop") } it { is_expected.to disallow("adobe-premiere") } - it { is_expected.to disallow("audacity") } it { is_expected.to disallow("pharo") } it { is_expected.not_to disallow("allowed-cask") } end