download_strategy: replace bazaar with breezy

Bazaar is no longer maintained, and Breezy seems to be a drop-in
replacement.

I've tested the commands used in the download strategy and they seem to
work.

We need this in order to properly deprecate the `bazaar` formula.

See Homebrew/homebrew-core#106848.
This commit is contained in:
Carlo Cabrera 2022-07-29 17:02:39 +08:00
parent 72880dea35
commit e1ba143d88
No known key found for this signature in database
GPG Key ID: C74D447FC549A1D0

View File

@ -1280,7 +1280,7 @@ class BazaarDownloadStrategy < VCSDownloadStrategy
def env
{
"PATH" => PATH.new(Formula["bazaar"].opt_bin, ENV.fetch("PATH")),
"PATH" => PATH.new(Formula["breezy"].opt_bin, ENV.fetch("PATH")),
"BZR_HOME" => HOMEBREW_TEMP,
}
end