summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2022-11-23Build System docs: consistent headers (#34047)Adam J. Stewart8-30/+30
2022-11-23make/ninja: use the right number of jobs (#34057)Harmen Stoppels3-5/+11
2022-11-23capnproto: update to v0.10.2 (#34063)Alexander Knieps1-7/+64
Co-authored-by: Alexander Knieps <a.knieps@fz-juelich.de>
2022-11-23boost: At least with older Xcode, boost can't build with lzma (#34075)Bernhard Kaindl1-0/+3
Reference: https://lists.boost.org/Archives/boost/2019/11/247380.php As reported at the end of #33998 and this link, liblzma on older Xcode on MacOSX 10 misses _lzma_cputhreads, so boost's can't use liblzma on those.
2022-11-23[mochi-margo] fixed dependency to Argobots (#34082)Matthieu Dorier1-0/+1
2022-11-23New package: py-rasterstats (#34070)Jen Herting1-0/+27
* Fixed dependencies for rasterstats * Fixed flake8 errors * Fix flake8 error * Cleans up package desc., adds build dependency on setuptools. * Fixes flake8 error Co-authored-by: Bailey Brown <bobits@rit.edu>
2022-11-23dyninst: add v12.2.1 (#34050)Tim Haines1-0/+1
2022-11-23Metall package: add v0.22, v0.23, and v0.23.1 (#34073)Keita Iwabuchi1-0/+3
2022-11-23form: new version 4.3.0 (#34078)Takahiro Ueda1-0/+1
2022-11-23ccache: add new versions (#34067)Mosè Giordano1-0/+8
2022-11-23span-lite: Add new versions (#34072)Umar Arshad1-1/+6
2022-11-22cmd/checksum: allow adding new versions to package (#24532)Michael Kuhn4-9/+99
This adds super-lazy maintainer mode to `spack checksum`: Instead of only printing the new checksums to the terminal, `-a` and `--add-to-package` will add the new checksums to the `package.py` file and open it in the editor afterwards for final checks.
2022-11-22Python: drop EOL versions (#33898)Adam J. Stewart542-8285/+321
This PR removes [end of life](https://endoflife.date/python) versions of Python from Spack. Specifically, this includes all versions of Python older than 3.7. See https://github.com/spack/spack/discussions/31824 for rationale. Deprecated in #32615. And #28003. For anyone using software that relies on Python 2, you have a few options: * Upgrade the software to support Python 3. The `3to2` tool may get you most of the way there, although more complex libraries may need manual tweaking. * Add Python 2 as an [external package](https://spack.readthedocs.io/en/latest/build_settings.html#external-packages). Many Python libraries do not support Python 2, but you may be able to add older versions that did once upon a time. * Use Spack 0.19. Spack 0.19 is the last release to officially support Python 3.6 and older * Create and maintain your own [custom repository](https://spack.readthedocs.io/en/latest/repositories.html). Basically, you would need a package for Python 2 and any other Python 2-specific libraries you need.
2022-11-22spack uninstall: use topo order (#34053)Harmen Stoppels2-50/+17
2022-11-22berkeleygw: fix build (no change to attribute spec.compiler_flags) (#34019)Bernhard Kaindl1-7/+7
2022-11-22cpu-features: Fix appending -DBUILD_SHARED_LIBS (#34055)iarspider1-3/+3
Also: * Use the release tarball for v0.7.0 to fix spack warning Co-authored-by: Bernhard Kaindl <43588962+bernhardkaindl@users.noreply.github.com>
2022-11-22eckit: add v1.20.2, v1.16.3 (#33200)Dominic Hofer1-0/+2
Co-authored-by: Bernhard Kaindl <contact@bernhard.kaindl.dev>
2022-11-22Revert "Warn about removal of deprecated format strings (#33829)" (#34056)Massimiliano Culpo4-9/+6
This reverts commit 7f9af8d4a0bfbb1577e5ac9982624d8d0cb9b9ca.
2022-11-22Warn about removal of deprecated format strings (#33829)Greg Becker4-6/+9
Co-authored-by: becker33 <becker33@users.noreply.github.com>
2022-11-22Windows: add registry query and SDK/WDK packages (#33021)John W. Parent14-89/+961
* Add a WindowsRegistryView class, which can query for existing package installations on Windows. This is particularly important because some Windows packages (including those added here) do not allow two simultaneous installs, and this can be queried in order to provide a clear error message. * Consolidate external path detection logic for Windows into WindowsKitExternalPaths and WindowsCompilerExternalPaths objects. * Add external-only packages win-sdk and wgl * Add win-wdk (including external detection) which depends on win-sdk * Replace prior msmpi implementation with a source-based install (depends on win-wdk). This install can control the install destination (unlike the binary installation). * Update MSVC compiler to choose vcvars based on win-sdk dependency * Provide "msbuild" module-level variable to packages during build * When creating symlinks on Windows, need to explicitly specify when a symlink target is a directory * executables_in_path no-longer defaults to using PATH (this is now expected to be taken care of by the caller)
2022-11-22py-kubernetes: add version 25.3.0 (#33915)genric1-0/+1
2022-11-22gnuconfig: bump with 2022-09-17 (#34035)Harmen Stoppels1-0/+3
2022-11-21py-fprettify: new version 0.3.7 (#34040)Sergey Kosukhin1-0/+1
2022-11-21qiskit: updates (#33877)Andrew W Elble5-13/+56
2022-11-21Spec traversal: add option for topological ordering (#33817)Harmen Stoppels2-99/+371
Spec traversals can now specify a topological ordering. A topologically- ordered traversal with input specs X1, X2... will * include all of X1, X2... and their children * be ordered such that a given node is guaranteed to appear before any of its children in the traversal Other notes: * Input specs can be children of other input specs (this is useful if a user specifies a set of specs to uninstall: some of those specs might be children of others) * `direction="parents"` will produce a reversed topological order (children always come before parents). * `cover="edges"` will generate a list of edges L such that (a) input edges will always appear before output edges and (b) if you create a list with the destination of each edge in L the result is topologically ordered
2022-11-22libjpeg-turbo: make build_system settings comprehensive (#34046)Chris Green1-1/+1
2022-11-21Speed-up a few unit-tests (#34044)Massimiliano Culpo3-3/+3
* test_suite.py: speed up slow test by using mock packages * Don't resolve the sha during unit-tests * Skip long-running test that fails, instead of executing it
2022-11-21Fixed the rdma-core package to find its external library (#33798)Brian Van Essen1-1/+1
2022-11-21ecflow: add v5.8.3, update with changes from JCSDA-EMC fork (#34038)Dom Heinzeller1-7/+32
2022-11-21ci: restore ability to reproduce gitlab job failures (#33953)Scott Wittenburg1-3/+18
2022-11-21uninstall: fix accidental cubic complexity (#34005)Harmen Stoppels3-17/+66
* uninstall: fix accidental cubic complexity Currently spack uninstall runs in worst case cubic time complexity thanks to traversal during traversal during traversal while collecting the specs to be uninstalled. Also brings down the number of error messages printed to something linear in the amount of matching specs instead of quadratic.
2022-11-21openvdb: update to v10.0.0 (#33835)Drew Whitehouse1-20/+21
2022-11-21texinfo: require also `makeinfo` executable (#33370)Mosè Giordano1-2/+11
* texinfo: require also `makeinfo` executable * texinfo: add versions 6.6, 6.7, 6.8 * texinfo: add `info` and `makeinfo` sanity checks
2022-11-21hugo: add v0.106.0 (#34023)Alec Scott1-2/+5
2022-11-20Python: specify tcl/tk version requirements (#34027)Adam J. Stewart1-0/+3
2022-11-20qt6: new packages (#29555)Wouter Deconinck5-0/+413
* qt6: initial commit of several basic qt6 packages * Qt6: fix style issues * [qt6] fix style issues, trailing spaces * [qt6] rename to qt-* ecosystem; remove imports * [qt6] rename dependencies; change version strings * [qt6] list_urls * [qt6] homepage links * [qt6] missing closing quotes failed style check * qt-declarative: use private _versions Co-authored-by: Seth R. Johnson <johnsonsr@ornl.gov> * qt-quick3d, qt-quicktimeline, qt-shadertools: use private _versions * qt-base: rework feature defines and use run_tests * qt: new version 6.2.4 * flake8 whitespace before comma * qt-base: variant opengl when +gui Co-authored-by: Seth R. Johnson <johnsonsr@ornl.gov> * qt6: rebase and apply new black style * qt6: apply style isort fixes * qt6: new version 6.3.0 and 6.3.1 * qt6: add 6.3.0 and 6.3.1 to versions list * qt6: multi-argument join_path Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * qt-base: fix isort * qt-shadertools: no cmake_args needed * qt-declarative: imports up front * qt-quick3d: fix import * qt-declarative: remove useless cmake_args * qt-shadertools: imports and join_path fixes * qt-quick3d: join_path fixes * qt-declarative: join_path fixes * Update features based on gui usage * Update dependencies, cmake args, mac support * Update features based on linux * More updates * qt-base: fix style * qt-base: archive_files join_path * qt-base: new version 6.3.2 * qt-{declarative,quick3d,quicktimeline,shadertools}@6.3.2 * qt-base: require libxcb@1.13: and use system xcb_xinput when on linux Co-authored-by: Seth R. Johnson <johnsonsr@ornl.gov> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
2022-11-21mold: new package for the mold linker (#34017)Pedro Ciambra1-0/+20
2022-11-21py-numpy: add v1.23.5 (#34026)Adam J. Stewart1-0/+1
2022-11-21krb5: Add new versions 1.19.4 and 1.20.1 (#34021)Bernhard Kaindl1-0/+2
Co-authored-by: Bernhard Kaindl <contact@bernhard.kaindl.dev>
2022-11-20Update dask and related packages (#33925)Sam Grayson5-19/+84
* Update dask and related packages * Update package dependency specs * Run spack style * Add new version of locket * Respond to comments * Added constraints * Add version constraints for py-dask+distributed * Run spack style * Update var/spack/repos/builtin/packages/py-dask/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * Deprecated dask versions * Deprecated more dask and distirbuted * spack style --fix Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
2022-11-20bash: Update 5.1 to 5.1.16 (#34022)Bernhard Kaindl1-0/+8
2022-11-19py-torch: add note about MPS variant (#34018)Adam J. Stewart1-1/+1
2022-11-19New package: py-ahpy (#34008)Jen Herting1-0/+22
* first build of ahpy * updated to limit python to >4 * added from spack.package import * to >4 Co-authored-by: Sid Pendelberry <sid@rit.edu>
2022-11-19OpenMC: add v0.13.2 (#33903)Paul Romano2-5/+18
* openmc: add v0.13.2 * Fix style formatting * Update Python version dependency * Update numpy version dependency
2022-11-19spack find: remove deprecated "--bootstrap" option (#34015)Massimiliano Culpo3-30/+1
2022-11-19libxcrypt: Disable -Werror (#34013)Erik Schnetter1-1/+3
2022-11-19package_base.py: Fix #34006: test msg needs to be a string (#34007)Chris Green2-2/+10
2022-11-19Boost: enable lzma and zstd iostreams (#33998)iarspider1-2/+8
2022-11-19graphviz: remove 1. cyclic dep when +pangocairo and 2. error with ↵Olivier Cessenat1-2/+2
poppler+glib (#32120) * graphviz: remove cyclic dep to svg when pangocairo and poppler+glib failure * graphviz: remove cyclic dep to svg when pangocairo and poppler+glib failure
2022-11-19parallelio: update package to use mpi-serial, add extra module info (#33153)Jim Edwards1-6/+28