Skip to content

Commit

Permalink
Merge pull request #205267 from Homebrew/bump-toast-0.47.7
Browse files Browse the repository at this point in the history
toast 0.47.7
  • Loading branch information
BrewTestBot authored Jan 23, 2025
2 parents 5ad0cbe + f4d8148 commit 1d923d2
Showing 1 changed file with 8 additions and 31 deletions.
39 changes: 8 additions & 31 deletions Formula/t/toast.rb
Original file line number Diff line number Diff line change
@@ -1,26 +1,18 @@
class Toast < Formula
desc "Tool for running tasks in containers"
homepage "https://github.com/stepchowfun/toast"
url "https://github.com/stepchowfun/toast/archive/refs/tags/v0.47.7.tar.gz"
sha256 "532a883c0e96ab274c25e3256ad532e525fd2d5e393ebd4712e591de64a2f7c9"
license "MIT"
head "https://github.com/stepchowfun/toast.git", branch: "main"

stable do
url "https://github.com/stepchowfun/toast/archive/refs/tags/v0.47.6.tar.gz"
sha256 "6cda205ec551232106a05a94b6a71d9eb90e4d3bf1541e629062c65257aa3e6a"

# eliminate needless lifetimes, upstream pr ref, https://github.com/stepchowfun/toast/pull/524
patch :DATA
end

bottle do
sha256 cellar: :any_skip_relocation, arm64_sequoia: "32d64e56a321339f6c83f3df40c5078da1b9327bdda1db3c96a1f0d59fb2cb27"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "e1dad05bd1a76d6196771c60a29cc3c2256daa2aefd8d0876f24456e5d53a920"
sha256 cellar: :any_skip_relocation, arm64_ventura: "c7fa6a46b5891777ee8e5b5bb1b89aaf35a5cdad3f21baeea98e80f7aa699a1c"
sha256 cellar: :any_skip_relocation, arm64_monterey: "58486cde44a6b9b49599967271149cff9530b74993ba06246fbbd98bb5c362e9"
sha256 cellar: :any_skip_relocation, sonoma: "6aa32d3bc36d78e0570fa12f27bc9f24feb78be4437660f5b1a8fddaf8316e52"
sha256 cellar: :any_skip_relocation, ventura: "6dc351063917baeec69ae6539b015e6fb3bd51b9af8454b8c9a5284cb386108f"
sha256 cellar: :any_skip_relocation, monterey: "eaff6a30895ff96444a5f3d05d3f12c2607529787a826318464eb26e04ae6186"
sha256 cellar: :any_skip_relocation, x86_64_linux: "8c887eab22ace4352a4aac26714c2f2df9a3eea079f724f2748c3482c425bad3"
sha256 cellar: :any_skip_relocation, arm64_sequoia: "a3f558594467882fba23da8e01983eac6efd36eb830be012f702967b3caf4fb3"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "ce42343f3cc19695a755e28e579cc7937ac70a7ec7e35dc5d0c2cc39e71264ed"
sha256 cellar: :any_skip_relocation, arm64_ventura: "8d5dffeed5b421ec1253333fe7e621cc590cf8606d2880400d6500a577e03b2c"
sha256 cellar: :any_skip_relocation, sonoma: "b2a20c9c83d5f0bbef1ae0b0157f7a2adfcdce1251e649c53c78295123352604"
sha256 cellar: :any_skip_relocation, ventura: "2361a75dc4e6f9bbc4ee54b983b5575f5ad60b50dc941702274d8f163afbd0e0"
sha256 cellar: :any_skip_relocation, x86_64_linux: "0ed0686a150d2936eb37bb83197d2e55088533f73af946df1261a58ced8cddc6"
end

depends_on "rust" => :build
Expand All @@ -43,18 +35,3 @@ def install
assert_match "homebrew_test", shell_output("#{bin}/toast --list")
end
end

__END__
diff --git a/src/failure.rs b/src/failure.rs
index bb01653..05ab70b 100644
--- a/src/failure.rs
+++ b/src/failure.rs
@@ -24,7 +24,7 @@ impl fmt::Display for Failure {
}

impl error::Error for Failure {
- fn source<'a>(&'a self) -> Option<&(dyn error::Error + 'static)> {
+ fn source(&self) -> Option<&(dyn error::Error + 'static)> {
match self {
Self::System(_, source) => source.as_ref().map(|e| &**e),
Self::User(_, source) => source.as_ref().map(|e| &**e),

0 comments on commit 1d923d2

Please sign in to comment.