summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/trivial-pkg-with-valid-hash
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.mock/packages/trivial-pkg-with-valid-hash
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.mock/packages/trivial-pkg-with-valid-hash')
-rw-r--r--var/spack/repos/builtin.mock/packages/trivial-pkg-with-valid-hash/package.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/repos/builtin.mock/packages/trivial-pkg-with-valid-hash/package.py b/var/spack/repos/builtin.mock/packages/trivial-pkg-with-valid-hash/package.py
index ac35d3ad85..f8ab1ba7c4 100644
--- a/var/spack/repos/builtin.mock/packages/trivial-pkg-with-valid-hash/package.py
+++ b/var/spack/repos/builtin.mock/packages/trivial-pkg-with-valid-hash/package.py
@@ -10,7 +10,9 @@ class TrivialPkgWithValidHash(Package):
url = "http://www.unit-test-should-replace-this-url/trivial_install-1.0"
version(
- "1.0", "6ae8a75555209fd6c44157c0aed8016e763ff435a19cf186f76863140143ff72", expand=False
+ "1.0",
+ sha256="6ae8a75555209fd6c44157c0aed8016e763ff435a19cf186f76863140143ff72",
+ expand=False,
)
hashed_content = "test content"