From 1615bc31fad2327b640b08abac473cb624462882 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sun, 6 Sep 2020 20:17:30 -0400 Subject: [PATCH 1/4] audit: fix micropython homepage cert issue --- Library/Homebrew/dev-cmd/audit.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/dev-cmd/audit.rb b/Library/Homebrew/dev-cmd/audit.rb index 3cd43ca7e1..3178becb79 100644 --- a/Library/Homebrew/dev-cmd/audit.rb +++ b/Library/Homebrew/dev-cmd/audit.rb @@ -547,7 +547,8 @@ module Homebrew end CERT_ERROR_ALLOWLIST = { - "monero" => "https://www.getmonero.org/", + "micropython" => "https://www.micropython.org/", + "monero" => "https://www.getmonero.org/", }.freeze def audit_homepage From 483fcd52c09e226165f4a5192ecdf108dac6c105 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sun, 6 Sep 2020 20:17:48 -0400 Subject: [PATCH 2/4] audit: fix lmod homepage cert issue --- Library/Homebrew/dev-cmd/audit.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/dev-cmd/audit.rb b/Library/Homebrew/dev-cmd/audit.rb index 3178becb79..792e9a46e5 100644 --- a/Library/Homebrew/dev-cmd/audit.rb +++ b/Library/Homebrew/dev-cmd/audit.rb @@ -547,6 +547,7 @@ module Homebrew end CERT_ERROR_ALLOWLIST = { + "lmod" => "https://www.tacc.utexas.edu/research-development/tacc-projects/lmod", "micropython" => "https://www.micropython.org/", "monero" => "https://www.getmonero.org/", }.freeze From c858f9a3ab6499d931e799080cc57c6aa17615a7 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sun, 6 Sep 2020 20:23:18 -0400 Subject: [PATCH 3/4] audit: fix jinx homepage cert issue --- Library/Homebrew/dev-cmd/audit.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/dev-cmd/audit.rb b/Library/Homebrew/dev-cmd/audit.rb index 792e9a46e5..f5a43cfce4 100644 --- a/Library/Homebrew/dev-cmd/audit.rb +++ b/Library/Homebrew/dev-cmd/audit.rb @@ -547,6 +547,7 @@ module Homebrew end CERT_ERROR_ALLOWLIST = { + "jinx" => "https://www.jinx-lang.org/", "lmod" => "https://www.tacc.utexas.edu/research-development/tacc-projects/lmod", "micropython" => "https://www.micropython.org/", "monero" => "https://www.getmonero.org/", From 55e045d23829328827ae8b2ece0187c25fa6c0ef Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sun, 6 Sep 2020 20:24:22 -0400 Subject: [PATCH 4/4] audit: fix lmod hashcat cert issue --- Library/Homebrew/dev-cmd/audit.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/dev-cmd/audit.rb b/Library/Homebrew/dev-cmd/audit.rb index f5a43cfce4..b926d3d607 100644 --- a/Library/Homebrew/dev-cmd/audit.rb +++ b/Library/Homebrew/dev-cmd/audit.rb @@ -547,6 +547,7 @@ module Homebrew end CERT_ERROR_ALLOWLIST = { + "hashcat" => "https://hashcat.net/hashcat/", "jinx" => "https://www.jinx-lang.org/", "lmod" => "https://www.tacc.utexas.edu/research-development/tacc-projects/lmod", "micropython" => "https://www.micropython.org/",