diff options
author | RĂ©mi Lacroix <remi.lacroix@idris.fr> | 2023-04-17 19:02:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-17 10:02:54 -0700 |
commit | 8e50c08b3f134a9ec18e502f5446c734da50b26a (patch) | |
tree | 6430c9a1e007ffb77937a438007349c91902bbe7 | |
parent | 121ef695e338a660ca4cff376d1c8583760cb8b0 (diff) | |
download | spack-8e50c08b3f134a9ec18e502f5446c734da50b26a.tar.gz spack-8e50c08b3f134a9ec18e502f5446c734da50b26a.tar.bz2 spack-8e50c08b3f134a9ec18e502f5446c734da50b26a.tar.xz spack-8e50c08b3f134a9ec18e502f5446c734da50b26a.zip |
Add NetCDF95 package. (#36959)
* Add NetCDF95 package.
NetCDF95 is an alternative Fortran interface to the NetCDF library which uses Fortran 2003 features.
* [@spackbot] updating style on behalf of RemiLacroix-IDRIS
---------
Co-authored-by: RemiLacroix-IDRIS <RemiLacroix-IDRIS@users.noreply.github.com>
-rw-r--r-- | var/spack/repos/builtin/packages/netcdf95/package.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/netcdf95/package.py b/var/spack/repos/builtin/packages/netcdf95/package.py new file mode 100644 index 0000000000..9f3c4a128b --- /dev/null +++ b/var/spack/repos/builtin/packages/netcdf95/package.py @@ -0,0 +1,20 @@ +# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack.package import * + + +class Netcdf95(CMakePackage): + """NetCDF95 is an alternative Fortran interface to the NetCDF library + which uses Fortran 2003 features.""" + + homepage = "https://lguez.github.io/NetCDF95/" + git = "https://github.com/lguez/NetCDF95.git" + + maintainers = ["RemiLacroix-IDRIS"] + + version("0.3", tag="v0.3", submodules=True) + + depends_on("netcdf-fortran") |