From c42b6e2cad25b8191b22d5ac1a96a30b1ad03335 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Wed, 24 Aug 2022 10:43:57 +0800 Subject: [PATCH] Revert "formula_auditor: skip rename audit for `glib-utils`" The necessary PRs in Homebrew/homebrew-core have been merged. See: - Homebrew/homebrew-core#108307 - Homebrew/homebrew-core#108497 This reverts commit 6ca02b22bb27a45525fa62c6fba9902039152fcc. --- Library/Homebrew/formula_auditor.rb | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Library/Homebrew/formula_auditor.rb b/Library/Homebrew/formula_auditor.rb index 21da794564..3c268e0db8 100644 --- a/Library/Homebrew/formula_auditor.rb +++ b/Library/Homebrew/formula_auditor.rb @@ -263,10 +263,7 @@ module Homebrew next end - # FIXME: Remove `glib-utils` exemption when the following PRs are merged: - # https://github.com/Homebrew/homebrew-core/pull/108307 - # https://github.com/Homebrew/homebrew-core/pull/108497 - if dep_f.oldname && dep.name.split("/").last == dep_f.oldname && dep_f.oldname != "glib-utils" + if dep_f.oldname && dep.name.split("/").last == dep_f.oldname problem "Dependency '#{dep.name}' was renamed; use new name '#{dep_f.name}'." end