summaryrefslogtreecommitdiff
path: root/var/spack/repos/tutorial/packages
AgeCommit message (Collapse)AuthorFilesLines
2024-01-02Update copyright year to 2024 (#41919)Todd Gamblin6-6/+6
It was time to run `spack license update-copyright-year` again.
2023-11-10libpspio 0.3.0 (#40953)Henri Menke1-0/+37
Co-authored-by: Alec Scott <alec@bcs.sh>
2023-08-09zlib-api: new virtual with zlib/zlib-ng as providers (#37372)Harmen Stoppels1-1/+1
Introduces a new virtual zlib-api, which replaces zlib in most packages. This allows users to switch to zlib-ng by default for better performance.
2023-07-05Drop Python 2 super syntax (#38718)Adam J. Stewart1-4/+4
2023-05-29Use @= in some packages (#37737)Harmen Stoppels1-1/+1
Change the pattern @x.y:x.y.0 -> @=x.y Co-authored-by: haampie <haampie@users.noreply.github.com>
2023-04-19make version(...) kwargs explicit (#36998)Harmen Stoppels4-31/+31
- [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-02-16Style: black 23, skip magic trailing comma (#35351)Adam J. Stewart2-38/+9
* Style: black 23, skip magic trailing commas * isort should use same line length as black * Fix unused import * Update version of black used in CI * Update new packages * Update new packages
2023-02-01Use the `maintainers` directive in all packages (#35201)Massimiliano Culpo1-2/+2
2023-01-18license year bump (#34921)Harmen Stoppels5-6/+6
* license bump year * fix black issues of modified files * mypy * fix 2021 -> 2023
2022-07-31black: reformat entire repository with blackTodd Gamblin5-443/+483
2022-05-28refactor: packages import `spack.package` explicitly (#30404)Tom Scogland5-4/+6
Explicitly import package utilities in all packages, and corresponding fallout. This includes: * rename `spack.package` to `spack.package_base` * rename `spack.pkgkit` to `spack.package` * update all packages in builtin, builtin_mock and tutorials to include `from spack.package import *` * update spack style * ensure packages include the import * automatically add the new import and remove any/all imports of `spack` and `spack.pkgkit` from packages when using `--fix` * add support for type-checking packages with mypy when SPACK_MYPY_CHECK_PACKAGES is set in the environment * fix all type checking errors in packages in spack upstream * update spack create to include the new imports * update spack repo to inject the new import, injection persists to allow for a deprecation period Original message below: As requested @adamjstewart, update all packages to use pkgkit. I ended up using isort to do this, so repro is easy: ```console $ isort -a 'from spack.pkgkit import *' --rm 'spack' ./var/spack/repos/builtin/packages/*/package.py $ spack style --fix ``` There were several line spacing fixups caused either by space manipulation in isort or by packages that haven't been touched since we added requirements, but there are no functional changes in here. * [x] add config to isort to make sure this is maintained going forward
2022-03-13Remove "setup_environment" and "setup_dependent_environment" (#29463)Massimiliano Culpo2-2/+2
fixes #29446 The new setup_*_environment functions have been falling back to calling the old functions and warn the user since #11115. This commit removes the fallback behavior and any use of: - setup_environment - setup_dependent_environment in the codebase
2022-01-14Update copyright year to 2022Todd Gamblin5-5/+5
2021-10-03Remove .99 from version ranges (#26422)Harmen Stoppels1-7/+7
In most cases, .99 can be omitted thanks to #26402 .
2021-09-17update tutorial version of hdf5 (#25368)Chris White5-117/+417
2021-07-08imports: sort imports everywhere in Spack (#24695)Todd Gamblin1-1/+2
* fix remaining flake8 errors * imports: sort imports everywhere in Spack We enabled import order checking in #23947, but fixing things manually drives people crazy. This used `spack style --fix --all` from #24071 to automatically sort everything in Spack so PR submitters won't have to deal with it. This should go in after #24071, as it assumes we're using `isort`, not `flake8-import-order` to order things. `isort` seems to be more flexible and allows `llnl` mports to be in their own group before `spack` ones, so this seems like a good switch.
2021-01-02copyrights: update all files with license headers for 2021Todd Gamblin5-5/+5
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
2019-12-30copyright: update copyright dates for 2020 (#14328)Todd Gamblin5-5/+5
2019-09-26Removed references to '(-march|-mtune|-mcpu)=native' (#12948)Massimiliano Culpo1-5/+2
Now that Spack injects microarchitecture specific optimizations for the selected target, packages should avoid adding flags that could step over those.
2019-08-05Move new packages from tutorial to builtin (#12289)Adam J. Stewart8-163/+0
* Move new packages from tutorial to builtin * Remove unicode character from docstring
2019-08-03Add py-uritemplate package (#12259)Adam J. Stewart1-0/+17
2019-08-02Add py-earthengine-api package (#12253)Adam J. Stewart1-0/+23
2019-08-02Add py-google-api-python-client package (#12254)Adam J. Stewart1-0/+24
2019-08-02Add py-google-auth-httplib2 package (#12255)Adam J. Stewart1-0/+19
2019-08-02Add py-google-auth package (#12256)Adam J. Stewart1-0/+23
2019-08-02Add py-httplib2 package (#12257)Adam J. Stewart1-0/+17
2019-08-02Add py-pyasn1-modules package (#12258)Adam J. Stewart1-0/+21
2019-08-02Add py-cachetools package (#12252)Adam J. Stewart1-0/+19
2019-01-01copyright: update license headers for 2013-2019 copyright.Todd Gamblin5-5/+5
2018-11-06New repo for advanced packaging tutorial (#9711)Peter Scheibel12-0/+945
* modified tutorial packages * update hint in hdf5 tutorial file (typo for suggested argument) * add repo.yaml to tutorial repository * update tutorial docs to refer user to tutorial package repository * flake edits * recommend site scope vs. defaults * you don't specify the repo's name when adding a repo, just the path