Commit graph

19465 commits

Author SHA1 Message Date
Andrew-Dunning-NNL
895c8b33d9
py-dpath: new recipe (#21331) 2021-01-27 14:46:40 -06:00
bryanherman
68a144eaa3
added package py-pytest-flakes (#21337) 2021-01-27 14:38:30 -06:00
Andrew-Dunning-NNL
52c32047ad
py-mailchecker: new recipe (#21346) 2021-01-27 14:33:23 -06:00
Andrew-Dunning-NNL
54f163f7dc
py-jsonpath-ng: new recipe (#21347) 2021-01-27 14:23:20 -06:00
Brian Van Essen
3cbc35dbdd
LBANN: add support for building with OneDNN. (#21305) 2021-01-27 21:11:31 +01:00
Brian Van Essen
aac3699748
OneDNN: add versions up to v2.1-rc (#21304) 2021-01-27 21:10:16 +01:00
Sergey Kosukhin
4d7a9df810
Add a context wrapper for mtime preservation (#21258)
Sometimes we need to patch a file that is a dependency for some other
automatically generated file that comes in a release tarball. As a
result, make tries to regenerate the dependent file using additional
tools (e.g. help2man), which would not be needed otherwise.

In some cases, it's preferable to avoid that (e.g. see #21255). A way
to do that is to save the modification timestamps before patching and
restoring them afterwards. This PR introduces a context wrapper that
does that.
2021-01-27 11:41:07 -08:00
Rao Garimella
f2c98a8537
portage: added v3.0.0, deleted old versions (#21293)
old versions won't build with the new recipe and the url 
specification doesn't work for them

Co-authored-by: Rao Garimella <rao@abyzou.lanl.gov>
2021-01-27 20:13:22 +01:00
Ben Morgan
5667759bf5
vecgeom: add v1.1.9 release (#21341) 2021-01-27 19:50:31 +01:00
Sergey Kosukhin
3cc5b7adc7
Python extensions: consistently set LDSHARED to get Spack RPATHs (#21149)
Python extensions use CC and LDSHARED from the sysconfig module to
build. When Spack installs Python, it replaces the Spack compiler
wrappers in these values with the underlying compilers (since these
wrappers are not useful outside of the context of running Spack).
In order to use the Spack compiler wrappers when building Python
extensions with Spack, Spack sets the LDSHARED environment variable
when running `Python.setup_py` (which overrides sysconfig). However,
many Python extensions use an alternative method to build (namely
PythonPackage.setup_py), which meant that LDSHARED was not set (and
RPATHs were not inserted for dependencies).

This commit makes the following changes:

* Sets LDSHARED in the environment: this applies to all commands
  executed during the build, rather than for a single command
  invocation
* Updates the logic to set LDSHARED: this replaces the compiler
  executable in LDSHARED with the Spack compiler wrapper. This
  means that for some externally-built instances of Python,
  Spack will now switch to using the Spack wrappers when building
  extensions. The behavior is expected to be the same for Spack-
  built instances of Python.
* Performs similar modifications for LDCXXSHARED (to ensure RPATHs
  are included for C++ codes)
2021-01-27 10:20:36 -08:00
Mark C. Miller
f766585882
Doc default behavior of install tests (#21309)
Co-authored-by: Tamara Dahlgren <35777542+tldahlgren@users.noreply.github.com>
2021-01-27 09:08:27 -08:00
William Downs
6ba2e3ee5d
gchp: added new package (#21310)
Co-authored-by: Massimiliano Culpo <massimiliano.culpo@gmail.com>
2021-01-27 18:02:55 +01:00
Luca Heltai
8a7487773b
dealii: added support for simplices, updated sundials (#20621) 2021-01-27 17:02:15 +01:00
bryanherman
c52e95d681
cxxtest: added new package (#21323) 2021-01-27 16:26:26 +01:00
bryanherman
fbdc8b65b1
mesa: add dependency on zlib (#21325)
When installing mesa in an offline environment, mesa tries to download zlib.
2021-01-27 15:19:03 +01:00
Baptiste Jonglez
0efe54f722
mxnet: Fix python lib installation (#21298) 2021-01-27 07:53:09 -06:00
Ben Morgan
561557d2f5
py-h5py: add build dependency on py-wheel (#21320)
h5py requires wheel at build time from version 3.0.0, based on
the project's pyproject.toml.
2021-01-27 08:43:21 -05:00
Brian Van Essen
b8b432c3aa
lbann: add support for building just the LBANN core library (#21235)
Variants to disable vision libraries and NumPy support.
2021-01-27 13:42:49 +01:00
bryanherman
cbdf87cd28
boost: restrict lower bound of ranges for two patches (#21321) 2021-01-27 13:28:29 +01:00
Mohan
4977dcfe9b
knem: added a patch for v1.1.4 (#21312)
Co-authored-by: amd-toolchain-support <toolchainsupport@amd.com>
2021-01-27 13:27:10 +01:00
Brian Spilner
258bfff1da
cdo: add v1.9.10 (#21315) 2021-01-27 11:32:49 +01:00
takanori-ihara
e83cce313b
fujitsu-ssl2: remove mentions of libfj90rt2.a (#21308) 2021-01-27 11:32:23 +01:00
Glenn Johnson
84234e224c
mafft: add v7.475 and build extensions (#21301) 2021-01-27 10:55:51 +01:00
darmac
88325cada8
r-xvector: add dependency on zlib (#21286) 2021-01-27 10:22:34 +01:00
Tomoyasu Nojiri
503f2f1bbc
xterm: add dependency on termcap (#21314) 2021-01-27 09:50:21 +01:00
Brian Van Essen
46153a8201
NVSHMEM package (#21279) 2021-01-27 09:49:53 +01:00
Baptiste Jonglez
3626ab2697
libsodium: Fix build on ppc64le (#21256)
On ppc64le and aarch64, Spack tries to execute any "config.guess" and
"config.sub" scripts it finds in the source package.

However, in the libsodium tarball, these files are present but not
executable.  This causes the following error when trying to install
libsodium with spack:

    Error: RuntimeError: Failed to find suitable substitutes for config.sub, config.guess

Fix this by chmod-ing the scripts in the patch() function of libsodium.
2021-01-27 09:40:10 +01:00
Adam J. Stewart
aa8e026242
spack setup: remove the command for v0.17.0 (#20277)
spack setup was deprecated in 0.16 and will be removed in 0.17

Follow-up to #18240
2021-01-27 09:24:09 +01:00
Michael Kuhn
0366d49c6e
mpich: add 3.4.1 (#21302) 2021-01-26 23:13:14 +01:00
Anton Loukianov
fe35ada685
nextflow: new version (#21276) 2021-01-26 22:59:49 +01:00
Vicente Bolea
104c826e33
ParaView: add ParaView-5.9.0 new release (#21268) 2021-01-26 22:58:48 +01:00
bryanherman
5cd0a9ab8e Update var/spack/repos/builtin/packages/py-shtab/package.py
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
2021-01-26 15:24:18 -06:00
bryanherman
86c906e24f Update var/spack/repos/builtin/packages/py-shtab/package.py
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
2021-01-26 15:24:18 -06:00
bryanherman
52630d9b96 Update var/spack/repos/builtin/packages/py-shtab/package.py
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
2021-01-26 15:24:18 -06:00
Bryan Herman
430b7f3ebd added package py-shtab 2021-01-26 15:24:18 -06:00
bryanherman
4a6676c441 Update var/spack/repos/builtin/packages/py-paramiko/package.py
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
2021-01-26 15:23:17 -06:00
Bryan Herman
b527e43615 added invoke variant to py-paramiko 2021-01-26 15:23:17 -06:00
Bryan Herman
3455647011 added package py-sortedcollections 2021-01-26 15:23:02 -06:00
bryanherman
4e465e230e Update var/spack/repos/builtin/packages/py-rich/package.py
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
2021-01-26 15:22:48 -06:00
bryanherman
93a7f57299 Update var/spack/repos/builtin/packages/py-rich/package.py
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
2021-01-26 15:22:48 -06:00
bryanherman
eb1270d917 Update var/spack/repos/builtin/packages/py-rich/package.py
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
2021-01-26 15:22:48 -06:00
Bryan Herman
53f299d0d5 dont cap future python versions 2021-01-26 15:22:48 -06:00
Bryan Herman
08413844f1 added py-rich package 2021-01-26 15:22:48 -06:00
Paul
c03a2d0697
Added Go versions 1.15.7 and 1.14.14 (#21294) 2021-01-26 22:19:13 +01:00
Harsh Bhatia
04225d3cef new package: callflow 2021-01-26 14:40:28 -06:00
Harsh Bhatia
a4e67c35de added flask-cors 2021-01-26 14:40:28 -06:00
kean-smullen-nnl
889c86bdb1
dakota: fix build dependencies (#20697) 2021-01-26 19:04:39 +01:00
Erik Schnetter
325510da5c
qthreads: New version 1.16 (#21159) 2021-01-26 18:53:46 +01:00
Tomoyasu Nojiri
90009d67a9
py-prompt-toolkit: Add version 2.0.10 for py-spatialist (#21281) 2021-01-26 11:26:26 -06:00
bryanherman
6b16d61a80
Added package py-nanotime (#21287) 2021-01-26 11:22:19 -06:00