Skip to content
Draft
Show file tree
Hide file tree
Changes from 5 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
12 changes: 11 additions & 1 deletion repos/c2sm/packages/ghex/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,23 @@ class Ghex(CMakePackage, CudaPackage, ROCmPackage):

homepage = "https://github.com/ghex-org/GHEX"
url = "https://github.com/ghex-org/GHEX/archive/refs/tags/v0.3.0.tar.gz"
git = "https://github.com/ghex-org/GHEX.git"
# TODO: Change this back. This is only to allow @git.<hash> syntax to pull
# from the correct repo. We only care about philip-async-mpi at the moment.
# git = "https://github.com/ghex-org/GHEX.git"
git = "https://github.com/philip-paul-mueller/GHEX.git"
maintainers = ["boeschf"]

version("0.4.1", tag="v0.4.1", submodules=True)
version("0.4.0", tag="v0.4.0", submodules=True)
version("0.3.0", tag="v0.3.0", submodules=True)
version("master", branch="master", submodules=True)
version(
"philip-async-mpi",
git="https://github.com/philip-paul-mueller/GHEX.git",
# Pinned commit from https://github.com/ghex-org/GHEX/pull/190
commit="9c09f3c52d2d76816074cdff869e2f90d005137c",
submodules=True,
)
version(
"async-mpi",
git="https://github.com/msimberg/GHEX.git",
Expand Down
1 change: 1 addition & 0 deletions repos/c2sm/packages/icon4py/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ class Icon4py(Package):
# --- Versions ---
version("main", branch="main")
version("0.0.15", commit="9a7f7d68f0e8be18f746044879c49e4d87e20ff6")
version("phimuell__async_mpi_test", branch="phimuell__async_mpi_test")
version(
"0.0.14",
sha256="8aadb6fe7af55fc41d09daa4e74739bd7ab01b4e",
Expand Down
Loading