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

Add [email protected] #485

Merged
merged 7 commits into from
Nov 27, 2024
12 changes: 12 additions & 0 deletions .github/workflows/valid-style.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
name: style

on:
push:
branches:
- develop
- releases/**
- spack-stack-dev
- release/**
pull_request:
branches:
- develop
- releases/**
- spack-stack-dev
- release/**
workflow_call:
inputs:
with_coverage:
Expand Down
12 changes: 4 additions & 8 deletions var/spack/repos/builtin/packages/esmf/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,8 @@ class Esmf(MakefilePackage, PythonExtension):
# Develop is a special name for spack and is always considered the newest version
version("develop", branch="develop")
# generate chksum with 'spack checksum [email protected]'
version("8.8.0b06", commit="aed3278586544bb7687bb03b5c9b65dff67c18a8")
version("8.7.0", sha256="d7ab266e2af8c8b230721d4df59e61aa03c612a95cc39c07a2d5695746f21f56")
version("8.7.0b11", commit="7b36ed9d21ecf904c95c436c8ecaa5075601893e")
version("8.7.0b04", commit="609c81179572747407779492c43776e34495d267")
version("8.6.1", sha256="dc270dcba1c0b317f5c9c6a32ab334cb79468dda283d1e395d98ed2a22866364")
version("8.6.1b04", commit="64d3aacc36f2d4d39255eb521c34123903cc0551")
version("8.6.1", sha256="dc270dcba1c0b317f5c9c6a32ab334cb79468dda283d1e395d98ed2a22866364")
version("8.6.0", sha256="ed057eaddb158a3cce2afc0712b49353b7038b45b29aee86180f381457c0ebe7")
version("8.5.0", sha256="acd0b2641587007cc3ca318427f47b9cae5bfd2da8d2a16ea778f637107c29c4")
Expand All @@ -50,7 +47,6 @@ class Esmf(MakefilePackage, PythonExtension):
sha256="0ff43ede83d1ac6beabd3d5e2a646f7574174b28a48d1b9f2c318a054ba268fd",
deprecated=True,
)
version("8.3.0b09", commit="5b7e546c4ba350bff9c9ebd00e5fa1c6315d17da", deprecated=True)
version("8.2.0", sha256="27866c31fdb63c58e78211de970470ca02d274f5d4d6d97e94284d63b1c1d9e4")
version("8.1.1", sha256="629690c7a488e84ac7252470349458d7aaa98b54c260f8b3911a2e2f3e713dd0")
version(
Expand Down Expand Up @@ -198,11 +194,11 @@ class MakefileBuilder(spack.build_systems.makefile.MakefileBuilder):
filter_compiler_wrappers("esmf.mk", relative_root="lib")

# Make script from mvapich2.patch executable
@when("@:7.0")
@run_before("build")
def chmod_scripts(self):
chmod = which("chmod")
chmod("+x", "scripts/libs.mvapich2f90")
if self.spec.satisfies("@:7.0"):
chmod = which("chmod")
chmod("+x", "scripts/libs.mvapich2f90")

def url_for_version(self, version):
if version < Version("8.0.0"):
Expand Down
Loading