Skip to content

Commit 3462a1c

Browse files
2xburntisburnt
andauthored
Brew formula update for xiond version v20.0.0 (#34)
* xiond-v20.0.0 * keep v19.0.2 as default --------- Co-authored-by: developer <[email protected]>
1 parent 95381ae commit 3462a1c

File tree

2 files changed

+100
-0
lines changed

2 files changed

+100
-0
lines changed

Formula/[email protected]

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# typed: false
2+
# frozen_string_literal: true
3+
4+
# This file was generated by GoReleaser. DO NOT EDIT.
5+
class XiondAT2000 < Formula
6+
desc "Xiond is the Cosmos SDK based blockchain cli/daemon for the Xion Network."
7+
homepage "https://xion.burnt.com/"
8+
version "20.0.0"
9+
license "Apache2.0"
10+
11+
on_macos do
12+
if Hardware::CPU.intel?
13+
url "https://github.com/burnt-labs/xion/releases/download/v20.0.0/xiond_20.0.0_darwin_amd64.tar.gz"
14+
sha256 "7476525f27194809a45e920bc6f7e934e64fdc58ab29007fe1f502c6cfc10265"
15+
16+
def install
17+
bin.install "xiond"
18+
end
19+
end
20+
if Hardware::CPU.arm?
21+
url "https://github.com/burnt-labs/xion/releases/download/v20.0.0/xiond_20.0.0_darwin_arm64.tar.gz"
22+
sha256 "75ed3db62375fe0acddf72f72c2a9f7d4a70ddba2d4480bc08032caccd09a8eb"
23+
24+
def install
25+
bin.install "xiond"
26+
end
27+
end
28+
end
29+
30+
on_linux do
31+
if Hardware::CPU.intel? and Hardware::CPU.is_64_bit?
32+
url "https://github.com/burnt-labs/xion/releases/download/v20.0.0/xiond_20.0.0_linux_amd64.tar.gz"
33+
sha256 "a7a63a81e6a8095aa532e58f79b98164a7fbdffd0d0f6c98250880dc1c061a0b"
34+
def install
35+
bin.install "xiond"
36+
end
37+
end
38+
if Hardware::CPU.arm? and Hardware::CPU.is_64_bit?
39+
url "https://github.com/burnt-labs/xion/releases/download/v20.0.0/xiond_20.0.0_linux_arm64.tar.gz"
40+
sha256 "4c452a48078687b45b95710ccbe506b0e4cb186329b0bac243d3721a624a1001"
41+
def install
42+
bin.install "xiond"
43+
end
44+
end
45+
end
46+
47+
test do
48+
system "#{bin}/xiond version"
49+
end
50+
end

Formula/[email protected]

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# typed: false
2+
# frozen_string_literal: true
3+
4+
# This file was generated by GoReleaser. DO NOT EDIT.
5+
class XiondAT20 < Formula
6+
desc "Xiond is the Cosmos SDK based blockchain cli/daemon for the Xion Network."
7+
homepage "https://xion.burnt.com/"
8+
version "20.0.0"
9+
license "Apache2.0"
10+
11+
on_macos do
12+
if Hardware::CPU.intel?
13+
url "https://github.com/burnt-labs/xion/releases/download/v20.0.0/xiond_20.0.0_darwin_amd64.tar.gz"
14+
sha256 "7476525f27194809a45e920bc6f7e934e64fdc58ab29007fe1f502c6cfc10265"
15+
16+
def install
17+
bin.install "xiond"
18+
end
19+
end
20+
if Hardware::CPU.arm?
21+
url "https://github.com/burnt-labs/xion/releases/download/v20.0.0/xiond_20.0.0_darwin_arm64.tar.gz"
22+
sha256 "75ed3db62375fe0acddf72f72c2a9f7d4a70ddba2d4480bc08032caccd09a8eb"
23+
24+
def install
25+
bin.install "xiond"
26+
end
27+
end
28+
end
29+
30+
on_linux do
31+
if Hardware::CPU.intel? and Hardware::CPU.is_64_bit?
32+
url "https://github.com/burnt-labs/xion/releases/download/v20.0.0/xiond_20.0.0_linux_amd64.tar.gz"
33+
sha256 "a7a63a81e6a8095aa532e58f79b98164a7fbdffd0d0f6c98250880dc1c061a0b"
34+
def install
35+
bin.install "xiond"
36+
end
37+
end
38+
if Hardware::CPU.arm? and Hardware::CPU.is_64_bit?
39+
url "https://github.com/burnt-labs/xion/releases/download/v20.0.0/xiond_20.0.0_linux_arm64.tar.gz"
40+
sha256 "4c452a48078687b45b95710ccbe506b0e4cb186329b0bac243d3721a624a1001"
41+
def install
42+
bin.install "xiond"
43+
end
44+
end
45+
end
46+
47+
test do
48+
system "#{bin}/xiond version"
49+
end
50+
end

0 commit comments

Comments
 (0)