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
20 changes: 9 additions & 11 deletions Formula/r/redress.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Redress < Formula
desc "Tool for analyzing stripped Go binaries compiled with the Go compiler"
homepage "https://github.com/goretk/redress"
url "https://github.com/goretk/redress/archive/refs/tags/v1.2.43.tar.gz"
sha256 "4c817f24c151ff9ab8c9f8bbe2ae8ac75ed3a26955806ccc2dbebe5e2dcc8dcd"
url "https://github.com/goretk/redress/archive/refs/tags/v1.2.44.tar.gz"
sha256 "26c60c539136e2f2a72ac1f28000e7139a8aa1536484b887fa2f7d1fb3a5de2b"
license "AGPL-3.0-only"
head "https://github.com/goretk/redress.git", branch: "develop"

Expand All @@ -12,12 +12,12 @@ class Redress < Formula
end

bottle do
sha256 cellar: :any_skip_relocation, arm64_tahoe: "f6ca3ca00cbf90c85ba7aad0b53f43b9e5e43cb1e3d0d9a3122832b924e6b366"
sha256 cellar: :any_skip_relocation, arm64_sequoia: "f6ca3ca00cbf90c85ba7aad0b53f43b9e5e43cb1e3d0d9a3122832b924e6b366"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "f6ca3ca00cbf90c85ba7aad0b53f43b9e5e43cb1e3d0d9a3122832b924e6b366"
sha256 cellar: :any_skip_relocation, sonoma: "aa302d9a800bf3ae15582c0dc3c4852d4c914b3f2e2c2a79629fc11987585dd4"
sha256 cellar: :any_skip_relocation, arm64_linux: "4378d7427f9fa8f96869dc78365e31dd731c045dcd6124d5b4c3b4cb00b09043"
sha256 cellar: :any_skip_relocation, x86_64_linux: "984da666e9c01a661ce3347e36821b76c5af5f8477c4f68c0acfc00988c1daa0"
sha256 cellar: :any_skip_relocation, arm64_tahoe: "f80c59da129fbf375706ae12f0d65ed80b3401bd424cc8325d2ceacc7c3788a4"
sha256 cellar: :any_skip_relocation, arm64_sequoia: "c7bfa3f06c627240bde3361d0ddfe9eb5afa9bed49207600e71c378fab1035f6"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "9ca5439892fb8b3c8d171c589064a28ebd5cecc2c17abb48b851fa12b504c9d2"
sha256 cellar: :any_skip_relocation, sonoma: "d4192215a1ff09343179587184e48062d6e8a7be0e32c58c08cedf10fed9edb6"
sha256 cellar: :any_skip_relocation, arm64_linux: "566dfb9a8b88d06d3b45d1147ec689c182b57cd215a2ee83e779c7e2a4b562f0"
sha256 cellar: :any_skip_relocation, x86_64_linux: "631e26919fdd7fe07def25a2e1d267d732dbadb8039e6c797eee6805628559a5"
end

depends_on "go" => :build
Expand All @@ -41,10 +41,8 @@ def install
test do
assert_match "Version: #{version}", shell_output("#{bin}/redress version")

test_module_root = "github.com/goretk/redress"
test_bin_path = bin/"redress"

output = shell_output("#{bin}/redress info '#{test_bin_path}'")
assert_match(/Main root\s+#{Regexp.escape(test_module_root)}/, output)
assert_match "Build ID", output
end
end
Loading