Fixed URLs

Removed vestigal mpi variant in netcdf-fortran
This commit is contained in:
citibeth 2016-03-05 23:05:45 -05:00
parent 648d08eb30
commit ae87948a23
3 changed files with 2 additions and 5 deletions

View file

@ -11,6 +11,5 @@ class NetcdfCxx4(Package):
def install(self, spec, prefix): def install(self, spec, prefix):
configure('--prefix=%s' % prefix) configure('--prefix=%s' % prefix)
make() make()
make("install") make("install")

View file

@ -3,13 +3,11 @@
class NetcdfFortran(Package): class NetcdfFortran(Package):
"""Fortran interface for NetCDF4""" """Fortran interface for NetCDF4"""
homepage = "http://www.unidata.ucar.edu/downloads/netcdf/netcdf-cxx/index.jsp" homepage = "http://www.unidata.ucar.edu/software/netcdf"
url = "http://www.unidata.ucar.edu/downloads/netcdf/ftp/netcdf-fortran-4.4.3.tar.gz" url = "http://www.unidata.ucar.edu/downloads/netcdf/ftp/netcdf-fortran-4.4.3.tar.gz"
version('4.4.3', 'bfd4ae23a34635b273d3eb0d91cbde9e') version('4.4.3', 'bfd4ae23a34635b273d3eb0d91cbde9e')
variant('mpi', default=True, description='Enables MPI parallelism')
depends_on('netcdf') depends_on('netcdf')
def install(self, spec, prefix): def install(self, spec, prefix):

View file

@ -6,7 +6,7 @@ class Netcdf(Package):
data formats that support the creation, access, and sharing of array-oriented data formats that support the creation, access, and sharing of array-oriented
scientific data.""" scientific data."""
homepage = "http://www.unidata.ucar.edu/software/netcdf/" homepage = "http://www.unidata.ucar.edu/software/netcdf"
url = "ftp://ftp.unidata.ucar.edu/pub/netcdf/netcdf-4.3.3.tar.gz" url = "ftp://ftp.unidata.ucar.edu/pub/netcdf/netcdf-4.3.3.tar.gz"
version('4.4.0', 'cffda0cbd97fdb3a06e9274f7aef438e') version('4.4.0', 'cffda0cbd97fdb3a06e9274f7aef438e')