diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2016-04-04 10:18:15 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-04-04 10:18:15 -0700 |
commit | 266f64d848387b7d36b89f138c8c068ae3b03b70 (patch) | |
tree | d9f72616b435baef63cc4b9f15ce8571340e9326 /var | |
parent | 2d49842cd1fc90366a7d63f77de0c832ac18dbac (diff) | |
parent | 40c279ef95a92ef3274fda7ae8dbff4c790ff4cd (diff) | |
download | spack-266f64d848387b7d36b89f138c8c068ae3b03b70.tar.gz spack-266f64d848387b7d36b89f138c8c068ae3b03b70.tar.bz2 spack-266f64d848387b7d36b89f138c8c068ae3b03b70.tar.xz spack-266f64d848387b7d36b89f138c8c068ae3b03b70.zip |
Merge pull request #725 from citibeth/efischer/160402-NetCDFCXX
Added deprecation warning to netcdf-cxx
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/netcdf-cxx/package.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/netcdf-cxx/package.py b/var/spack/repos/builtin/packages/netcdf-cxx/package.py index 5334dfb853..8aa1d8b236 100644 --- a/var/spack/repos/builtin/packages/netcdf-cxx/package.py +++ b/var/spack/repos/builtin/packages/netcdf-cxx/package.py @@ -1,7 +1,11 @@ from spack import * class NetcdfCxx(Package): - """C++ compatibility bindings for NetCDF""" + """Deprecated C++ compatibility bindings for NetCDF. + These do NOT read or write NetCDF-4 files, and are no longer + maintained by Unidata. Developers should migrate to current + NetCDF C++ bindings, in Spack package netcdf-cxx4.""" + homepage = "http://www.unidata.ucar.edu/software/netcdf" url = "http://www.unidata.ucar.edu/downloads/netcdf/ftp/netcdf-cxx-4.2.tar.gz" |