summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/cubist/package.py
diff options
context:
space:
mode:
authorHarmen Stoppels <harmenstoppels@gmail.com>2023-04-19 23:17:47 +0200
committerGitHub <noreply@github.com>2023-04-19 14:17:47 -0700
commitd51af675ef345a191aa995b82609e5f6776184a3 (patch)
treeb41f286020d2fe56abc67502a1c188a97492e515 /var/spack/repos/builtin/packages/cubist/package.py
parentc7508dc21625b80b0fc6a4b835f0a6fdd38480d3 (diff)
downloadspack-d51af675ef345a191aa995b82609e5f6776184a3.tar.gz
spack-d51af675ef345a191aa995b82609e5f6776184a3.tar.bz2
spack-d51af675ef345a191aa995b82609e5f6776184a3.tar.xz
spack-d51af675ef345a191aa995b82609e5f6776184a3.zip
make version(...) kwargs explicit (#36998)
- [x] Replace `version(ver, checksum=None, **kwargs)` signature with `version(ver, checksum=None, *, sha256=..., ...)` explicitly listing all arguments. - [x] Fix various issues in packages: - `tags` instead of `tag` - `default` instead of `preferred` - `sha26` instead of `sha256` - etc Also, use `sha256=...` consistently. Note: setting `sha256` currently doesn't validate the checksum length, so you could do `sha256="a"*32` and it would get checked as `md5`... but that's something for another PR.
Diffstat (limited to 'var/spack/repos/builtin/packages/cubist/package.py')
-rw-r--r--var/spack/repos/builtin/packages/cubist/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/cubist/package.py b/var/spack/repos/builtin/packages/cubist/package.py
index e05d13abe9..f058698b73 100644
--- a/var/spack/repos/builtin/packages/cubist/package.py
+++ b/var/spack/repos/builtin/packages/cubist/package.py
@@ -19,7 +19,7 @@ class Cubist(MakefilePackage):
homepage = "https://www.rulequest.com"
url = "https://www.rulequest.com/GPL/Cubist.tgz"
- version("2.07", "f2b20807cd3275e775c42263a4efd3f50df6e495a8b6dc8989ea2d41b973ac1a")
+ version("2.07", sha256="f2b20807cd3275e775c42263a4efd3f50df6e495a8b6dc8989ea2d41b973ac1a")
def edit(self, spec, prefix):
makefile = FileFilter("Makefile")