summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2024-07-22py-numpy: add v2.0.1 (#45354)Adam J. Stewart1-3/+3
2024-07-22linux-pam: add v1.5.1, v1.5.3, v1.6.0, v1.6.1 and additional variants (#45344)Teague Sterling1-7/+43
* package/linux-pam: dependencies * Adding variants to linux-pam * Updating linux-pam variants * Fixing variants for linux-pam after testing * clean up flag handling * clean up terrible tabs * cant use default_args for compiler dependencies * Change selinux to off by default --------- Signed-off-by: Teague Sterling <teaguesterling@gmail.com>
2024-07-22libwnck: new package (#44641)Teague Sterling1-0/+76
2024-07-22libgudev: new package (#44639)Teague Sterling1-0/+22
2024-07-22geopm: Add v3.1 and update the needed dependencies (#44793)Brad Geltz6-62/+152
2024-07-22asciidoc: Fix asciidoc@10 install (#44926)Jordan Galby1-4/+13
2024-07-22libint: Fix build for 2.6.0, add libs property (#45034)snehring1-20/+37
Signed-off-by: Shane Nehring <snehring@iastate.edu>
2024-07-22heyoka: add current 4.0.x and 5.0.0 releases (#45314)Alex Seaton1-1/+7
2024-07-22rayleigh: add v1.2.0 (#45333)Philipp Edelmann1-2/+3
2024-07-22dedisp: fix preinstall: it only takes self (#45328)Andrew W Elble1-3/+3
too many arguments here, only takes "self".
2024-07-22libvdwxc: Fix configure with gcc-14 (#45093)Martin Lang2-0/+22
2024-07-22Update Enzyme to 0.0.135 (#45346)William Moses1-0/+1
2024-07-22Add nextflow 24.04.3 (#45357)Diego Alvarez S.1-0/+5
2024-07-22py-colored: Added new version (#45361)Alex Leute1-1/+3
2024-07-22node-js: add v17.9.1, v20.15.0, v21.7.3, v22.3.0, v22.4.0 (#45007)Teague Sterling2-3/+37
* Adding new versions and compilation conflict for nodejs * Update failed version for gcc14 * Updating conflicts notes for correctness/clarity/format * Applying spack-ized versions of fix in https://github.com/nodejs/node/issues/52223 to adddress CI failures * Update fix-old-glibc-random-headers.patch * Update package.py * Update fix-old-glibc-random-headers.patch * Update fix-old-glibc-random-headers.patch * Adding conflict for older glibc * Fixing patch for older systems, need to undef * Removing overly strict conflicts --------- Signed-off-by: Teague Sterling <teaguesterling@gmail.com>
2024-07-22geant4: support Qt5 and Qt6 (#45352)Wouter Deconinck1-3/+10
* geant4: support qt5 and qt6 * geant4: update conflict msg
2024-07-20build(deps): bump mypy from 1.10.1 to 1.11.0 in /lib/spack/docs (#45337)dependabot[bot]1-1/+1
Bumps [mypy](https://github.com/python/mypy) from 1.10.1 to 1.11.0. - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/v1.10.1...v1.11) --- updated-dependencies: - dependency-name: mypy dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-07-20Testing: omit test on windows (#45340)Peter Scheibel1-0/+1
Re-disable a test that was enabled in #45031
2024-07-19Windows Tests: enable more cmd tests on Windows (#45031)Nicole C.8-22/+3
* Several tests can be enabled on Windows with no changes to logic (either the test logic or logic being tested) * Test for `spack location` requires modification of the test logic, but with a minor change can be enabled on Windows
2024-07-19sqlite: fix AttributeError when +functions (#45327)Andrew W Elble1-1/+1
using self.compiler.cc_pic_flag here results in these errors: ==> sqlite: Executing phase: 'install' ==> Error: AttributeError: 'AutotoolsBuilder' object has no attribute 'compiler' change it to self.pkg.compiler.cc_pic_flag instead.
2024-07-19NCCL: add version 2.22.3-1. (#45322)Rémi Lacroix1-0/+1
2024-07-19docs: util/environment.py: use `re.Pattern[str]` instead of `re` (#45329)Wouter Deconinck2-3/+3
* docs: util/environment.py: use `re.Pattern[str]` instead of `re` * docs: sphinx==7.4.6
2024-07-19change 2.16-rocm-enhanced to 2.16.1-rocm-enhanced (#45320)afzpatel1-8/+8
2024-07-19usearch: new version (#45308)Alex Leute2-8/+58
* usearch: new versison Manual download no longer reqired for @12:
2024-07-18improved-rdock: new test API (#45239)AcriusWinter1-29/+37
* imoroved-rdock: new test API * Make test subpart names and or descriptions more accurate --------- Co-authored-by: Tamara Dahlgren <35777542+tldahlgren@users.noreply.github.com>
2024-07-18sqlite: add some newer releases (#45297)dmagdavector1-0/+4
Included: 3.46.0 (most current), 3.45.3, 3.45.1 (for possible compat with Ubuntu 24.04 LTS), 3.44.2.
2024-07-18e4s ci: enable some disabled specs (#44934)eugeneswalker2-127/+86
* e4s ci: enable some disabled specs * comment out cp2k +cuda due to unsupported cuda_arch * comment out dealii+cuda due to concretize error * work through concretize errors * e4s: comment out failing builds * e4s stack: disabled non-building specs * comment out failing specs * comment out failing specs * cleanup comments
2024-07-18rust: rework external find to require both rustc and cargo (#45286)Wouter Deconinck1-3/+10
* rust: rework external find to require both rustc and cargo * rust: handle unable to parse version * [@spackbot] updating style on behalf of wdconinc * rust: not x or not y -> not (x and y) Co-authored-by: Alec Scott <hi@alecbcs.com> * rust: pick first rustc found Co-authored-by: Alec Scott <hi@alecbcs.com> * rust: list comprehensions Co-authored-by: Alec Scott <hi@alecbcs.com> --------- Co-authored-by: wdconinc <wdconinc@users.noreply.github.com> Co-authored-by: Alec Scott <hi@alecbcs.com>
2024-07-18py-tensorflow: add v2.17.0 (#45201)Adam J. Stewart3-173/+185
2024-07-18py-cryptography: add v41.0.7, v42.0.8; py-setuptools-rust: add v1.7.0, ↵Wouter Deconinck2-1/+9
v1.8.1, v1.9.0 (#45282)
2024-07-18py-sphinx: add v7.4 (#45255)Adam J. Stewart3-9/+38
2024-07-18Allow remapping of compiler names (#45299)Bill Williams1-1/+10
CCE in spack is Cray on the Score-P configure line. Others can be added. Co-authored-by: William Williams <william.williams@tu-dresden.de>
2024-07-18mafft: add version 7.525 (#45258)snehring1-0/+1
Signed-off-by: Shane Nehring <snehring@iastate.edu>
2024-07-18spades: add version 4.0.0 and new variants (#45278)snehring1-0/+11
Signed-off-by: Shane Nehring <snehring@iastate.edu>
2024-07-18mapl: add v2.47.1 (#45280)Matt Thompson1-2/+3
* mapl: add 2.47.1 * Approve compiler depends_on
2024-07-18git packages: add language dep (#45294)Harmen Stoppels548-0/+1436
2024-07-18magic-enum: add version 0.9.6 (#45284)Pranav Sivaraman1-0/+44
* magic-enum: add version 0.9.6 * magic-enum: add maintainer --------- Co-authored-by: pranav-sivaraman <pranav-sivaraman@users.noreply.github.com>
2024-07-18harfbuzz: add v9.0.0 (#45290)Wouter Deconinck1-0/+2
* harfbuzz: add v9.0.0 * harfbuzz: do not patch non-existing Makefile beyond v8
2024-07-18netlib-lapack: add pic variant (#45291)Richard Berger1-0/+2
2024-07-18pumi: language dependencies (#45301)Cameron Smith1-0/+4
Signed-off-by: Cameron Smith <smithc11@rpi.edu>
2024-07-18rocm-opencl: old to new test API (#45065)AcriusWinter1-9/+12
* rocm-opencl: old to new test API * Run tests from test stage directory --------- Co-authored-by: Tamara Dahlgren <dahlgren1@llnl.gov>
2024-07-18go: remove invalid deps (#45279)Alec Scott2-11/+2
* go: remove invalid deps * go: add dependencies sed and grep
2024-07-18libmesh: add v1.7.1, and fixes (#45292)Richard Berger1-2/+9
* libmesh: add missing v1.7.1 release * libmesh: avoid pulling in petsc if only +mpi or +metis is given * libmesh: add shared variant Co-authored-by: rbberger <rbberger@users.noreply.github.com>
2024-07-18sethrj: update maintained package language dependencies (#45289)Seth R. Johnson6-11/+9
2024-07-18Do not initialize previous store state in "use_store" (#45268)Massimiliano Culpo2-1/+22
The "use_store" context manager is used to swap the value of a global variable (spack.store.STORE), while keeping another global variable consistent (spack.config.CONFIG). When doing that it tries to evaluate the previous value of the store, if that was not done already. This is wrong, since the configuration might be in an "intermediate" state that was never meant to trigger side effects. Remove that operation, and add a unit test to prevent regressions.
2024-07-17qt-*: add v6.7.1, v6.7.2 (#45288)Wouter Deconinck6-0/+12
2024-07-17build(deps): bump docker/build-push-action from 6.4.0 to 6.4.1 (#45283)dependabot[bot]1-1/+1
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 6.4.0 to 6.4.1. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/a254f8ca60a858f3136a2f1f23a60969f2c402dd...1ca370b3a9802c92e886402e0dd88098a2533b12) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-07-17py-pyfr: add v2.0.3 (#45274)MichaelLaufer1-2/+3
* py-pyfr: add v2.0.3
2024-07-17environment: handle view root at existing directory better (#45263)Wouter Deconinck2-0/+43
- remove empty dir if exists at view root - error better if non-empty dir Co-authored-by: Harmen Stoppels <me@harmenstoppels.nl>
2024-07-17py-lightning: setuptools required at run-time (#45260)Adam J. Stewart2-1/+5