-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated stable channel to version 3.5.4
- Loading branch information
Dart CI
committed
Oct 17, 2024
1 parent
f052a33
commit 6ef088c
Showing
3 changed files
with
68 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
../Formula/[email protected].3.rb | ||
../Formula/[email protected].4.rb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# typed: false | ||
# frozen_string_literal: true | ||
|
||
class DartAT354 < Formula | ||
desc "SDK" | ||
homepage "https://dart.dev" | ||
|
||
keg_only :versioned_formula | ||
if OS.mac? && Hardware::CPU.intel? | ||
url "https://storage.googleapis.com/dart-archive/channels/stable/release/3.5.4/sdk/dartsdk-macos-x64-release.zip" | ||
sha256 "b06db3f3d0e92af0939ca467e87ecababa96da4f9fe5031a788304b5df949374" | ||
elsif OS.mac? && Hardware::CPU.arm? | ||
url "https://storage.googleapis.com/dart-archive/channels/stable/release/3.5.4/sdk/dartsdk-macos-arm64-release.zip" | ||
sha256 "c045940e0f5d4caca74e6ebed5a3bf9953383e831bac138e568a60d8b5053c02" | ||
elsif OS.linux? && Hardware::CPU.intel? | ||
if Hardware::CPU.is_64_bit? | ||
url "https://storage.googleapis.com/dart-archive/channels/stable/release/3.5.4/sdk/dartsdk-linux-x64-release.zip" | ||
sha256 "8d0c5e34f2a9d6b9f5ebf05252ae1703893f6087d547c631b390aef2d0cd6967" | ||
else | ||
url "https://storage.googleapis.com/dart-archive/channels/stable/release/3.5.4/sdk/dartsdk-linux-ia32-release.zip" | ||
sha256 "2f90a98cfd45427555b06aac813f70573ed5882a512c3f2cf1e732ae53087b0a" | ||
end | ||
elsif OS.linux? && Hardware::CPU.arm? | ||
if Hardware::CPU.is_64_bit? | ||
url "https://storage.googleapis.com/dart-archive/channels/stable/release/3.5.4/sdk/dartsdk-linux-arm64-release.zip" | ||
sha256 "a91d64dd3173349cee58c82f5ebf18bb9670f65eecc26d5684124c3def3f83ec" | ||
else | ||
url "https://storage.googleapis.com/dart-archive/channels/stable/release/3.5.4/sdk/dartsdk-linux-arm-release.zip" | ||
sha256 "f56d635ae4119f78ed887eaf8fb5e7821405fc10816d8ef42d3a9105c7ffb1f4" | ||
end | ||
end | ||
|
||
def install | ||
libexec.install Dir["*"] | ||
bin.install_symlink "#{libexec}/bin/dart" | ||
bin.write_exec_script Dir["#{libexec}/bin/{pub,dart?*}"] | ||
end | ||
|
||
def caveats | ||
<<~EOS | ||
Please note the path to the Dart SDK: | ||
#{opt_libexec} | ||
EOS | ||
end | ||
|
||
test do | ||
(testpath/"sample.dart").write <<~EOS | ||
void main() { | ||
print(r"test message"); | ||
} | ||
EOS | ||
|
||
assert_equal "test message\n", shell_output("#{bin}/dart sample.dart") | ||
end | ||
end |