Skip to content
Merged
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# Installing ResInsight and OPM Flow with support for mpirun in macOS using brew

This repository uses [_brew_](https://brew.sh) to build [_ResInsight_](https://resinsight.org) (v2025.12.0) and [_OPM Flow_](https://opm-project.org/?page_id=19) (v2026.02) in macOS Tahoe in GitHub Actions, showing the status and details of the build in the [_Actions_](https://github.com/cssr-tools/homebrew-opm/actions).
This repository uses [_brew_](https://brew.sh) to build [_ResInsight_](https://resinsight.org) (v2025.12.0) and [_OPM Flow_](https://opm-project.org/?page_id=19) (v2026.04) in macOS Tahoe in GitHub Actions, showing the status and details of the build in the [_Actions_](https://github.com/cssr-tools/homebrew-opm/actions).
See [_this script_](https://github.com/cssr-tools/homebrew-opm/blob/main/.github/workflows/ci_brew_opm-flow_resinsight_macos.yml) that is run in GitHub actions.

```bash
Expand Down
6 changes: 3 additions & 3 deletions opm-common.rb
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
class OpmCommon < Formula
desc "Common utilities for the Open Porous Media (OPM) project"
homepage "https://opm-project.org"
url "https://github.com/OPM/opm-common.git",
url "https://github.com/OPM/opm-common",
using: :git,
tag: "interim_release/2026.02/final",
revision: "6994f8b2cb60922ffd8f7d45e952b03ef1858df5"
tag: "release/2026.04/final",
revision: "0ea62974f24d70fc2b3e30d6aae8b76ef000dac1"
license "GPL-3.0-or-later"

depends_on "cmake" => :build
Expand Down
6 changes: 3 additions & 3 deletions opm-grid.rb
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
class OpmGrid < Formula
desc "Grid handling module of the Open Porous Media (OPM) project"
homepage "https://opm-project.org"
url "https://github.com/OPM/opm-grid.git",
url "https://github.com/OPM/opm-grid",
using: :git,
tag: "interim_release/2026.02/final",
revision: "d7933b8310cab1ae94af8d59495a9fe2409c2e96"
tag: "release/2026.04/final",
revision: "d6a1a35c3d770fe50073b9ed866bbec740c8faac"
license "GPL-3.0-or-later"

depends_on "cmake" => :build
Expand Down
6 changes: 3 additions & 3 deletions opm-simulators.rb
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
class OpmSimulators < Formula
desc "Reservoir simulation suite of the Open Porous Media (OPM) project"
homepage "https://opm-project.org"
url "https://github.com/OPM/opm-simulators.git",
url "https://github.com/OPM/opm-simulators",
using: :git,
tag: "interim_release/2026.02/final",
revision: "be17b4951c6b221b9a5869b43d39a5dcc8dd643a"
tag: "release/2026.04/final",
revision: "b82f21dba405286c4c4446614dd3bf9cdebf7a2c"
license "GPL-3.0-or-later"

depends_on "cmake" => :build
Expand Down
2 changes: 1 addition & 1 deletion resinsight.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
class Resinsight < Formula
desc "3D viewer and post processing of reservoir models"
homepage "https://resinsight.org"
url "https://github.com/OPM/ResInsight.git",
url "https://github.com/OPM/ResInsight",
using: :git,
tag: "v2025.12.0",
revision: "57430b5c6b1099d82e722e12ff087469a8d10d65"
Expand Down
7 changes: 4 additions & 3 deletions trilinos.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
class Trilinos < Formula
desc "Collection of numerical libraries for scientific computing"
homepage "trilinos.org/"
url "https://github.com/trilinos/Trilinos/archive/refs/tags/trilinos-release-17-0-0.tar.gz"
sha256 "7afa68fc6bf1dfdcd0c07f7b61055b03509e62cee1a835d570201b46aa440a6b"
version "trilinos-release-17-0-0"
url "https://github.com/trilinos/Trilinos",
using: :git,
tag: "trilinos-release-17-1-0",
revision: "6eff987504144a20ce3e94346a689306a8230705"
license "BSD-3-Clause"

depends_on "cmake" => :build
Expand Down
6 changes: 4 additions & 2 deletions type-lite.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
class TypeLite < Formula
desc "Strong types for C++98, C++11 and later (header-only)"
homepage "https://github.com/nonstd-lite/type-lite"
url "https://github.com/nonstd-lite/type-lite/archive/refs/tags/v0.2.0.tar.gz"
sha256 "47d6f78c3e8588f0a63e86c357d0d9e83543d754334df9dece7a4242047aea37"
url "https://github.com/nonstd-lite/type-lite",
using: :git,
tag: "v0.2.0",
revision: "edce3fb26f53ef9b2f8a35b8825d10c5f5e8443f"
license "BSL-1.0"

depends_on "cmake" => :build
Expand Down
Loading