Commit graph

10421 commits

Author SHA1 Message Date
Mark W. Krentel
ab8870fd51 gcc: fix sys_ustat.h patch for gcc 4.8 and 4.9 (#10081)
The sys_ustat.h.patch to file sanitizer_platform_limits_posix.cc from
PR #10046 does not apply cleanly to gcc 4.8 or 4.9 (or earlier).

GCC up to 4.8.x either don't have libsanitizer or else don't include
ustat.h in sanitizer_platform_limits_posix.cc.

GCC 4.9.x includes ustat.h, but needs a slightly different patch.

The patch applies to GCC 5.x up to 6.4, and 7.x up to 7.3 and also
8.1.0.

The patch is already included in the tar files for gcc 6.5.0, 7.4.0
and 8.2.0.
2018-12-11 22:54:12 -06:00
Stephen Herbein
92229e46e3 flux-core & flux-sched: fix compilation and dependencies (#10049)
* flux-sched: fix compilation errors

configure was being run twice becuase the staging symlinks were
confusing autotools

mirror flux-core in building in a subdirectory to avoid other common
compilation problems, like the one in PR #3543

* flux-core: update dependencies

munge is no longer a dependency

provide hints for lua version so that `spack install flux-core` works
"out-of-the-box". Currently, when no explicity version is provided, the
concretizer attempts to use lua@5.3, which is invalid. Closes #10000
2018-12-11 22:34:58 -06:00
Brian Van Essen
abd575f273 Update LBANN generator and bug fix (#9906)
* Added a package for the MDAnalysis toolkit.

* Added Ninja as the generator for LBANN, Hydrogen, and Aluminum.  Also
fixed a bug in how the Conduit variant is included in LBANN.  Added
new versions for Hydrogen and LBANN.

* Updated lbann package so that the CMAKE parameters are set when the
variant is on and off.
2018-12-10 15:12:43 -08:00
Adam J. Stewart
ad046402b6 Make downloads from list_url deterministic (#10047) 2018-12-10 14:36:55 +01:00
Lukasz
22446d7303 mofem: add new releases and minor changes (#9138) 2018-12-10 14:33:31 +01:00
Matthias Diener
2670823c1e cloc: URLs are now consistent (#10068)
Fixed in upstream:
https://github.com/AlDanial/cloc/issues/352
2018-12-10 14:28:52 +01:00
Tom Payerle
8f0fc259c8 metis: Fix issues with gcc6 and misleading indentation (#10058)
Added patch to GKlibSystem.cmake to disable warnings (which get
promoted to errors) due to -Wmisleading-indentation being added
to -Wall in gcc 6
2018-12-09 13:08:38 -06:00
Matthias Diener
f0326c0ccf gcc: add versions 7.4, 6.5 (#10061) 2018-12-08 09:22:28 -06:00
Jon Rood
2f80432f62 OpenMPI: adding static libraries with slurm support for latest versions. (#10055) 2018-12-08 13:49:09 +01:00
Abhinav Bhatele
05155cbc59 TraceR: add release tag/version (#10054) 2018-12-08 01:09:48 -06:00
Cameron Smith
130706d1b8 pumi: shared variant (#10057) 2018-12-08 01:08:58 -06:00
Matthias Diener
718379eea1 eztrace: add new package (#10060) 2018-12-08 01:06:28 -06:00
Justin Stanley
3955f7cba5 r-expint: new package at 0.1-5 (#10043) 2018-12-07 18:21:40 -08:00
Axel Huebl
892ae2043f Fix Catch2 Single Header (#10022)
Fix the install of the single header amalgate in catch2.

The public API for catch < 2.3.0 was "#include <catch.hpp>".
For 2.3.0+ it is "#include <catch2/catch.hpp>"
2018-12-07 18:13:40 -08:00
James Clark
1650e9c0b2 gcc: Add patch to build GCC with glibc 2.28 and later (#10046) 2018-12-07 18:06:07 -08:00
Justin Stanley
4471f9ea32 pbsuite: new package at 15.8.24 (#10059) 2018-12-07 18:01:44 -08:00
Justin Stanley
4d5b136270 scallop: new package at 0.10.3 (#10041) 2018-12-07 17:39:07 -08:00
Justin Stanley
76ab54caec r-sseq: new package at 1.20.0 (#10042) 2018-12-07 11:24:55 -06:00
Justin Stanley
d72ba01a71 r-blockmodeling: new package at 0.3.1 (#10044) 2018-12-07 11:24:43 -06:00
Mario Melara
138d74f40c Spades: Add version 3.13.0 (#10033)
* Spades: Add version 3.13.0

In version 3.13.0 the CmakeLists.txt dir is at a different location than
in other versions. Versions up to 3.12.0 are located in "src" whereas
3.13.0 is a level deeper at "assemblers/src".

* Remove git and add new version hash
2018-12-07 11:24:17 -06:00
Justin Stanley
fb5880ab14 clp: new package at 1.16.11 (#10040) 2018-12-06 19:31:33 -08:00
Michael Kuhn
6ec8e4146f cdo: fix URLs (#10025) 2018-12-06 18:04:50 -06:00
Gregory Becker
b072c9b457 multimethod: slight refactoring, documentation for code review 2018-12-06 15:48:23 -08:00
Gregory Becker
2621af41d1 fix MRO for multimethod.__call__ using iterative algorithm.
Add tests MRO for inherited multimethods with multiple inheritance
Add tests for inherited and overridden multimethods
2018-12-06 15:48:23 -08:00
Todd Gamblin
43d94d4a30 tests: fully parametrize multimethod test
- all multimethod tests are now run for both `multimethod` and
  `multimethod-inheritor`

- do this with a parameterized fixture (pkg_name) that runs the same
  tests on both
2018-12-06 15:48:23 -08:00
Todd Gamblin
61b859193d multimethod uses Spec() instead of parse_anonymous_spec()
- simplify logic in multimethod
- remove the requirement of multimethod invocations to walk up the stack.
2018-12-06 15:48:23 -08:00
Todd Gamblin
88cb11758b spec: refactor and clean up Spec initialization
- Since early Spack versions, the SpecParser has (weirdly) been
  responsible for initializing Spec fields.

- This refactors initialization to take place in Spec.__init__, as it
  probably should have originally.

- This makes the code easier to read, the parser easier to understand,
  and removes the use of __new__ in the parser to initialize the Spec.

- This also makes it possible to make a completely empty Spec with
  `Spec()` -- this is an abstract Spec that will match anything.
2018-12-06 15:48:23 -08:00
Todd Gamblin
e0d22519cd remove spurious print in zlib patch method 2018-12-06 15:48:23 -08:00
Gregory Becker
7bb7b94666 Added test for multimethod inheritance 2018-12-06 15:48:23 -08:00
Satish Balay
f35a91a88a
superlu-dist: update to version 6.1.0 (#10037) 2018-12-06 09:46:17 -06:00
Jon Rood
bba6df4a1f Adding patch to remove unicode character from pyrope readme file (#9988)
* Adding new versions of py-rope.
2018-12-06 11:11:23 +01:00
Nichols A. Romero
298da8e2c4 Quantum ESPRESSO update - Nov 2018 (#9853)
* Add mising QE releases.

* Update QE dependencies and conflicts.

* QE 6.3 install method requires a patch to work properly.

* include QE git develop branch

* QE HDF5 needs Fortran support. HDF5 versions prior to 1.8.16 leads to QE runtime errors.

* Number of MKL related conflicts for QE.

* Flake8 fixes for QE for hdf5 lines.

* Pass in all compilers properly to QE configure

* Fixed external BLAS/LAPACK linkage in QE.

* Library search was problematic in QE.

* Add section headings to QE package.

* External FFTW compatible libraries properly detected in QE.

* Flake8 fixes for QE

* QE configure defaults to False for ELPA, thus Spack package should as well.

* QE depends on FFTW3 provider instead of FFTW explictly.

* Primary QE repo is gitlab.com, not github.com. Github mirror lags behind gitlab site.

* Support both 6.3-backports branch and develop branch in QE.

* QE patch needed for proper MKL detection. MKL_ROOT is detected and preferred, still falls back to finding first MKL installation in /opt/intel.

* Use FFTW-API provider versioned interface for specify QE FFT dependency.

* QE FFTW conflicts no longer need thanks to FFTW-API provider versioned interface.

* Flake8 3.6.0 fix in support of https://github.com/spack/spack/pull/9853

* Fix QE conflict with ilp64 variant in support of https://github.com/spack/spack/pull/9853

* Remove custom url_for_version for QE package and use builtin url instead. In support of https://github.com/spack/spack/pull/9853

* Use FFTW builtin flags for QE instead of custom Python code. In support of https://github.com/spack/spack/pull/9853

* Fix typo in QE package comments. In support of https://github.com/spack/spack/pull/9853

* Future proof QE package patches in anticipation of QE >= 6.3.1. In support of https://github.com/spack/spack/pull/9853
2018-12-06 10:57:52 +01:00
Eric
dcb27c008a DIAMOND: Add version 0.9.23 (#10030) 2018-12-05 19:16:51 -06:00
Jannek Squar
8951cc5d77 Fix doxygen package (#10021) 2018-12-05 19:02:38 -06:00
Matthias Diener
0009854e33 cloc: add version 1.80 (#10029) 2018-12-05 18:55:27 -06:00
sknigh
060d1944d4 Rewrite Rust package (#9998) 2018-12-05 20:15:45 +01:00
Matthias Diener
5434a25076 openblas: add version 0.3.4 (#10016) 2018-12-05 08:41:58 -06:00
Christoph Junghans
d149ab63a9
pfunit: add mpi-test patch (#9387) 2018-12-05 06:15:16 -07:00
Jon Rood
583617ed67 Hwloc and numactl updates (#9987)
* Adding version 2.0.12 of numactl.

* Adding new versions of hwloc.

* Adding NVML variant to hwloc.

* Adding gl variant to hwloc.

* Updating hwloc numactl dependency and gl dependency.

* Using gl virtual package in hwloc.
2018-12-05 10:26:53 +01:00
Justin Stanley
87bf5296c3 biobloom: new package at 2.2.0 (#10014) 2018-12-04 17:20:24 -06:00
Justin Stanley
68a0305e13 sdsl-lite: new package at 2.1.1 (#10013) 2018-12-04 17:20:10 -06:00
Miles Perry
6020123a0b added bwa runtime dep (#10012) 2018-12-04 17:19:56 -06:00
Matthias Diener
deda7fdd60 ffmpeg: add version 4.1 (#10015) 2018-12-04 17:19:40 -06:00
Denis Davydov
121362383b dealii: do not hardcode prefix.include for BLAS/LAPACK (#10008)
* dealii: do not hardcode prefix.include for BLAS/LAPACK

* dealii: rename lapack_blas -> lapack_blas_libs
2018-12-04 16:55:41 -06:00
HAOCHENG LIU
ce485731bb Remove openmp version guard in vtkm and add precision options (#10005)
Clang 8.0 now supports openmp 4.5 and many commerical compilers also support
openmp >= 4.0. This commit removes the openmp version guard and rely on CMake
to throw errors out when openmp version requirement is not satisified.

It also add options for precision control.
2018-12-04 11:53:17 -08:00
Greg Sjaardema
9f8e445510 CGNS: Add option for 64-bit integers (#9990)
* CGNS: Add option for 64-bit integers

Added the `int64` variant which will build the library using 64-bit integers for certain values.  This gives the capability to have models with more than 2 billion cells and/or nodes.  

Beginning with CGNS-3.1.0, two new typedef variables have been introduced to support 64-bit mode. The `cglong_t` typedef is always a 64-bit integer, and `cgsize_t` will be either a 32-bit or 64-bit integer depending on how the library was built. Many of the C functions in the MLL have been changed to to use `cgsize_t` instead of `int` in the arguments. These functions include any that may exceed the 2Gb limit of an` int`, e.g. zone dimensions, element data, boundary conditions, and connectivity. In Fortran, all integer data is taken to be `integer*4` for 32-bit and `integer*8` for 64-bit builds.
2018-12-04 18:13:49 +01:00
Greg Sjaardema
ec67bbec2f EXODUS: Update version and dependencies (#9971)
* EXODUS: Update version and dependencies

Allow pulling master version from git.  Note that I hope to have better versioning "soon"

Add requirement to use Netcdf-4.6.1 or later as those versions no longer require changing the `maxdims` or `maxvars` defines in the netcdf.h include file.  With these versions, Exodus can use an unmodified NetCDF.  These versions of NetCDF are also better than previous versions (code quality, performance, robustness).

It is still possible to run exodusII with previous NetCDF versions, but I don't know how to specify that the dependency where maxdims/maxvars variants are only needed for versions prior to 4.6.0.  

I also removed the explicit dependency on HDF5 as that dependency should be applied through the NetCDF dependency.

* Remove white-space on blank line
2018-12-04 09:48:15 -06:00
Axel Huebl
427993b951 c-blosc: 1.15.0 (#10009)
Add latest version of c-blosc.
2018-12-04 09:10:08 -06:00
Kelly (KT) Thompson
4d26faac81 Provide a new spackage for py-pint. (#9991)
* Provide a new spackage for py-pint.

Pint is a Python package to define, operate and manipulate physical quantities:
the product of a numerical value and a unit of measurement. It allows arithmetic
operations between them and conversions from and to different
units. https://pint.readthedocs.io/en/latest/

* Switch hash from md5 to sha256.
2018-12-04 08:58:11 -06:00
Greg Sjaardema
b471e2768b MATIO: New versions (#9993)
Add several new versions so that current functionality can be accessed.  Current version is now 1.5.13.

Update `url`, `list_url`, and `list_depth` so spack can find available versions
2018-12-04 08:53:15 -06:00