Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-06-01 | New package: py-gcs-oauth2-boto-plugin (#23969) | Desmond Orton | 1 | -0/+29 | |
* New package: py-gcs-oauth2-boto-plugin * Dep fixes | |||||
2021-06-01 | New Package:py-sierrapy@0.3.0 (#23768) | Desmond Orton | 1 | -0/+33 | |
* New Package:py-sierrapy@0.3.0 * dep fixes to sierrapy * further dep fixes | |||||
2021-06-01 | Bump pip (#24073) | Harmen Stoppels | 1 | -1/+2 | |
2021-06-01 | Create pykokkos-base package (#24054) | Jonathan R. Madsen | 1 | -0/+62 | |
2021-06-01 | Fix bug where cmake prefix path on the command line does not include ↵ | Harmen Stoppels | 2 | -18/+20 | |
transitive deps (#23965) | |||||
2021-06-01 | umpire: add v5.0.1 (#24056) | Mikael Simberg | 1 | -0/+1 | |
2021-06-01 | gcc: add 9.4.0 (#24064) | Michael Kuhn | 1 | -2/+3 | |
This also enables bootstrapping by default since that is what GCC recommends and what most distributions are doing as well. | |||||
2021-06-01 | apex: updated package, added maintainer (#18569) | Kevin Huck | 1 | -17/+99 | |
Adding versions: 2.2.0, 2.3.0, 2.3.1, 2.3.2, 2.4.0 | |||||
2021-06-01 | axom: fix typo in conflicts where "^" is missing (#24058) | Massimiliano Culpo | 1 | -2/+2 | |
2021-06-01 | Simplified the spack.util.gpg implementation (#23889) | Massimiliano Culpo | 10 | -368/+304 | |
* Simplified the spack.util.gpg implementation All the classes defined in this Python module, which were previously used to construct singleton instances, have been removed in favor of four global variables. These variables are initialized lazily, like before. The API of the module has been unchanged for the most part. A few tests have been modified to use the new global names. | |||||
2021-06-01 | rocksdb: fix typo in dependency condition (#24061) | Massimiliano Culpo | 1 | -1/+1 | |
refers #23503 `spack audit` caught that the "bzip2" variant was not defined. | |||||
2021-06-01 | py-elephant: fix typo in dependency condition (#24060) | Massimiliano Culpo | 1 | -2/+2 | |
refers #23503 `spack audit` caught that the "docs" variant was not defined. | |||||
2021-06-01 | paradiseo: remove dependency that cannot be triggered (#24059) | Massimiliano Culpo | 1 | -2/+0 | |
refers #23503 Spack audit caught that the "doc" variant was not defined, and doxygen was conditional on it being set. | |||||
2021-06-01 | py-nipype: add new package (#24045) | Manuela Kuhn | 1 | -0/+34 | |
2021-06-01 | mpich: conflict no longer necessary with clang (#24013) | Harmen Stoppels | 1 | -1/+1 | |
2021-06-01 | petsc: add +hwloc and +openmp variants (#23675) | lpoirel | 1 | -3/+13 | |
2021-06-01 | hpctoolkit: update recipe, add v2021.05.15 (#24017) | Mark W. Krentel | 1 | -14/+29 | |
1. add version 2021.05.15. 2. add patch to build old revs with gcc 11.x, version 2021.15.05 already has patch integrated, fixes #23667. 3. add variant +debug to build unoptimized, debug version. 4. add variant +viewer to include hpcviewer and add viewer path to hpctoolkit module. 5. add dependency on memkind to workaround a glibc problem found on some Cray platforms. | |||||
2021-06-01 | spdlog: add v1.8.2-v1.8.5, adjusted required version of cmake (#23993) | Matthieu Dorier | 1 | -1/+6 | |
2021-06-01 | COOL: add new package (#23006) | iarspider | 2 | -0/+83 | |
Co-authored-by: George Hartzell <hartzell@alerce.com> | |||||
2021-06-01 | enzo: add main branch (#24010) | Michael Kuhn | 1 | -1/+2 | |
We also keep around master for compatibility and map it to main. | |||||
2021-06-01 | py-numcodecs: fix import_modules tests (#24015) | Adam J. Stewart | 1 | -0/+4 | |
2021-06-01 | py-psycopg2: need link dep on postgresql (#24016) | Adam J. Stewart | 1 | -5/+6 | |
2021-06-01 | Bump cmake (#24043) | Harmen Stoppels | 1 | -0/+1 | |
2021-06-01 | perl: add 5.34.0 (and 5.35.0) (#24047) | Michael Kuhn | 1 | -1/+3 | |
2021-06-01 | formetis: add new package (#24048) | Seth R. Johnson | 1 | -0/+71 | |
2021-06-01 | Fix leading / during spack buildcache -f ... (#24028) | Harmen Stoppels | 1 | -1/+1 | |
For me the buildcache force overwrite option does not work. It tries to delete a file, but errors with a key error, apparently because the leading / has to be removed. | |||||
2021-06-01 | cctools: add v7.2.10 (#24051) | Ben Darwin | 1 | -0/+1 | |
2021-06-01 | elfutils: add v0.183 through v0.185 (#24052) | Mark W. Krentel | 1 | -0/+3 | |
2021-06-01 | acts: add v8.3.0 (#24053) | Hadrien G | 1 | -0/+1 | |
2021-05-31 | Log performance improvement (#23925) | Tom Scogland | 1 | -22/+37 | |
* util.tty.log: read up to 100 lines if ready Rework to read up to 100 lines from the captured stdin as long as data is ready to be read immediately. Adds a helper function to poll with `select` for ready data. This showed a roughly 5-10x perf improvement for high-rate writes through the logger with relatively short lines. * util.tty.log: Defer flushes to end of ready reads Rather than flush per line, flush per set of reads. Since this is a non-blocking loop, the total perceived wait is short. * util.tty.log: only scan each line once, usually Rather than always find all control characters then substitute them all, use `subn` to count the number of control characters replaced. Only if control characters exist find out what they are. This could be made truly single pass with sub with a function, but it's a more intrusive change and this got 99%ish of the performance improvement (roughly another 2x in some cases). * util.tty.log: remove check for `readable` Python < 3 does not support a readable check on streams, should not be necessary here since we control the only use and it's explicitly a stream to be read. | |||||
2021-05-31 | py-lxml: add 4.6.3 (#24037) | Manuela Kuhn | 1 | -2/+3 | |
* py-lxml: add 4.6.3 Also add missing libxml2 and libxslt versions dependencies [1] [1] https://github.com/lxml/lxml/blob/lxml-4.6.3/INSTALL.txt * Update var/spack/repos/builtin/packages/py-lxml/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * py-lxml: remove cython dependency again Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> | |||||
2021-05-31 | py-prov: add new package (#24040) | Manuela Kuhn | 1 | -0/+31 | |
2021-05-31 | py-click: add 8.0.1 (#24041) | Manuela Kuhn | 1 | -2/+11 | |
2021-05-31 | py-traits: add 6.2.0 (#24044) | Manuela Kuhn | 1 | -1/+3 | |
2021-05-31 | py-simplejson: add 3.17.2 (#24042) | Manuela Kuhn | 1 | -0/+2 | |
Also fix python version dependency. | |||||
2021-05-31 | py-networkx: add 2.5.1 (#24038) | Manuela Kuhn | 1 | -0/+3 | |
2021-05-31 | py-nibabel: add new package (#24036) | Manuela Kuhn | 1 | -0/+20 | |
2021-05-31 | py-packaging: add 20.9 (#24034) | Manuela Kuhn | 1 | -3/+5 | |
2021-05-31 | py-etelemetry: add new package (#24033) | Manuela Kuhn | 1 | -0/+21 | |
2021-05-31 | py-ci-info: add new package (#24031) | Manuela Kuhn | 1 | -0/+22 | |
2021-05-31 | py-pydot: add v1.4.2 (#24039) | Manuela Kuhn | 1 | -0/+2 | |
2021-05-31 | py-requests: add 2.25.1 (#24032) | Manuela Kuhn | 1 | -3/+6 | |
2021-05-31 | Propagate openmp to blas for sirius and spla (#24027) | Harmen Stoppels | 2 | -11/+27 | |
And also update lowerbounds of dependencies | |||||
2021-05-31 | Bugfix: not providing fftw-api@3 (#24024) | h-murai | 1 | -1/+1 | |
2021-05-31 | xqilla: add patches for newer xerces-c, gcc (#24021) | Valentin Volkl | 1 | -0/+4 | |
2021-05-31 | libfabric: add debug variant (#24018) | Michael Kuhn | 1 | -0/+5 | |
2021-05-30 | CI: E4S: enable full E4S (#24011) | eugeneswalker | 1 | -78/+295 | |
* e4s ci: enable full e4s * add llvm-amdgpu to list of specs needing an xlarge tagged runner * comment out qt and qwt because of intermittent build failures * remove +rocm specs because rocblas job consistently fails due to infrastructure | |||||
2021-05-30 | vbfnlo: add missing build dependencies (#24022) | Valentin Volkl | 1 | -0/+4 | |
2021-05-29 | New versions: py-sphinxcontrib-bibtex, py-sphinx-rtd-theme, ↵ | Paul R. C. Kent | 4 | -4/+18 | |
py-pybtex-docutils, py-pybtex (#24009) * New versions * update deps * py-sphinxcontrib-bibtex deps | |||||
2021-05-29 | New versions: py-gpaw, py-ase (#24008) | Paul R. C. Kent | 2 | -8/+29 | |
* New gpaw and ase versions * Update ase deps * flask dep removed after 3.18.0 |