Skip to content
Merged
Changes from 1 commit
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
12 changes: 9 additions & 3 deletions Formula/a/adios2.rb
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
class Adios2 < Formula
desc "Next generation of ADIOS developed in the Exascale Computing Program"
homepage "https://adios2.readthedocs.io"
url "https://github.com/ornladios/ADIOS2/archive/refs/tags/v2.10.2.tar.gz"
sha256 "14cf0bcd94772194bce0f2c0e74dba187965d1cffd12d45f801c32929158579e"
url "https://github.com/ornladios/ADIOS2/archive/refs/tags/v2.11.0.tar.gz"
sha256 "0a2bd745e3f39745f07587e4a5f92d72f12fa0e2be305e7957bdceda03735dbf"
license "Apache-2.0"
revision 1
head "https://github.com/ornladios/ADIOS2.git", branch: "master"

livecheck do
Expand Down Expand Up @@ -32,6 +31,7 @@ class Adios2 < Formula
depends_on "mpi4py"
depends_on "numpy"
depends_on "open-mpi"
depends_on "openssl@3"
depends_on "pugixml"
depends_on "python@3.14"
depends_on "sqlite"
Expand All @@ -52,6 +52,12 @@ class Adios2 < Formula
# Apple clang version 14.0.0 (clang-1400.0.29.202)
fails_with :clang if DevelopmentTools.clang_build_version == 1400

# Upstream PR: https://github.com/ornladios/ADIOS2/pull/4791
patch do
url "https://github.com/ornladios/ADIOS2/commit/1dcffdf15a90282549ce679e96ac59f35e93acde.patch?full_index=1"
Comment thread
vicentebolea marked this conversation as resolved.
sha256 "1133316f038abed99824d00584b70454122083cf0e2717a1322511b91a14c4dd"
end

def python3
"python3.14"
end
Expand Down
Loading