summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2024-06-13New patch to add half include path for tests in 6.1 (#44697)renjithravindrankannath2-9/+115
* Add half include path for tests in 6.1 * removing unwanted when="@:6.1" * Correcting conditon to apply patch * Stlye check error fix and updating rpp dependency * Audit check error fix * Correcting rpp dependency and adding hsa-rocr-dev lib path to LD_LIBRARY_PATH
2024-06-13cleanup q-e-sirius recipe (#44698)Simon Pintarelli1-7/+3
2024-06-13Add latest releases to camp, raja and umpire (#44699)Adrien Bernede3-3/+30
* Add latest releases to camp, raja and umpire
2024-06-13Add new versions of feq-parse (#44701)Joe Schoonover1-0/+2
2024-06-13tau@2.33.2 +rocm: patch to disable llvm plugin (#44690)eugeneswalker2-0/+22
2024-06-13sirius: fix spla+openmp requirement (#44685)Simon Frasch1-1/+2
2024-06-12Revert "linux-pam: fixes #44637" (#44682)Harmen Stoppels1-12/+6
* Revert "linux-pam: fixes #44637 (#44638)" This reverts commit 9151fc1653317059097ae51a238cbb7c05197240. * linux-pam: drop redundant deps, add missing, dont build docs, nls
2024-06-12gettext: fix condition (#44680)Teague Sterling1-1/+1
2024-06-12Update cp2k old recipe (#44650)Taillefumier Mathieu1-85/+85
The old build system has issues with the library order. This commit is an attempt to fix it.
2024-06-12py-pyopengl: new package (#32357)Melven Roehrig-Zoellner1-0/+68
* py-pyopengl: new simple package * py-pyopengl: Fix typo in comment Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * py-pyopengl: add variants and dependencies * py-pyopengl: build from source and improve variants * py-pyopengl: use corrected freeglut libs * py-pyopengl: update copyright * py-pyopengl: remove duplicate conflict clause * py-pyopengl: change dependency to link --------- Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
2024-06-12py-biopython: Require python <= 3.9 for certain versions (#44668)Gavin John1-4/+4
2024-06-11WRF 4.5.2 support is added for AOCC compilers (#44584)AMD Toolchain Support1-6/+20
Co-authored-by: Raviteja K <rkuppili@amd.com>
2024-06-11Nalu-Wind Tioga Dependency (#44675)psakievich2-1/+2
* Nalu-Wind Tioga Dependency We created the tioga@1.0.0 tag for reproducing the exawind 1.0 release * Update tioga tags
2024-06-11MFEM: add new version v4.7 (#44010)Veselin Dobrev15-134/+478
* Core change: logic for extracting RPATHs from modules may return `None`: filter this out of the set of RPATHs that is auto-generated * Core change: `CachedCMakePackage` no longer adds ldflags to `CMAKE_STATIC_LINKER_FLAGS`: generally these flags are not appropriate for static linking (e.g. invocation of `ar`) * [mfem] Add version 4.7 * [mfem] Add variant for precision (single/double). Enforce consistency for precision amongst mfem and hypre/petsc/mumps dependencies * [mfem] Add cxxstd (and related constraints preventing use of old cxxstd values for newer versions of some dependencies) * [hypre] In line with prior point, added support for specifying precision * [petsc] Add config option to avoid error when building against `superlu-dist+rocm` * [hiop] add proper `raja`/`umpire`/`camp` version constraints for `hiop` versions 0.3.99-0.4.x; require `+raja` for `+rocm`, and add dependency on `hiprand` for `+rocm` * [butterflypack, mfem, strumpack, suite-sparse] Require `CRAYLIBS_{target-family}` env var to be defined * [suite-sparse] versions `@7.4:` changed install location of headers: add symlink from old location to new location * [zlib-ng] Fix error where shared libs were not successfully built for `%cce@17` (the build did not fail, but the finished `zlib-ng%cce@17` install did not have shared libs)
2024-06-11making suite-sparse library path generic in hipsolver (#44473)renjithravindrankannath3-25/+20
* suite-sparse library path can be lib or lib64 * fixing style check error * Adding the missing import os * Style check error fix * Updating patch for 6.1.0 with correct lib path
2024-06-11legion: Requires C++17 minimum after 24.03.0. (#44596)Elliott Slaughter1-2/+2
2024-06-11fms: add llvm-openmp for apple-clang +openmp (#44667)Matt Thompson1-0/+1
* fms: add llvm-openmp for apple-clang
2024-06-11Enable and constrain reuse for GitVersion installations (#43859)psakievich4-4/+97
* Preserve higher weight for CLI git ref versions Currently the concretizer fails if you reuse a git ref version that has already been installed but modify the spec at all. See #38484 for futher diagnosis The issue here is that since there is no established provenance for these versions the highest weight they are currently assigned is that of prior install. Re-use checks then fail because the weight of the version is identical to the solver. Ironically, these versions are given the highest weights possible when specified on the CLI for the first time. They should only appear in a DAG if they are an exact match or if the user specifies them at the CLI. Therefore it makes sense to preserve their higher ordering. Getting this right is critical to moving all branch based versions to a pinned git-ref in the future. * [@spackbot] updating style on behalf of psakievich * Update lib/spack/spack/solver/asp.py Co-authored-by: Greg Becker <becker33@llnl.gov> * Add provenance specific to git ref installs * Sensitvity to name that I could not track down * Add regression test * Adjust test * Add prefer standard unit-test * Style * Add required mock * Format and mark * Make unit-test case reproduce CLI investigation * Remove unnecessary mock package * [@spackbot] updating style on behalf of psakievich * Use already developed fixture * Add zlib-ng to mocks again * Remove accidental adds * Remove maintainer * [@spackbot] updating style on behalf of psakievich * Rename test file * [@spackbot] updating style on behalf of psakievich * Remove unused imports * Update tests * [@spackbot] updating style on behalf of psakievich * Style * Update lib/spack/spack/test/concretize.py Co-authored-by: Greg Becker <becker33@llnl.gov> * Update solver rule * Duplicate installed rules for installed_git_version * Revert "Duplicate installed rules for installed_git_version" This reverts commit 17223fc8d1c9461cb87e5a230f397167d1ab6d40. --------- Co-authored-by: psakievich <psakievich@users.noreply.github.com> Co-authored-by: Greg Becker <becker33@llnl.gov>
2024-06-11Use https, not ssh, for AMS git clones (#44669)Nuno Nobre1-1/+1
2024-06-11Renamed build-time test method (#44572)AcriusWinter6-6/+6
* libdistributed: renamed test to check_test * libpressio-rmetric: renamed test method * libpressio-tools: renamed test method * Renamed build-time test methods for: libpressio-opt, libpressio-tthresh, opened --------- Co-authored-by: Jackson Peter Lawrence <lawrence31@borax5.llnl.gov>
2024-06-11spla: add v1.6.0 (#44609)Simon Frasch1-17/+28
2024-06-11openssl: remove deprecated versions (#44629)Harmen Stoppels1-336/+7
2024-06-10linux-pam: fixes #44637 (#44638)Teague Sterling1-0/+5
* package/linux-pam: dependencies Signed-off-by: Teague Sterling <teaguesterling@gmail.com> * package/linux-pam: Fixes #44637 Signed-off-by: Teague Sterling <teaguesterling@gmail.com> * Update var/spack/repos/builtin/packages/linux-pam/package.py Co-authored-by: Alec Scott <hi@alecbcs.com> * Update var/spack/repos/builtin/packages/linux-pam/package.py Co-authored-by: Alec Scott <hi@alecbcs.com> * [@spackbot] updating style on behalf of teaguesterling --------- Signed-off-by: Teague Sterling <teaguesterling@gmail.com> Co-authored-by: Alec Scott <hi@alecbcs.com>
2024-06-10improvements for dlib;highway;libjxl (#44348)Robert Underwood3-11/+55
* improvements for dlib;highway;libjxl * Update var/spack/repos/builtin/packages/dlib/package.py Co-authored-by: Alec Scott <hi@alecbcs.com> * fix style --------- Co-authored-by: Robert Underwood <runderwood@anl.gov> Co-authored-by: Alec Scott <hi@alecbcs.com>
2024-06-10cppad: add v20180000.0, v20240000.4, master (#44299)William Hart1-7/+26
* Updating cppad package * Disabling doc generation * Adding whart222 as maintainer * Style fixes * Pushing changes based on Tamara's feedback. * Updating sha256 hash for version 20180000.0 * Reorg of declarations * Reworking cmake args * Reformatting
2024-06-10gdk-pixbuf: adding variant version constraint (#44645)Teague Sterling1-1/+1
Signed-off-by: Teague Sterling <teaguesterling@gmail.com>
2024-06-10perl-http-tiny: new package (#44502)Teague Sterling1-0/+23
* Adding perl-http-tiny package * Update package.py
2024-06-10flux-sched: fixed missing modules in PATH when lib64 and lib are both used ↵Loïc Pottier1-0/+3
(#44658) Signed-off-by: Loïc Pottier <pottier1@llnl.gov>
2024-06-10lcov: add master (#42498)Kelly (KT) Thompson1-0/+3
* Provide instructions for building a developmental version of lcov. * style fix * style fix * Promote single version git URL to the package level. * Formatting fix.
2024-06-10verilator: Some environment varibles are no longer required (#44655)Dave Keeshan1-1/+3
* verilator: Some environment varibles are no longer required * Revert depends_on for flex back to the deafult case * Use decorator, when, for setup_run_environment insdtead of if inside function
2024-06-10julia and libcxxwrap-julia: add new versions (#44635)Melven Roehrig-Zoellner2-0/+4
* julia: new version (1.10.4) * libcxxwrap-julia: new version (0.12.5)
2024-06-10dd4hep: Add version 1.29 (#44652)Thomas Madlener1-0/+1
2024-06-10lcio: Add latest tag v02-22 (#44606)Thomas Madlener1-0/+1
Co-authored-by: Valentin Volkl <valentin.volkl@cern.ch>
2024-06-10hdf5: solve cmake findhdf5 issue with hl components (#44423)Jon Rood1-0/+12
* hdf5: solve cmake findhdf5 issue with hl components * Fix mistake. * Update var/spack/repos/builtin/packages/hdf5/package.py Co-authored-by: psakievich <psakiev@sandia.gov> * Style. * Style. --------- Co-authored-by: psakievich <psakiev@sandia.gov>
2024-06-10root: new (old) versions and fixes for 6.32.00 (#44611)Chris Green1-6/+30
* Older versions and backported patches * Add 6.28.12 and 6.24.04. * Backported patches for segfault in weighted likelihood fits. * Minor style/signature improvements. * ROOT 6.32.00 fixes omitted from https://github.com/spack/spack/pull/44550
2024-06-10mold: add 2.32.0 (#44648)Mikael Simberg1-0/+1
2024-06-10elsi: add v2.10.1, master (#44579)Rocco Meli1-1/+4
2024-06-09qt: new minor version 5.15.14 (#44632)Melven Roehrig-Zoellner1-0/+1
2024-06-08git: remove deprecated versions (#44631)Harmen Stoppels1-180/+3
2024-06-08Remove failing unit-test on Windows (#44627)Massimiliano Culpo3-89/+32
2024-06-07binutils: detect the "gold" and "headers" variants (#40214)Bernhard Kaindl1-0/+15
Co-authored-by: Massimiliano Culpo <massimiliano.culpo@gmail.com>
2024-06-08fabtests: add v1.19.1 -> v1.21.0 (#44358)Kyle Gerheiser1-0/+8
2024-06-08py-scikit-build-core: add v0.7.1, v0.8.2, v0.9.5 (#44492)Wouter Deconinck1-5/+22
2024-06-07py-partd: add v1.4.1, v1.4.2 (#44497)Wouter Deconinck1-1/+6
2024-06-07flux-sched: add v0.35.0 (#44602)Vanessasaurus1-0/+1
Co-authored-by: github-actions <github-actions@users.noreply.github.com>
2024-06-07sundials+rocm: patch hip platform for rocm 5.7-6 (#44617)eugeneswalker2-0/+37
2024-06-07magma: add rocm-core versions >=6 (#44598)eugeneswalker1-1/+12
2024-06-07camp@0.2.3 +rocm: patch for rocm 6 from LLNL/camp PR#143 (#44597)eugeneswalker2-0/+17
2024-06-07dftbplus: add v24.1 (#44613)Rocco Meli1-0/+1
2024-06-07blaze: add v3.8.2, v3.8.1 (#44556)Nils Vu1-0/+2