Merge pull request #207012 from Homebrew/bump-tailwindcss-4.0.5
[Homebrew/homebrew-core.git] / Formula / g / git-gerrit.rb
blobea2a6f8bcd130d788d098022b1f5131dc5977c34
1 class GitGerrit < Formula
2   desc "Gerrit code review helper scripts"
3   homepage "https://github.com/fbzhong/git-gerrit"
4   url "https://github.com/fbzhong/git-gerrit/archive/refs/tags/v0.3.0.tar.gz"
5   sha256 "433185315db3367fef82a7332c335c1c5e0b05dabf8d4fbeff9ecf6cc7e422eb"
6   license "BSD-3-Clause"
7   head "https://github.com/fbzhong/git-gerrit.git", branch: "master"
9   bottle do
10     rebuild 2
11     sha256 cellar: :any_skip_relocation, arm64_sequoia: "ae518d315b919c27305591d1cc24773926b1a947da589b0e50146c98ff138997"
12     sha256 cellar: :any_skip_relocation, arm64_sonoma:  "ae518d315b919c27305591d1cc24773926b1a947da589b0e50146c98ff138997"
13     sha256 cellar: :any_skip_relocation, arm64_ventura: "ae518d315b919c27305591d1cc24773926b1a947da589b0e50146c98ff138997"
14     sha256 cellar: :any_skip_relocation, sonoma:        "843601d279865025574a23dc00ae8e8bdd222a2d705f04ec8939af16aa2c19f5"
15     sha256 cellar: :any_skip_relocation, ventura:       "843601d279865025574a23dc00ae8e8bdd222a2d705f04ec8939af16aa2c19f5"
16     sha256 cellar: :any_skip_relocation, x86_64_linux:  "ae518d315b919c27305591d1cc24773926b1a947da589b0e50146c98ff138997"
17   end
19   conflicts_with "gerrit-tools", because: "both install `gerrit-cherry-pick` binaries"
21   def install
22     prefix.install "bin"
23     bash_completion.install "completion/git-gerrit-completion.bash" => "git-gerrit"
24   end
26   test do
27     system "git", "init"
28     system "git", "gerrit", "help"
29   end
30 end