summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/maintainers-3
AgeCommit message (Collapse)AuthorFilesLines
2023-04-19make version(...) kwargs explicit (#36998)Harmen Stoppels1-1/+1
- [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.
2023-01-27Add a `maintainers` directive (#35083)Massimiliano Culpo1-0/+17
fixes #34879 This commit adds a new maintainer directive, which by default extend the list of maintainers for a given package. The directive is backward compatible with the current practice of having a "maintainers" list declared at the class level.