Merge pull request #1092 from adamjstewart/features/netcdf-f

Add latest version of netcdf-fortran and curl
This commit is contained in:
Todd Gamblin 2016-06-26 22:38:00 -07:00 committed by GitHub
commit bad32724ec
2 changed files with 4 additions and 0 deletions

View File

@ -24,6 +24,7 @@
############################################################################## ##############################################################################
from spack import * from spack import *
class Curl(Package): class Curl(Package):
"""cURL is an open source command line tool and library for """cURL is an open source command line tool and library for
transferring data with URL syntax""" transferring data with URL syntax"""
@ -31,6 +32,7 @@ class Curl(Package):
homepage = "http://curl.haxx.se" homepage = "http://curl.haxx.se"
url = "http://curl.haxx.se/download/curl-7.46.0.tar.bz2" url = "http://curl.haxx.se/download/curl-7.46.0.tar.bz2"
version('7.49.1', '6bb1f7af5b58b30e4e6414b8c1abccab')
version('7.47.1', '9ea3123449439bbd960cd25cf98796fb') version('7.47.1', '9ea3123449439bbd960cd25cf98796fb')
version('7.46.0', '9979f989a2a9930d10f1b3deeabc2148') version('7.46.0', '9979f989a2a9930d10f1b3deeabc2148')
version('7.45.0', '62c1a352b28558f25ba6209214beadc8') version('7.45.0', '62c1a352b28558f25ba6209214beadc8')

View File

@ -24,12 +24,14 @@
############################################################################## ##############################################################################
from spack import * from spack import *
class NetcdfFortran(Package): class NetcdfFortran(Package):
"""Fortran interface for NetCDF4""" """Fortran interface for NetCDF4"""
homepage = "http://www.unidata.ucar.edu/software/netcdf" 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.4', 'e855c789cd72e1b8bc1354366bf6ac72')
version('4.4.3', 'bfd4ae23a34635b273d3eb0d91cbde9e') version('4.4.3', 'bfd4ae23a34635b273d3eb0d91cbde9e')
depends_on('netcdf') depends_on('netcdf')