From 1943132cf664775e242cd962cefd41601d6ff81c Mon Sep 17 00:00:00 2001 From: Douglas Eichelberger Date: Wed, 8 Mar 2023 09:16:53 -0800 Subject: [PATCH 1/8] Move i18n out of global --- Library/Homebrew/Gemfile | 1 + Library/Homebrew/Gemfile.lock | 1 + Library/Homebrew/cmd/deps.rb | 1 - Library/Homebrew/cmd/link.rb | 1 - Library/Homebrew/cmd/unlink.rb | 1 - Library/Homebrew/cmd/uses.rb | 1 + Library/Homebrew/dev-cmd/generate-man-completions.rb | 1 - Library/Homebrew/global.rb | 8 +------- Library/Homebrew/keg.rb | 1 - Library/Homebrew/manpages.rb | 1 + Library/Homebrew/system_command.rb | 1 - 11 files changed, 5 insertions(+), 13 deletions(-) diff --git a/Library/Homebrew/Gemfile b/Library/Homebrew/Gemfile index 1a5f5d8383..35bae40352 100644 --- a/Library/Homebrew/Gemfile +++ b/Library/Homebrew/Gemfile @@ -41,6 +41,7 @@ end gem "activesupport" gem "addressable" gem "concurrent-ruby" +gem "i18n" gem "mechanize" gem "patchelf" gem "plist" diff --git a/Library/Homebrew/Gemfile.lock b/Library/Homebrew/Gemfile.lock index b588a1cd64..ead2916c52 100644 --- a/Library/Homebrew/Gemfile.lock +++ b/Library/Homebrew/Gemfile.lock @@ -231,6 +231,7 @@ DEPENDENCIES byebug concurrent-ruby did_you_mean + i18n json_schemer mechanize minitest diff --git a/Library/Homebrew/cmd/deps.rb b/Library/Homebrew/cmd/deps.rb index 16f39a3c1b..444da12f15 100644 --- a/Library/Homebrew/cmd/deps.rb +++ b/Library/Homebrew/cmd/deps.rb @@ -2,7 +2,6 @@ # frozen_string_literal: true require "formula" -require "ostruct" require "cli/parser" require "cask/caskroom" require "dependencies_helpers" diff --git a/Library/Homebrew/cmd/link.rb b/Library/Homebrew/cmd/link.rb index d52f4c5f3a..9bacec52f3 100644 --- a/Library/Homebrew/cmd/link.rb +++ b/Library/Homebrew/cmd/link.rb @@ -1,7 +1,6 @@ # typed: true # frozen_string_literal: true -require "ostruct" require "caveats" require "cli/parser" require "unlink" diff --git a/Library/Homebrew/cmd/unlink.rb b/Library/Homebrew/cmd/unlink.rb index 605adfbf22..5034b6a2a7 100644 --- a/Library/Homebrew/cmd/unlink.rb +++ b/Library/Homebrew/cmd/unlink.rb @@ -1,7 +1,6 @@ # typed: true # frozen_string_literal: true -require "ostruct" require "cli/parser" require "unlink" diff --git a/Library/Homebrew/cmd/uses.rb b/Library/Homebrew/cmd/uses.rb index a4620bc159..9b77b71723 100644 --- a/Library/Homebrew/cmd/uses.rb +++ b/Library/Homebrew/cmd/uses.rb @@ -9,6 +9,7 @@ require "formula" require "cli/parser" require "cask/caskroom" require "dependencies_helpers" +require "ostruct" module Homebrew extend T::Sig diff --git a/Library/Homebrew/dev-cmd/generate-man-completions.rb b/Library/Homebrew/dev-cmd/generate-man-completions.rb index 1732a7a445..8c48755473 100644 --- a/Library/Homebrew/dev-cmd/generate-man-completions.rb +++ b/Library/Homebrew/dev-cmd/generate-man-completions.rb @@ -2,7 +2,6 @@ # frozen_string_literal: true require "formula" -require "ostruct" require "completions" require "manpages" diff --git a/Library/Homebrew/global.rb b/Library/Homebrew/global.rb index d1e6a96da4..1f87b4c3a9 100644 --- a/Library/Homebrew/global.rb +++ b/Library/Homebrew/global.rb @@ -7,8 +7,8 @@ require "English" require "fileutils" require "json" require "json/add/exception" -require "ostruct" require "forwardable" +require "set" # Only require "core_ext" here to ensure we're only requiring the minimum of # what we need. @@ -16,7 +16,6 @@ require "active_support/core_ext/object/blank" require "active_support/core_ext/string/filters" require "active_support/core_ext/object/try" require "active_support/core_ext/array/access" -require "i18n" require "active_support/core_ext/hash/except" require "active_support/core_ext/kernel/reporting" require "active_support/core_ext/hash/keys" @@ -26,9 +25,6 @@ require "active_support/core_ext/enumerable" require "active_support/core_ext/string/exclude" require "active_support/core_ext/string/indent" -I18n.backend.available_locales # Initialize locales so they can be overwritten. -I18n.backend.store_translations :en, support: { array: { last_word_connector: " and " } } - HOMEBREW_API_DEFAULT_DOMAIN = ENV.fetch("HOMEBREW_API_DEFAULT_DOMAIN").freeze HOMEBREW_BOTTLE_DEFAULT_DOMAIN = ENV.fetch("HOMEBREW_BOTTLE_DEFAULT_DOMAIN").freeze HOMEBREW_BREW_DEFAULT_GIT_REMOTE = ENV.fetch("HOMEBREW_BREW_DEFAULT_GIT_REMOTE").freeze @@ -148,8 +144,6 @@ rescue nil end.compact.freeze -require "set" - require "system_command" require "exceptions" require "utils" diff --git a/Library/Homebrew/keg.rb b/Library/Homebrew/keg.rb index cb19e3af11..f878f60f83 100644 --- a/Library/Homebrew/keg.rb +++ b/Library/Homebrew/keg.rb @@ -4,7 +4,6 @@ require "keg_relocate" require "language/python" require "lock_file" -require "ostruct" require "extend/cachable" # Installation prefix of a formula. diff --git a/Library/Homebrew/manpages.rb b/Library/Homebrew/manpages.rb index c08c000ee4..9603adea02 100644 --- a/Library/Homebrew/manpages.rb +++ b/Library/Homebrew/manpages.rb @@ -3,6 +3,7 @@ require "cli/parser" require "erb" +require "i18n" SOURCE_PATH = (HOMEBREW_LIBRARY_PATH/"manpages").freeze TARGET_MAN_PATH = (HOMEBREW_REPOSITORY/"manpages").freeze diff --git a/Library/Homebrew/system_command.rb b/Library/Homebrew/system_command.rb index 3ddd2a039b..e069a4e27f 100644 --- a/Library/Homebrew/system_command.rb +++ b/Library/Homebrew/system_command.rb @@ -2,7 +2,6 @@ # frozen_string_literal: true require "open3" -require "ostruct" require "plist" require "shellwords" From 999594dc078d62f3bbe5e84bce58c083116926ca Mon Sep 17 00:00:00 2001 From: Douglas Eichelberger Date: Wed, 8 Mar 2023 09:46:01 -0800 Subject: [PATCH 2/8] Remove oxford comma from to_sentence default --- Library/Homebrew/extend/array.rb | 2 +- Library/Homebrew/test/.brew_irb_history | 0 Library/Homebrew/test/rubocops/components_order_spec.rb | 8 ++++---- 3 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 Library/Homebrew/test/.brew_irb_history diff --git a/Library/Homebrew/extend/array.rb b/Library/Homebrew/extend/array.rb index 2c2d1dfa71..2755ee92bf 100644 --- a/Library/Homebrew/extend/array.rb +++ b/Library/Homebrew/extend/array.rb @@ -48,7 +48,7 @@ class Array # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - def to_sentence(words_connector: ", ", two_words_connector: " and ", last_word_connector: ", and ") + def to_sentence(words_connector: ", ", two_words_connector: " and ", last_word_connector: " and ") case length when 0 +"" diff --git a/Library/Homebrew/test/.brew_irb_history b/Library/Homebrew/test/.brew_irb_history new file mode 100644 index 0000000000..e69de29bb2 diff --git a/Library/Homebrew/test/rubocops/components_order_spec.rb b/Library/Homebrew/test/rubocops/components_order_spec.rb index cc1dd2f3a1..afead946d0 100644 --- a/Library/Homebrew/test/rubocops/components_order_spec.rb +++ b/Library/Homebrew/test/rubocops/components_order_spec.rb @@ -1014,7 +1014,7 @@ describe RuboCop::Cop::FormulaAudit::ComponentsOrder do resource do on_macos do - ^^^^^^^^^^^ `on_macos` blocks within `resource` blocks must contain at least `url` and `sha256` and at most `url`, `mirror`, `version`, and `sha256` (in order). + ^^^^^^^^^^^ `on_macos` blocks within `resource` blocks must contain at least `url` and `sha256` and at most `url`, `mirror`, `version` and `sha256` (in order). sha256 "586372eb92059873e29eba4f9dec8381541b4d3834660707faf8ba59146dfc35" url "https://brew.sh/resource2.tar.gz" end @@ -1081,7 +1081,7 @@ describe RuboCop::Cop::FormulaAudit::ComponentsOrder do resource do on_macos do - ^^^^^^^^^^^ `on_macos` blocks within `resource` blocks must contain at least `url` and `sha256` and at most `url`, `mirror`, `version`, and `sha256` (in order). + ^^^^^^^^^^^ `on_macos` blocks within `resource` blocks must contain at least `url` and `sha256` and at most `url`, `mirror`, `version` and `sha256` (in order). if foo == :bar url "https://brew.sh/resource2.tar.gz" sha256 "586372eb92059873e29eba4f9dec8381541b4d3834660707faf8ba59146dfc35" @@ -1112,7 +1112,7 @@ describe RuboCop::Cop::FormulaAudit::ComponentsOrder do end on_arm do - ^^^^^^^^^ `on_arm` blocks within `resource` blocks must contain at least `url` and `sha256` and at most `url`, `mirror`, `version`, and `sha256` (in order). + ^^^^^^^^^ `on_arm` blocks within `resource` blocks must contain at least `url` and `sha256` and at most `url`, `mirror`, `version` and `sha256` (in order). sha256 "586372eb92059873e29eba4f9dec8381541b4d3834660707faf8ba59146dfc35" url "https://brew.sh/resource2.tar.gz" end @@ -1158,7 +1158,7 @@ describe RuboCop::Cop::FormulaAudit::ComponentsOrder do end on_arm do - ^^^^^^^^^ `on_arm` blocks within `resource` blocks must contain at least `url` and `sha256` and at most `url`, `mirror`, `version`, and `sha256` (in order). + ^^^^^^^^^ `on_arm` blocks within `resource` blocks must contain at least `url` and `sha256` and at most `url`, `mirror`, `version` and `sha256` (in order). if foo == :bar url "https://brew.sh/resource2.tar.gz" sha256 "586372eb92059873e29eba4f9dec8381541b4d3834660707faf8ba59146dfc35" From 13b6825c2d487f47b680e074fa2d64367afddb20 Mon Sep 17 00:00:00 2001 From: Douglas Eichelberger Date: Wed, 8 Mar 2023 09:50:04 -0800 Subject: [PATCH 3/8] Fix invalid locale error --- Library/Homebrew/manpages.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Library/Homebrew/manpages.rb b/Library/Homebrew/manpages.rb index 9603adea02..4f32014028 100644 --- a/Library/Homebrew/manpages.rb +++ b/Library/Homebrew/manpages.rb @@ -5,6 +5,9 @@ require "cli/parser" require "erb" require "i18n" +I18n.backend.available_locales # Initialize locales so they can be overwritten. +I18n.backend.store_translations :en, support: { array: { last_word_connector: " and " } } + SOURCE_PATH = (HOMEBREW_LIBRARY_PATH/"manpages").freeze TARGET_MAN_PATH = (HOMEBREW_REPOSITORY/"manpages").freeze TARGET_DOC_PATH = (HOMEBREW_REPOSITORY/"docs").freeze From 8a57c37c33a735f2b87ec9e99910961bbbd2a5bf Mon Sep 17 00:00:00 2001 From: Douglas Eichelberger Date: Wed, 8 Mar 2023 10:12:46 -0800 Subject: [PATCH 4/8] Fix extend/array_spec --- Library/Homebrew/test/extend/array_spec.rb | 8 ++++---- completions/fish/brew.fish | 2 +- completions/zsh/_brew | 2 +- docs/Manpage.md | 2 +- manpages/brew.1 | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Library/Homebrew/test/extend/array_spec.rb b/Library/Homebrew/test/extend/array_spec.rb index 876cf90494..7d422389ad 100644 --- a/Library/Homebrew/test/extend/array_spec.rb +++ b/Library/Homebrew/test/extend/array_spec.rb @@ -9,12 +9,12 @@ describe Array do expect([].to_sentence).to eq("") expect(["one"].to_sentence).to eq("one") expect(["one", "two"].to_sentence).to eq("one and two") - expect(["one", "two", "three"].to_sentence).to eq("one, two, and three") + expect(["one", "two", "three"].to_sentence).to eq("one, two and three") end it "converts an array to a sentence with a custom connector" do - expect(["one", "two", "three"].to_sentence(words_connector: " ")).to eq("one two, and three") - expect(["one", "two", "three"].to_sentence(words_connector: " & ")).to eq("one & two, and three") + expect(["one", "two", "three"].to_sentence(words_connector: " ")).to eq("one two and three") + expect(["one", "two", "three"].to_sentence(words_connector: " & ")).to eq("one & two and three") end it "converts an array to a sentence with a custom last word connector" do @@ -38,7 +38,7 @@ describe Array do end it "converts an array with blank elements to a sentence" do - expect([nil, "one", "", "two", "three"].to_sentence).to eq(", one, , two, and three") + expect([nil, "one", "", "two", "three"].to_sentence).to eq(", one, , two and three") end it "does not return a frozen string" do diff --git a/completions/fish/brew.fish b/completions/fish/brew.fish index 63dfd274f2..9d88c13fab 100644 --- a/completions/fish/brew.fish +++ b/completions/fish/brew.fish @@ -542,7 +542,7 @@ __fish_brew_complete_arg 'contributions' -l debug -d 'Display any debugging info __fish_brew_complete_arg 'contributions' -l from -d 'Date (ISO-8601 format) to start searching contributions' __fish_brew_complete_arg 'contributions' -l help -d 'Show this message' __fish_brew_complete_arg 'contributions' -l quiet -d 'Make some output more quiet' -__fish_brew_complete_arg 'contributions' -l repositories -d 'Specify a comma-separated (no spaces) list of repositories to search. Supported repositories: `brew`, `core`, `cask`, `aliases`, `autoupdate`, `bundle`, `command-not-found`, `test-bot`, `services`, `cask-drivers`, `cask-fonts`, and `cask-versions`. Omitting this flag, or specifying `--repositories=all`, searches all repositories. Use `--repositories=primary` to search only the main repositories: brew,core,cask' +__fish_brew_complete_arg 'contributions' -l repositories -d 'Specify a comma-separated (no spaces) list of repositories to search. Supported repositories: `brew`, `core`, `cask`, `aliases`, `autoupdate`, `bundle`, `command-not-found`, `test-bot`, `services`, `cask-drivers`, `cask-fonts` and `cask-versions`. Omitting this flag, or specifying `--repositories=all`, searches all repositories. Use `--repositories=primary` to search only the main repositories: brew,core,cask' __fish_brew_complete_arg 'contributions' -l to -d 'Date (ISO-8601 format) to stop searching contributions' __fish_brew_complete_arg 'contributions' -l user -d 'A GitHub username or email address of a specific person to find contribution data for' __fish_brew_complete_arg 'contributions' -l verbose -d 'Make some output more verbose' diff --git a/completions/zsh/_brew b/completions/zsh/_brew index 0d4f7437c9..6e14cc5711 100644 --- a/completions/zsh/_brew +++ b/completions/zsh/_brew @@ -671,7 +671,7 @@ _brew_contributions() { '--from[Date (ISO-8601 format) to start searching contributions]' \ '--help[Show this message]' \ '--quiet[Make some output more quiet]' \ - '--repositories[Specify a comma-separated (no spaces) list of repositories to search. Supported repositories: `brew`, `core`, `cask`, `aliases`, `autoupdate`, `bundle`, `command-not-found`, `test-bot`, `services`, `cask-drivers`, `cask-fonts`, and `cask-versions`. Omitting this flag, or specifying `--repositories=all`, searches all repositories. Use `--repositories=primary` to search only the main repositories: brew,core,cask]' \ + '--repositories[Specify a comma-separated (no spaces) list of repositories to search. Supported repositories: `brew`, `core`, `cask`, `aliases`, `autoupdate`, `bundle`, `command-not-found`, `test-bot`, `services`, `cask-drivers`, `cask-fonts` and `cask-versions`. Omitting this flag, or specifying `--repositories=all`, searches all repositories. Use `--repositories=primary` to search only the main repositories: brew,core,cask]' \ '--to[Date (ISO-8601 format) to stop searching contributions]' \ '--user[A GitHub username or email address of a specific person to find contribution data for]' \ '--verbose[Make some output more verbose]' diff --git a/docs/Manpage.md b/docs/Manpage.md index 8407854076..45fbf5ad7e 100644 --- a/docs/Manpage.md +++ b/docs/Manpage.md @@ -1116,7 +1116,7 @@ Display the path to the file being used when invoking `brew` *`cmd`*. Contributions to Homebrew repos. * `--repositories`: - Specify a comma-separated (no spaces) list of repositories to search. Supported repositories: `brew`, `core`, `cask`, `aliases`, `autoupdate`, `bundle`, `command-not-found`, `test-bot`, `services`, `cask-drivers`, `cask-fonts`, and `cask-versions`. Omitting this flag, or specifying `--repositories=all`, searches all repositories. Use `--repositories=primary` to search only the main repositories: brew,core,cask. + Specify a comma-separated (no spaces) list of repositories to search. Supported repositories: `brew`, `core`, `cask`, `aliases`, `autoupdate`, `bundle`, `command-not-found`, `test-bot`, `services`, `cask-drivers`, `cask-fonts` and `cask-versions`. Omitting this flag, or specifying `--repositories=all`, searches all repositories. Use `--repositories=primary` to search only the main repositories: brew,core,cask. * `--from`: Date (ISO-8601 format) to start searching contributions. * `--to`: diff --git a/manpages/brew.1 b/manpages/brew.1 index 487254d0e3..3680c41a7a 100644 --- a/manpages/brew.1 +++ b/manpages/brew.1 @@ -1603,7 +1603,7 @@ Contributions to Homebrew repos\. . .TP \fB\-\-repositories\fR -Specify a comma\-separated (no spaces) list of repositories to search\. Supported repositories: \fBbrew\fR, \fBcore\fR, \fBcask\fR, \fBaliases\fR, \fBautoupdate\fR, \fBbundle\fR, \fBcommand\-not\-found\fR, \fBtest\-bot\fR, \fBservices\fR, \fBcask\-drivers\fR, \fBcask\-fonts\fR, and \fBcask\-versions\fR\. Omitting this flag, or specifying \fB\-\-repositories=all\fR, searches all repositories\. Use \fB\-\-repositories=primary\fR to search only the main repositories: brew,core,cask\. +Specify a comma\-separated (no spaces) list of repositories to search\. Supported repositories: \fBbrew\fR, \fBcore\fR, \fBcask\fR, \fBaliases\fR, \fBautoupdate\fR, \fBbundle\fR, \fBcommand\-not\-found\fR, \fBtest\-bot\fR, \fBservices\fR, \fBcask\-drivers\fR, \fBcask\-fonts\fR and \fBcask\-versions\fR\. Omitting this flag, or specifying \fB\-\-repositories=all\fR, searches all repositories\. Use \fB\-\-repositories=primary\fR to search only the main repositories: brew,core,cask\. . .TP \fB\-\-from\fR From 826aca72175955ef9775761d256458d70d9a8128 Mon Sep 17 00:00:00 2001 From: Douglas Eichelberger Date: Wed, 8 Mar 2023 14:55:07 -0800 Subject: [PATCH 5/8] Add tests --- Library/Homebrew/test/global_spec.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Library/Homebrew/test/global_spec.rb b/Library/Homebrew/test/global_spec.rb index 6c34ca8838..a8469f9b58 100644 --- a/Library/Homebrew/test/global_spec.rb +++ b/Library/Homebrew/test/global_spec.rb @@ -8,4 +8,14 @@ describe "brew", :integration_test do .and not_to_output.to_stderr .and be_a_success end + + it "does not require i18n" do + # This is a transitive dependency of activesupport, but we don't use it. + expect { I18n }.to raise_error(NameError) + end + + it "does not require ActiveSupport::Inflector" do + # ActiveSupport inflections are slow to load, so we don't use them. + expect { ActiveSupport::Inflector }.to raise_error(NameError) + end end From 05d8d51a81a6fe71910a6493354e535ab41d793d Mon Sep 17 00:00:00 2001 From: Douglas Eichelberger Date: Wed, 8 Mar 2023 15:00:40 -0800 Subject: [PATCH 6/8] Remove i18n direct dependency --- Library/Homebrew/Gemfile | 1 - Library/Homebrew/Gemfile.lock | 1 - Library/Homebrew/manpages.rb | 5 ----- 3 files changed, 7 deletions(-) diff --git a/Library/Homebrew/Gemfile b/Library/Homebrew/Gemfile index 35bae40352..1a5f5d8383 100644 --- a/Library/Homebrew/Gemfile +++ b/Library/Homebrew/Gemfile @@ -41,7 +41,6 @@ end gem "activesupport" gem "addressable" gem "concurrent-ruby" -gem "i18n" gem "mechanize" gem "patchelf" gem "plist" diff --git a/Library/Homebrew/Gemfile.lock b/Library/Homebrew/Gemfile.lock index ead2916c52..b588a1cd64 100644 --- a/Library/Homebrew/Gemfile.lock +++ b/Library/Homebrew/Gemfile.lock @@ -231,7 +231,6 @@ DEPENDENCIES byebug concurrent-ruby did_you_mean - i18n json_schemer mechanize minitest diff --git a/Library/Homebrew/manpages.rb b/Library/Homebrew/manpages.rb index 4f32014028..42b91bc3ac 100644 --- a/Library/Homebrew/manpages.rb +++ b/Library/Homebrew/manpages.rb @@ -3,10 +3,6 @@ require "cli/parser" require "erb" -require "i18n" - -I18n.backend.available_locales # Initialize locales so they can be overwritten. -I18n.backend.store_translations :en, support: { array: { last_word_connector: " and " } } SOURCE_PATH = (HOMEBREW_LIBRARY_PATH/"manpages").freeze TARGET_MAN_PATH = (HOMEBREW_REPOSITORY/"manpages").freeze @@ -40,7 +36,6 @@ module Homebrew markup = build_man_page(quiet: quiet) convert_man_page(markup, TARGET_DOC_PATH/"Manpage.md") - markup = I18n.transliterate(markup, locale: :en) convert_man_page(markup, TARGET_MAN_PATH/"brew.1") end From 8cd95f6291e4a636335ab80b9df65c2585c256c8 Mon Sep 17 00:00:00 2001 From: Douglas Eichelberger Date: Wed, 8 Mar 2023 15:02:12 -0800 Subject: [PATCH 7/8] brew generate-man-completions --- manpages/brew.1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manpages/brew.1 b/manpages/brew.1 index 3680c41a7a..7bf8f0742e 100644 --- a/manpages/brew.1 +++ b/manpages/brew.1 @@ -3454,7 +3454,7 @@ Homebrew API: \fIhttps://rubydoc\.brew\.sh\fR Homebrew\'s Project Leader is Mike McQuaid\. . .P -Homebrew\'s Project Leadership Committee is Colin Dean, Issy Long, Jonathan Chang, Mike McQuaid, Misty De Meo, and Sean Molenaar\. +Homebrew\'s Project Leadership Committee is Colin Dean, Issy Long, Jonathan Chang, Mike McQuaid, Misty De Méo, and Sean Molenaar\. . .P Homebrew\'s Technical Steering Committee is Bo Anderson, FX Coudert, Michka Popoff, Mike McQuaid, and Rylan Polster\. @@ -3463,7 +3463,7 @@ Homebrew\'s Technical Steering Committee is Bo Anderson, FX Coudert, Michka Popo Homebrew\'s maintainers are Alexander Bayandin, Bevan Kay, Bo Anderson, Branch Vincent, Caleb Xu, Carlo Cabrera, Daniel Nachun, Dawid Dziurla, Dustin Rodrigues, Eric Knibbe, FX Coudert, George Adams, Issy Long, Markus Reiter, Miccal Matthews, Michael Cho, Michka Popoff, Mike McQuaid, Nanda H Krishna, Patrick Linnane, Rui Chen, Ruoyu Zhong, Rylan Polster, Sam Ford, Sean Molenaar, and Thierry Moisan\. . .P -Former maintainers with significant contributions include Misty De Meo, Shaun Jackman, Vitor Galvao, Claudia Pellegrino, Seeker, William Woodruff, Jan Viljanen, JCount, commitay, Dominyk Tiller, Tim Smith, Baptiste Fontaine, Xu Cheng, Martin Afanasjew, Brett Koonce, Charlie Sharpsteen, Jack Nagel, Adam Vandenberg, Andrew Janke, Alex Dunn, neutric, Tomasz Pajor, Uladzislau Shablinski, Alyssa Ross, ilovezfs, Chongyu Zhu and Homebrew\'s creator: Max Howell\. +Former maintainers with significant contributions include Misty De Méo, Shaun Jackman, Vítor Galvão, Claudia Pellegrino, Seeker, William Woodruff, Jan Viljanen, JCount, commitay, Dominyk Tiller, Tim Smith, Baptiste Fontaine, Xu Cheng, Martin Afanasjew, Brett Koonce, Charlie Sharpsteen, Jack Nagel, Adam Vandenberg, Andrew Janke, Alex Dunn, neutric, Tomasz Pajor, Uladzislau Shablinski, Alyssa Ross, ilovezfs, Chongyu Zhu and Homebrew\'s creator: Max Howell\. . .SH "BUGS" See our issues on GitHub: From 731a02ee7350d0951fc2a1fb20891a19814b43ed Mon Sep 17 00:00:00 2001 From: Douglas Eichelberger Date: Sat, 11 Mar 2023 17:27:50 -0800 Subject: [PATCH 8/8] rm .brew_irb_history --- Library/Homebrew/test/.brew_irb_history | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 Library/Homebrew/test/.brew_irb_history diff --git a/Library/Homebrew/test/.brew_irb_history b/Library/Homebrew/test/.brew_irb_history deleted file mode 100644 index e69de29bb2..0000000000