Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
* PFAPACK: Add new package
* PFAPACK : fix flake8 errors
* add type=(build, run) to the recipe
|
|
* Lis: Add new package
* delete unnecessary inner quotes
|
|
* openwsman: fix detect python executable
- use spack's python insted of system's python
- Add variant to use python.
- fix dependency.
- support python2.
* format fixed.
* fix python command.
|
|
|
|
|
|
* New package: py-pydmd
* modified:package.py
* modified: package.py
|
|
* cfitsio: new versions and new url sheme
* cfitsio: fix version order
|
|
See issue #19644
This script makes lib[cdsz]mumps.so explicitly depend on
libmumps_common.so (and libmpiseq.so if ~mpi)
|
|
This updates the UnifyFS packages to account for the latest v0.9.1
release.
Updates required and optional dependencies for the respective
releases.
Locks margo and mercury dependencies at specific versions while
integration with their latest versions is still in progress.
|
|
* openipmi: fix dependency and add version 2.0.29
- Add perl and readline dependency
- fix dependency type
- Fix readline bug in 2.0.27 (https://sourceforge.net/p/openipmi/code/ci/d1dd570cf77cb2c63bc32bef12d5353e3a197146/)
- Add 2.0.29
* Add patch file.
|
|
|
|
* fix rocm_3.8.0 build error for rocprim,rocrand,rocfft packages
* fix flake8 errors
|
|
* Add pem package file
* Cleanup formatting
* Replace homepage with url to ReadtheDocs
* Simplify package description
|
|
|
|
|
|
* Add acts v4
* Please flake8
|
|
|
|
|
|
* salmon-tddft: new package.
* remove debug print.
* remove duplicate line.
|
|
"terminate" member. Initialize it to NULL.
|
|
* PGI compiler has trouble with avx2 SIMD support
(https://github.com/FFTW/fftw3/issues/78)
* Hew to the project's preferred indentation standard.
* Expand '%nvhpc' logic to include '%pgi'.
* Exceeded the max line-length.
* Break up the long compound statement into nested if's.
* Inadvertently picked up an extraneous file.
* PGI compiler has trouble with avx2/avx-512 SIMD support, too.
|
|
* Add PGI runtime libs to LDFLAGS when '%pgi' in spec.
* Revert "Add PGI runtime libs to LDFLAGS when '%pgi' in spec."
This reverts commit 31c3ef8ea22156fdeef6f82a29e9cea8ac86f006.
* Add PGI runtime libs to LDFLAGS when '%pgi' in spec.
|
|
|
|
|
|
* packages: initial commit of libvori
* cp2k: add support for libvori
* cp2k: add support for spglib
|
|
Co-authored-by: Mark Olesen <Mark.Olesen@esi-group.com>
|
|
|
|
|
|
|
|
|
|
GCC looks for included files based on several env vars.
Remove C_INCLUDE_PATH, CPLUS_INCLUDE_PATH, and OBJC_INCLUDE_PATH
from the build environment to ensure it's clean and prevent
accidental clobbering.
|
|
* libgff: new package at version 2.0.0
* Removed default cmake function, fixed flake8 error
* Fixed errors
|
|
|
|
Also switch homepage to https.
|
|
(#20438)
* Add v2.0.0
* Add 0.2.2
* Improve packages
* No trailing
|
|
* Adding support for the CMake flags in LBANN that are missing.
* Added new flag to OpenCV dependency and removed negative variants
since OpenCV no longer turns on everything by default. Removed CMake
flags in LBANN that have been deprecated.
* Removed type='build' flags from dependencies so that they get linked
into a environment's view.
* Removed type='build' flags from dependencies so that they get linked
into a environment's view. Fixed DiHydrogen variant to enable
DistConv feature, renamed to +distconv from +legacy. Added conflicts
line to indicated that DistConv and ROCm don't work with +half
support.
* Fixed Flake8 and cleaned up ordering of variants.
* Flake8
* Backed out changes to not mark and cmake and ninja as build
dependencies, which was introduced to make sure that they appear in
a spack environment.
* Backed out changes to not mark doc related packages as build
dependencies, which was introduced to make sure that they appear
in a spack environment.
* Fixed how recipe communicates the intent to build and run tests to the
package CMake.
|
|
* Add py-ez-setup package file
* Cleanup formatting
* Cleanup formatting take 2
|
|
Signed-off-by: Tim Lane <tilne@amazon.com>
|
|
Fixes: #20515
Co-authored-by: Baptiste Jonglez <git@bitsofnetworks.org>
|
|
This is to make sure that the build system doesn't pick up a library that
would happen to be available.
Co-authored-by: Baptiste Jonglez <git@bitsofnetworks.org>
|
|
Environment yaml files should not have default values written to them.
To accomplish this, we change the validator to not add the default values to yaml. We rely on the code to set defaults for all values (and use defaulting getters like dict.get(key, default)).
Includes regression test.
|
|
|
|
- fix trailing whitespace and other issues uncovered by better flake8
checking.
- fix extra whitespace printed by `spack style` command
|
|
This creates a set of packages which all use the same script to install
components of Intel oneAPI. This includes:
* An inheritable IntelOneApiPackage which knows how to invoke the
installation script based on which components are requested
* For components which include headers/libraries, an inheritable
IntelOneApiLibraryPackage is provided to locate them
* Individual packages for DAL, DNN, TBB, etc.
* A package for the Intel oneAPI compilers (icx/ifx). This also includes
icc/ifortran but these are not currently detected in this PR
|
|
Signed-off-by: Howard Pritchard <hppritcha@gmail.com>
|
|
I lost my mind a bit after getting the completion stuff working and
decided to get Mypy working for spack as well. This adds a
`.mypy.ini` that checks all of the spack and llnl modules, though
not yet packages, and fixes all of the identified missing types and
type issues for the spack library.
In addition to these changes, this includes:
* rename `spack flake8` to `spack style`
Aliases flake8 to style, and just runs flake8 as before, but with
a warning. The style command runs both `flake8` and `mypy`,
in sequence. Added --no-<tool> options to turn off one or the
other, they are on by default. Fixed two issues caught by the tools.
* stub typing module for python2.x
We don't support typing in Spack for python 2.x. To allow 2.x to
support `import typing` and `from typing import ...` without a
try/except dance to support old versions, this adds a stub module
*just* for python 2.x. Doing it this way means we can only reliably
use all type hints in python3.7+, and mypi.ini has been updated to
reflect that.
* add non-default black check to spack style
This is a first step to requiring black. It doesn't enforce it by
default, but it will check it if requested. Currently enforcing the
line length of 79 since that's what flake8 requires, but it's a bit odd
for a black formatted project to be quite that narrow. All settings are
in the style command since spack has no pyproject.toml and I don't
want to add one until more discussion happens. Also re-format
`style.py` since it no longer passed the black style check
with the new length.
* use style check in github action
Update the style and docs action to use `spack style`, adding in mypy
and black to the action even if it isn't running black right now.
|
|
* fix bazel on power9
* small fix in tensorflow package
* removed import not needed anymore
|
|
We have to repeat all the spec attributes in a number of places in
`concretize.lp`, and Spack has a fair number of spec attributes. If we
instead add some rules up front that establish equivalencies like this:
```
node(Package) :- attr("node", Package).
attr("node", Package) :- node(Package).
version(Package, Version) :- attr("version", Package, Version).
attr("version", Package, Version) :- version(Package, Version).
```
We can rewrite most of the repetitive conditions with `attr` and repeat
only for each arity (there are only 3 arities for spec attributes so far)
as opposed to each spec attribute. This makes the logic easier to read
and the rules easier to follow.
Co-authored-by: Massimiliano Culpo <massimiliano.culpo@gmail.com>
|