From 9cd15a0164c5a5bb85beb037f6e00a6710f009c2 Mon Sep 17 00:00:00 2001 From: developer <197779235+isburnt@users.noreply.github.com> Date: Tue, 6 May 2025 20:13:04 +0000 Subject: [PATCH] xiond-v18.0.1 --- Formula/xiond.rb | 40 ++++++++++++++++----------------- Formula/xiond@18.0.1.rb | 50 +++++++++++++++++++++++++++++++++++++++++ Formula/xiond@18.rb | 40 ++++++++++++++++----------------- 3 files changed, 88 insertions(+), 42 deletions(-) create mode 100644 Formula/xiond@18.0.1.rb diff --git a/Formula/xiond.rb b/Formula/xiond.rb index ee2ad65..6a76cfb 100644 --- a/Formula/xiond.rb +++ b/Formula/xiond.rb @@ -5,21 +5,21 @@ class Xiond < Formula desc "Xiond is the Cosmos SDK based blockchain cli/daemon for the Xion Network." homepage "https://xion.burnt.com/" - version "18.0.0" + version "18.0.1" license "Apache2.0" on_macos do if Hardware::CPU.intel? - url "https://github.com/burnt-labs/xion/releases/download/v18.0.0/xiond_18.0.0_darwin_amd64.zip" - sha256 "bf8fa7743d7aab33396d9122ab3817224d41bbbcf410424c993b1d25911faee6" + url "https://github.com/burnt-labs/xion/releases/download/v18.0.1/xiond_18.0.1_darwin_amd64.tar.gz" + sha256 "e1d0bde096c0bd560d816e09d615fc281cce9d6f504420990672c01288d75a02" def install bin.install "xiond" end end if Hardware::CPU.arm? - url "https://github.com/burnt-labs/xion/releases/download/v18.0.0/xiond_18.0.0_darwin_arm64.zip" - sha256 "1f8799dc21ff348ca71e25864e12b1b07c2d9be66359eab9c420887178403d9d" + url "https://github.com/burnt-labs/xion/releases/download/v18.0.1/xiond_18.0.1_darwin_arm64.tar.gz" + sha256 "ea073b1d58c1a226df34b69be6c98800d3a8cd9a97771ebc1d45fdce8d96cf5c" def install bin.install "xiond" @@ -28,25 +28,23 @@ def install end on_linux do - if Hardware::CPU.intel? - if Hardware::CPU.is_64_bit? - url "https://github.com/burnt-labs/xion/releases/download/v18.0.0/xiond_18.0.0_linux_amd64.zip" - sha256 "361ff8194f0f2601fd8a0759eb218b27d62d236618ca7c623481c64ec7c85a8c" - - def install - bin.install "xiond" - end + if Hardware::CPU.intel? and Hardware::CPU.is_64_bit? + url "https://github.com/burnt-labs/xion/releases/download/v18.0.1/xiond_18.0.1_linux_amd64.tar.gz" + sha256 "2f8b93ad016b8960234fd2fc3eb365b212517c59c19edb1ff5d964d3d5588e26" + def install + bin.install "xiond" end end - if Hardware::CPU.arm? - if Hardware::CPU.is_64_bit? - url "https://github.com/burnt-labs/xion/releases/download/v18.0.0/xiond_18.0.0_linux_arm64.zip" - sha256 "1f49577bd44ea2a4072d88e6934e124d44594489b76d33922c4a8803db08303c" - - def install - bin.install "xiond" - end + if Hardware::CPU.arm? and Hardware::CPU.is_64_bit? + url "https://github.com/burnt-labs/xion/releases/download/v18.0.1/xiond_18.0.1_linux_arm64.tar.gz" + sha256 "b48a77972e23a459b7d1ac48e2315e3646332c4d520a8ca0364ba7c3d4aef8f2" + def install + bin.install "xiond" end end end + + test do + system "#{bin}/xiond version" + end end diff --git a/Formula/xiond@18.0.1.rb b/Formula/xiond@18.0.1.rb new file mode 100644 index 0000000..3bcc76b --- /dev/null +++ b/Formula/xiond@18.0.1.rb @@ -0,0 +1,50 @@ +# typed: false +# frozen_string_literal: true + +# This file was generated by GoReleaser. DO NOT EDIT. +class XiondAT1801 < Formula + desc "Xiond is the Cosmos SDK based blockchain cli/daemon for the Xion Network." + homepage "https://xion.burnt.com/" + version "18.0.1" + license "Apache2.0" + + on_macos do + if Hardware::CPU.intel? + url "https://github.com/burnt-labs/xion/releases/download/v18.0.1/xiond_18.0.1_darwin_amd64.tar.gz" + sha256 "e1d0bde096c0bd560d816e09d615fc281cce9d6f504420990672c01288d75a02" + + def install + bin.install "xiond" + end + end + if Hardware::CPU.arm? + url "https://github.com/burnt-labs/xion/releases/download/v18.0.1/xiond_18.0.1_darwin_arm64.tar.gz" + sha256 "ea073b1d58c1a226df34b69be6c98800d3a8cd9a97771ebc1d45fdce8d96cf5c" + + def install + bin.install "xiond" + end + end + end + + on_linux do + if Hardware::CPU.intel? and Hardware::CPU.is_64_bit? + url "https://github.com/burnt-labs/xion/releases/download/v18.0.1/xiond_18.0.1_linux_amd64.tar.gz" + sha256 "2f8b93ad016b8960234fd2fc3eb365b212517c59c19edb1ff5d964d3d5588e26" + def install + bin.install "xiond" + end + end + if Hardware::CPU.arm? and Hardware::CPU.is_64_bit? + url "https://github.com/burnt-labs/xion/releases/download/v18.0.1/xiond_18.0.1_linux_arm64.tar.gz" + sha256 "b48a77972e23a459b7d1ac48e2315e3646332c4d520a8ca0364ba7c3d4aef8f2" + def install + bin.install "xiond" + end + end + end + + test do + system "#{bin}/xiond version" + end +end diff --git a/Formula/xiond@18.rb b/Formula/xiond@18.rb index a4be9b5..cb6be74 100644 --- a/Formula/xiond@18.rb +++ b/Formula/xiond@18.rb @@ -5,21 +5,21 @@ class XiondAT18 < Formula desc "Xiond is the Cosmos SDK based blockchain cli/daemon for the Xion Network." homepage "https://xion.burnt.com/" - version "18.0.0" + version "18.0.1" license "Apache2.0" on_macos do if Hardware::CPU.intel? - url "https://github.com/burnt-labs/xion/releases/download/v18.0.0/xiond_18.0.0_darwin_amd64.zip", using: :homebrew_curl - sha256 "bf8fa7743d7aab33396d9122ab3817224d41bbbcf410424c993b1d25911faee6" + url "https://github.com/burnt-labs/xion/releases/download/v18.0.1/xiond_18.0.1_darwin_amd64.tar.gz" + sha256 "e1d0bde096c0bd560d816e09d615fc281cce9d6f504420990672c01288d75a02" def install bin.install "xiond" end end if Hardware::CPU.arm? - url "https://github.com/burnt-labs/xion/releases/download/v18.0.0/xiond_18.0.0_darwin_arm64.zip", using: :homebrew_curl - sha256 "1f8799dc21ff348ca71e25864e12b1b07c2d9be66359eab9c420887178403d9d" + url "https://github.com/burnt-labs/xion/releases/download/v18.0.1/xiond_18.0.1_darwin_arm64.tar.gz" + sha256 "ea073b1d58c1a226df34b69be6c98800d3a8cd9a97771ebc1d45fdce8d96cf5c" def install bin.install "xiond" @@ -28,25 +28,23 @@ def install end on_linux do - if Hardware::CPU.intel? - if Hardware::CPU.is_64_bit? - url "https://github.com/burnt-labs/xion/releases/download/v18.0.0/xiond_18.0.0_linux_amd64.zip", using: :homebrew_curl - sha256 "361ff8194f0f2601fd8a0759eb218b27d62d236618ca7c623481c64ec7c85a8c" - - def install - bin.install "xiond" - end + if Hardware::CPU.intel? and Hardware::CPU.is_64_bit? + url "https://github.com/burnt-labs/xion/releases/download/v18.0.1/xiond_18.0.1_linux_amd64.tar.gz" + sha256 "2f8b93ad016b8960234fd2fc3eb365b212517c59c19edb1ff5d964d3d5588e26" + def install + bin.install "xiond" end end - if Hardware::CPU.arm? - if Hardware::CPU.is_64_bit? - url "https://github.com/burnt-labs/xion/releases/download/v18.0.0/xiond_18.0.0_linux_arm64.zip", using: :homebrew_curl - sha256 "1f49577bd44ea2a4072d88e6934e124d44594489b76d33922c4a8803db08303c" - - def install - bin.install "xiond" - end + if Hardware::CPU.arm? and Hardware::CPU.is_64_bit? + url "https://github.com/burnt-labs/xion/releases/download/v18.0.1/xiond_18.0.1_linux_arm64.tar.gz" + sha256 "b48a77972e23a459b7d1ac48e2315e3646332c4d520a8ca0364ba7c3d4aef8f2" + def install + bin.install "xiond" end end end + + test do + system "#{bin}/xiond version" + end end