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

emscripten 4.0.1 #204558

Merged
merged 2 commits into from
Jan 17, 2025
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
22 changes: 11 additions & 11 deletions Formula/e/emscripten.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ class Emscripten < Formula
homepage "https://emscripten.org/"
# To automate fetching the required resource revisions, you can use this helper script:
# https://gist.github.com/carlocab/2db1d7245fa0cd3e92e01fe37b164021
url "https://github.com/emscripten-core/emscripten/archive/refs/tags/4.0.0.tar.gz"
sha256 "43c4bba08c6e9d588c0d8f580f54026eb5487e3d7aeec6ec6c755af347dc9bab"
url "https://github.com/emscripten-core/emscripten/archive/refs/tags/4.0.1.tar.gz"
sha256 "bf0d1cba7b05f0eb4814d2278a11ed9c8f1b9724f848c61d63193079d10dd9a7"
license all_of: [
"Apache-2.0", # binaryen
"Apache-2.0" => { with: "LLVM-exception" }, # llvm
Expand All @@ -18,12 +18,12 @@ class Emscripten < Formula
end

bottle do
sha256 cellar: :any, arm64_sequoia: "d9c4a520f9c0897a553a460d2e7e46fd9bb1af3ef7251dba3723ec038f2c5723"
sha256 cellar: :any, arm64_sonoma: "dc1b56ee3857f300d73a229276f849c45e8cca915d1d2a65e62fc7ac596849fd"
sha256 cellar: :any, arm64_ventura: "e90a692acabff2726d9513179fada35b3ca79c6f70bf1b3ade29f37aa972d412"
sha256 cellar: :any, sonoma: "9df59a0e4e166176270ce8d0b7d3bf722d249ab7c7fce6840067a579ee3d6cea"
sha256 cellar: :any, ventura: "4ece0c806be2a4bea27421f56bbd8394bdff507085735bcdd8ba1282043f00c6"
sha256 cellar: :any_skip_relocation, x86_64_linux: "0efbe2a36295cb39ed69ef36cedff31e56f44667b65daba22cfab8f76376b6f0"
sha256 cellar: :any, arm64_sequoia: "b3dfe758865342c2d0e36c7deeeb06dc5c437c63f3a2671f321ad1e2a932775a"
sha256 cellar: :any, arm64_sonoma: "d3083a7fb4f1d309dbb2abe6dccca479e98280303c5a5b15f7eebefedd9e4b8b"
sha256 cellar: :any, arm64_ventura: "1efb5436cc88243829631028e2bca160d90857e7e9812b83f710261f047371e2"
sha256 cellar: :any, sonoma: "5c0f3b5e3ded0336ada62eae10803d348622ad9f5d66e37500c388f40b6d67d1"
sha256 cellar: :any, ventura: "a0b7f1a491ff1223763eeb1e51956b3aa86320f7ca3ec18902b9f374814239f1"
sha256 cellar: :any_skip_relocation, x86_64_linux: "f672f4f602d8a6507ce7d3649a870b1bc5c10738e11b661d88dcadcd11569f0d"
end

depends_on "cmake" => :build
Expand Down Expand Up @@ -64,16 +64,16 @@ class Emscripten < Formula
# Then use the listed binaryen_revision for the revision below.
resource "binaryen" do
url "https://github.com/WebAssembly/binaryen.git",
revision: "63be8c0fe9ae9a63c91f5bf3b0f8d6c2446620b2"
revision: "e4bfcd2a06db0640bfbf1654f575239ecab72443"
end

# emscripten does not support using the stable version of LLVM.
# https://github.com/emscripten-core/emscripten/issues/11362
# See binaryen resource above for instructions on how to update this.
# Then use the listed llvm_project_revision for the tarball below.
resource "llvm" do
url "https://github.com/llvm/llvm-project/archive/322eb1a92e6d4266184060346616fa0dbe39e731.tar.gz"
sha256 "528b7a7324343a3241ec211c5fb2c3c0fa56208107969f7deb4e9462bccd25a4"
url "https://github.com/llvm/llvm-project/archive/a32e36faf84bd7da3df0c7d50bb9020568128417.tar.gz"
sha256 "ef59e10e9df3aa5eb4152871c170be719469e691951c52b310cd0185b7fbde7b"
end

def install
Expand Down
Loading