「Homebrew/homebrew-services」が廃止なのでbrew untapする
しばらく前からmacOSでHomebrewを実行すると以下の警告が表示されていました。この解消方法をメモします。
% brew doctor
Please note that these warnings are just used to help the Homebrew maintainers
with debugging if you file an issue. If everything you use Homebrew for is
working fine: please don't worry or file an issue; just ignore this. Thanks!
Warning: You have the following deprecated, official taps tapped:
Homebrew/homebrew-services
Untap them with `brew untap`.
検証環境¶
対象 | バージョン |
---|---|
macOS | Sequoia 15.6.1 |
brew untapする¶
Homebrew Servicesには以下の記載があります。
This tap allowed you to manage background services using the daemon manager
launchctl
on macOS orsystemctl
on Linux.It has been moved to Homebrew/brew.
brew services
still works as before, it just isn't in this tap any more.
そこでこのリポジトリをuntapします。tap/untapについてはHomebrew DocumentationのTaps (Third-Party Repositories)に説明があります。
brew untap homebrew/homebrew-services
これでbrew doctor
を実行しても警告は表示されなくなりました。
% brew doctor
Your system is ready to brew.