diff options
author | Elizabeth Fischer <rpf2116@columbia.edu> | 2017-02-07 21:23:33 -0500 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2017-02-07 18:23:33 -0800 |
commit | 892955cc460ddb9d611246a81cdd463abc1b31c1 (patch) | |
tree | 010ca9961a2a818f5957c146ccaf967308f035d1 | |
parent | 426405195454b1f40a3a62483bd985a122c504d3 (diff) | |
download | spack-892955cc460ddb9d611246a81cdd463abc1b31c1.tar.gz spack-892955cc460ddb9d611246a81cdd463abc1b31c1.tar.bz2 spack-892955cc460ddb9d611246a81cdd463abc1b31c1.tar.xz spack-892955cc460ddb9d611246a81cdd463abc1b31c1.zip |
Add comments documenting problems in recent versions of NetCDF. (#3058)
-rw-r--r-- | var/spack/repos/builtin/packages/netcdf/package.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/netcdf/package.py b/var/spack/repos/builtin/packages/netcdf/package.py index 34d3bd41c6..f512ecf2ea 100644 --- a/var/spack/repos/builtin/packages/netcdf/package.py +++ b/var/spack/repos/builtin/packages/netcdf/package.py @@ -33,7 +33,11 @@ class Netcdf(AutotoolsPackage): homepage = "http://www.unidata.ucar.edu/software/netcdf" url = "http://www.gfd-dennou.org/arch/netcdf/unidata-mirror/netcdf-4.3.3.tar.gz" + # Version 4.4.1.1 is having problems in tests + # https://github.com/Unidata/netcdf-c/issues/343 version('4.4.1.1', '503a2d6b6035d116ed53b1d80c811bda') + # netcdf@4.4.1 can crash on you (in real life and in tests). See: + # https://github.com/Unidata/netcdf-c/issues/282 version('4.4.1', '7843e35b661c99e1d49e60791d5072d8') version('4.4.0', 'cffda0cbd97fdb3a06e9274f7aef438e') version('4.3.3.1', '5c9dad3705a3408d27f696e5b31fb88c') |