Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 8 additions & 15 deletions Formula/v/vitess.rb
Original file line number Diff line number Diff line change
@@ -1,29 +1,22 @@
class Vitess < Formula
desc "Database clustering system for horizontal scaling of MySQL"
homepage "https://vitess.io"
url "https://github.com/vitessio/vitess/archive/refs/tags/v23.0.2.tar.gz"
sha256 "f32b112de130e53073b2abfc3b64a28836dea8f9f2ff42e3265298ec44d51a2b"
url "https://github.com/vitessio/vitess/archive/refs/tags/v23.0.3.tar.gz"
sha256 "b517deb54d0802a6864cbf9e728b9ba5b0d1746842d53ef45c82796bfaf0769d"
license "Apache-2.0"

bottle do
sha256 cellar: :any_skip_relocation, arm64_tahoe: "9a8bef5f13343ac744abd83462d0d29bcfeeddef96458a65c24f282522df7d3d"
sha256 cellar: :any_skip_relocation, arm64_sequoia: "b8e84cfbe8c043cd7154ddf6eeade961e1655dfb1c4291643bbf0bd4239f8654"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "bcf2e1bd26f4e1abe5b4af751bb2e5a93c75ea68831d7d226643f88e4e0ee42f"
sha256 cellar: :any_skip_relocation, sonoma: "66984c58ccb0d07c24dd4ffeaaa0d902eecf72b2d0ac9d6c39c1773b886d9118"
sha256 cellar: :any_skip_relocation, arm64_linux: "4a81b2109237ebf34c2e5514f974b4a2711e5a852f17826c50a8dfbc006e45d2"
sha256 cellar: :any_skip_relocation, x86_64_linux: "6aca7ed0c4b00c241e15ccfde86a134d7d775a1a94f7327d3ac2bab799d5af23"
sha256 cellar: :any_skip_relocation, arm64_tahoe: "9942b02f88dcf12545b44ecfef3a29a9deb5db4dc2c01494534e00a54d123894"
sha256 cellar: :any_skip_relocation, arm64_sequoia: "3cf56a3f00af69596aa4d48260f8aa94337268d2c1e9572f688eb5db82572384"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "c33927e00edebdf4e5181ac88d4fd7a40de8c6f91672d25854c2e57b87814d69"
sha256 cellar: :any_skip_relocation, sonoma: "21713748331a18a52f2190d7c34327f2a27dc86be27f46ce554dce430fe8aca5"
sha256 cellar: :any_skip_relocation, arm64_linux: "6ee569d4d05b5a880f9b508cbe7849427ae3851522517b094fa5c1cf324c8477"
sha256 cellar: :any_skip_relocation, x86_64_linux: "e7d5a210645a270884ba33ed343a8f68b02f572dac87045d080404ae55209f50"
end

depends_on "go" => :build
depends_on "etcd"

# Support Go 1.26 and later with Swiss maps always enabled
# Upstream PR ref: https://github.com/vitessio/vitess/pull/19088
patch do
url "https://github.com/vitessio/vitess/commit/1e131ea41b87a047acff3b1977d9fece8e25bfff.patch?full_index=1"
sha256 "6dd13ffbde947a2c0d426c5a6361e3f0f708c9fc1bd1df7b000ad06fa8644a9c"
end

def install
# -buildvcs=false needed for build to succeed on Go 1.18.
# It can be removed when this is no longer the case.
Expand Down
Loading