-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the version to 2.21.0.0 (#80)
Co-authored-by: YugaByte CI <[email protected]>
- Loading branch information
1 parent
7a04f79
commit cbdf900
Showing
3 changed files
with
32 additions
and
3 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
class Yugabytedb < Formula | ||
desc "High-performance distributed SQL database Yugabyte DB" | ||
homepage "https://www.yugabyte.com/" | ||
url "https://downloads.yugabyte.com/releases/2.20.2.0/yugabyte-2.20.2.0-b145-darwin-x86_64.tar.gz" | ||
version "2.20.2.0" | ||
sha256 "f8d9c8bb8ae6e5b90de0f8b40930d7d831c062ba9dc34b56bb0234064bd765a7" | ||
url "https://downloads.yugabyte.com/releases/2.21.0.0/yugabyte-2.21.0.0-b545-darwin-x86_64.tar.gz" | ||
version "2.21.0.0" | ||
sha256 "1d51814d0fe458c205fd543084563fca868db028f0ae271be312356c9084ca2b" | ||
license "Apache-2.0" | ||
|
||
depends_on "[email protected]" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
class YugabytedbAT220 < Formula | ||
desc "High-performance distributed SQL database Yugabyte DB" | ||
homepage "https://www.yugabyte.com/" | ||
url "https://downloads.yugabyte.com/releases/2.20.2.0/yugabyte-2.20.2.0-b145-darwin-x86_64.tar.gz" | ||
version "2.20.2.0" | ||
sha256 "f8d9c8bb8ae6e5b90de0f8b40930d7d831c062ba9dc34b56bb0234064bd765a7" | ||
license "Apache-2.0" | ||
|
||
keg_only :versioned_formula | ||
|
||
depends_on "[email protected]" | ||
|
||
def install | ||
ENV.deparallelize | ||
|
||
libexec.install Dir["*"] | ||
inreplace "#{libexec}/bin/yugabyted", "#!/usr/bin/env python", "#!/usr/bin/env python3" | ||
|
||
bin.install_symlink libexec/"bin/yugabyted" | ||
ysqlsh_symlink = "#{HOMEBREW_PREFIX}/bin/ysqlsh" | ||
ycqlsh_symlink = "#{HOMEBREW_PREFIX}/bin/ycqlsh" | ||
bin.install_symlink libexec/"postgres/bin/ysqlsh" unless File.exist?(ysqlsh_symlink) | ||
bin.install_symlink libexec/"bin/ycqlsh" unless File.exist?(ycqlsh_symlink) | ||
end | ||
|
||
test do | ||
system "#{bin}/yugabyted", "version" | ||
end | ||
end |