Age | Commit message (Collapse) | Author | Files | Lines |
|
Windows executable paths can have spaces in them, which was leading to
errors when constructing Executable objects: the parser was intended
to handle cases where users could provide an executable along with one
or more space-delimited arguments.
* Executable now assumes that it is constructed with a string argument
that represents the path to the executable, but no additional arguments.
* Invocations of Executable.__init__ that depended on this have been
updated (this includes the core, tests, and one instance of builtin
repository package).
* The error handling for failed invocations of Executable.__call__ now
includes a check for whether the executable name/path contains a
space, to help users debug cases where they (now incorrectly)
concatenate the path and the arguments.
|
|
|
|
|
|
* The module-level skip for tests in `cmd.install` on Windows is removed.
A few classes of errors still persist:
* Cdash tests are not working on Windows
* Tests for failed installs are also not working (this will require
investigating bugs in output redirection)
* Environments are not yet supported on Windows
overall though, this enables testing of most basic uses of "spack install"
* Git repositories cached for version lookups were using a layout that
mimicked the URL as much as possible. This was useful for listing the
cache directory and understanding what was present at a glance, but
the paths were overly long on Windows. On all systems, the layout is
now a single directory based on a hash of the Git URL and is shortened
(which ensures a consistent and acceptable length, and also avoids
special characters).
* In particular, this removes util.url.parse_git_url and its associated
test, which were used exclusively for generating the git cache layout
* Bootstrapping is now enabled for unit tests on Windows
|
|
|
|
|
|
|
|
|
|
Change the shebang in mkinc from /usr/bin/perl to /usr/bin/env perl for
portability to systems that don't necessarily have perl in /usr/bin.
Also adds perl as a build-time dependency.
|
|
|
|
|
|
|
|
Release notes: https://github.com/AIDASoft/DD4hep/releases/tag/v01-26
Diff: https://github.com/AIDASoft/DD4hep/compare/v01-25-01...v01-26
Relevant changes:
- updated requirements on cmake,
- can now support compressed hepmc3.
---------
Co-authored-by: wdconinc <wdconinc@users.noreply.github.com>
Co-authored-by: Massimiliano Culpo <massimiliano.culpo@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Last release 13 years ago, before python 3.2 was released. No depedendents or next of kin could be located.
|
|
* bazel: pretty print is all but pretty
* Don't ask bazel to explain what it's up to
|
|
|
|
|
|
|
|
This allows users to install cernlib with static libraries only, instead of both static and shared.
|
|
|
|
|
|
* WarpX 23.07
Update WarpX and related Python packages to the lastest releases.
* py-picmistandard: refresh hashes
Keeping even a single `git` version in here confuses the fetcher.
Remove broken old versions.
* Remove `py-warpx` versions with broken PICMI
|
|
* py-cryptography: does not run-depend on py-setuptools-rust
* py-cryptography: depens_on py-setuptools-rust when @3.4.2:
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
* py-cryptography: re-add depends_on type=run for narrow range
---------
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
|
|
Co-authored-by: Alex Richert <alexander.richert@noaa.gov>
|
|
Co-authored-by: Cristian Di Pietrantonio <cdipietrantonio@pawsey.org.au>
|
|
|
|
|
|
|
|
* fix(sgpp): Fix installation phase scons args
* fix(sgpp): Workaround for distutils deprecation
The distutils deprecation warning in Python 3.10 - 3.11 caused
problems within the SGpp SConfigure checks by causing failures
when looking for Python.h. This commit works around this by adding a
patch that simply disables the warning. It also puts limits on the
python dependency version until distutils is removed from SGpp.
* fix(sgpp): cleanup and simplify
* fix(sgpp): Fix style
|
|
|
|
|
|
|
|
Remove git versions deprecated in Spack 0.19
|
|
|
|
mkl (#39343)
* Update package.py
Adding `mpi` variant to deal with external oneapi-mkl usage per #38238.
* style conformance
* accept both mpi specification mechanisms
* style conformance
* Update package.py
* Update var/spack/repos/builtin/packages/intel-oneapi-mkl/package.py
Co-authored-by: Robert Cohn <rscohn2@gmail.com>
* rename mpi variant mpi_family
* style conformance
* update help message for mpi_family
---------
Co-authored-by: Robert Cohn <rscohn2@gmail.com>
|
|
Co-authored-by: Harmen Stoppels <harmenstoppels@gmail.com>
|
|
|
|
`cmake+qt` depends on `qt`, which depends on `libmng`, which is a CMake
package, and has been for 4 years. Nobody ever complained about
`cmake+qt` not concretizing... so why pay the solve cost.
Before:
```
setup 3.779s
load 0.018s
ground 2.625s
solve 4.511s
total 11.236s
```
After:
```
setup 3.734s
load 0.018s
ground 0.468s
solve 0.560s
total 5.080s
```
|
|
Co-authored-by: Cristian Di Pietrantonio <cdipietrantonio@pawsey.org.au>
|
|
Co-authored-by: jmcarcell <jmcarcell@users.noreply.github.com>
|
|
* picard: add variant with jvm arguments
* fix variant and update wrapper script
---------
Signed-off-by: Pablo <pablo.aledo@seqera.io>
|
|
|
|
|
|
* AMReX: 23.06+ Multi-Dim Support
This updated the Spack package to allow to install AMReX, modules of
AMReX in E4S deployments and dependent packages with support for
multiple dimensions. Due to an upstream change in AMReX, we do not
longer need to ship three, binary incompatible package variants.
* [E4S] oneAPI AMReX < 23.06 Variant
Work-around the auto-concretization to the multi-dim of `dimensions`,
which only in 23.06+ became a multi-variant.
* e4s cray rhel ci: temporarily disable amrex build until spurious ci failure can be resolved
---------
Co-authored-by: eugeneswalker <eugenesunsetwalker@gmail.com>
|