Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cake 4.1.0 #195372

Merged
merged 2 commits into from
Oct 24, 2024
Merged

cake 4.1.0 #195372

Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .github/autobump.txt
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,7 @@ cadical
caf
cahute
caire
cake
calc
calceph
calcurse
Expand Down
29 changes: 11 additions & 18 deletions Formula/c/cake.rb
Original file line number Diff line number Diff line change
@@ -1,34 +1,27 @@
class Cake < Formula
desc "Cross platform build automation system with a C# DSL"
homepage "https://cakebuild.net/"
url "https://github.com/cake-build/cake/archive/refs/tags/v4.0.0.tar.gz"
sha256 "ea45d7a69f7bc373bd4d38ed708632a4ff7365d36cb9a85c40a107e6a7ae2c1b"
url "https://github.com/cake-build/cake/archive/refs/tags/v4.1.0.tar.gz"
sha256 "2f666eb901a9e0ec0155fe724876008cae94c542939c5ae989bbd8dcad93949b"
license "MIT"

bottle do
rebuild 1
sha256 cellar: :any_skip_relocation, arm64_sequoia: "be043f0290cd7508b8a1f72825935e6a100f37420e94b0bff157346c7bc7f7e2"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "b05bd41b2a72ef0fedec5de35c41480cacb08b5053793ff1d14bd498ffaa4e7f"
sha256 cellar: :any_skip_relocation, arm64_ventura: "c3ffdc8ec23170142eb6a216296b0af43127a892c3cbb7625f8e1868395d6acd"
sha256 cellar: :any_skip_relocation, sonoma: "2e5a760d11a3f3b3f7c1ced811373b923c2ef949f75885b726cdaae67df4a3ca"
sha256 cellar: :any_skip_relocation, ventura: "f398a348812759267b3b4d1c90ef6bc039581c230d36eab43bc3f276d5c305ae"
sha256 cellar: :any_skip_relocation, x86_64_linux: "7ddcc0abbe06c9376e57ff0061c16f678bfae3e3c2ede7e9ec7c805ec6131fd7"
sha256 cellar: :any_skip_relocation, arm64_sequoia: "e0b6ad7175592178cd9da91e6eb975406a22503a461a7be568cfcd36395a8f2b"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "aded32dad864830b9d2b7db4afecbf5341c855c493736fc4d520f49d79cc7867"
sha256 cellar: :any_skip_relocation, arm64_ventura: "215bfc89fc5c4340e95824b89c16dd71a71a2af254ac9c387b75c0438c572c04"
sha256 cellar: :any_skip_relocation, sonoma: "3ade41f100b6da79f893eaa540d4e3f5495f3634849122a83e8dc681ded0c759"
sha256 cellar: :any_skip_relocation, ventura: "c91feb31bcd9d61e972275ce7c94c0cf624d861aa910756f5029379004ba6dd3"
sha256 cellar: :any_skip_relocation, x86_64_linux: "d25deaf9effa68fc5eaba34fb7c2f5bd6eca39812f5e1098aa0714f6cf39ee55"
end

depends_on "dotnet"

conflicts_with "coffeescript", because: "both install `cake` binaries"

# Backport NuGet 6.7.0 -> 6.9.0 update to fix build failure:
# error NU1904: Warning As Error: Package 'NuGet.Packaging' 6.7.0 has a known
# critical severity vulnerability, https://github.com/advisories/GHSA-68w7-72jg-6qpp
# dotnet sdk version requirement patch, upstream pr ref, https://github.com/cake-build/cake/pull/4377
patch do
url "https://github.com/cake-build/cake/commit/3e1841de021614504ccf9b96816421f943122726.patch?full_index=1"
sha256 "bf3feeb71b577273ac8e69dbf38c9b9bdffa9b89e091d3a432192a5dec428941"
end
patch do
url "https://github.com/cake-build/cake/commit/c72f1d2f429c641dbfdbae843defcab31f22e959.patch?full_index=1"
sha256 "fd96a28c82b7dd404c7731fe69bcae75a863367dbfada9f0aa8e5af39d3a6491"
url "https://github.com/cake-build/cake/commit/92193becffb09dce10fda010a0de03f941919739.patch?full_index=1"
sha256 "257220fb97858bd80c561be5d342c33eb21709cc76efefe9f8a0a3703e1cc329"
end

def install
Expand Down
Loading