More specific dependency versions, wrap make check (#1962)

This commit is contained in:
Adam J. Stewart 2016-10-11 03:36:40 -05:00 committed by Todd Gamblin
parent 7fd639d6fc
commit 5988b3a222
3 changed files with 25 additions and 12 deletions

View File

@ -39,9 +39,9 @@ class Hdf(Package):
variant('szip', default=False, description="Enable szip support")
depends_on('jpeg')
depends_on('jpeg@6b:')
depends_on('szip', when='+szip')
depends_on('zlib')
depends_on('zlib@1.1.4:')
depends_on('bison', type='build')
depends_on('flex', type='build')
@ -49,9 +49,9 @@ class Hdf(Package):
def install(self, spec, prefix):
config_args = [
'CFLAGS=-fPIC',
'--prefix=%s' % prefix,
'--with-jpeg=%s' % spec['jpeg'].prefix,
'--with-zlib=%s' % spec['zlib'].prefix,
'--prefix={0}'.format(prefix),
'--with-jpeg={0}'.format(spec['jpeg'].prefix),
'--with-zlib={0}'.format(spec['zlib'].prefix),
'--disable-netcdf', # must be disabled to build NetCDF with HDF4
'--enable-fortran',
'--disable-shared', # fortran and shared libs are not compatible
@ -59,12 +59,17 @@ def install(self, spec, prefix):
'--enable-production'
]
# SZip support
# Szip support
if '+szip' in spec:
config_args.append('--with-szlib=%s' % spec['szip'].prefix)
config_args.append('--with-szlib={0}'.format(spec['szip'].prefix))
else:
config_args.append('--without-szlib')
configure(*config_args)
make()
make('check')
if self.run_tests:
make('check')
make('install')

View File

@ -60,7 +60,7 @@ class Hdf5(Package):
depends_on("mpi", when='+mpi')
depends_on("szip", when='+szip')
depends_on("zlib")
depends_on("zlib@1.1.2:")
def validate(self, spec):
"""
@ -144,6 +144,10 @@ def install(self, spec, prefix):
"--with-zlib=%s" % spec['zlib'].prefix,
*extra_args)
make()
if self.run_tests:
make("check")
make("install")
self.check_install(spec)

View File

@ -46,10 +46,10 @@ class Netcdf(Package):
depends_on("hdf", when='+hdf4')
# Required for DAP support
depends_on("curl")
depends_on("curl@7.18.0:")
# Required for NetCDF-4 support
depends_on("zlib")
depends_on("zlib@1.2.5:")
depends_on('hdf5')
# NetCDF 4.4.0 and prior have compatibility issues with HDF5 1.10 and later
@ -105,7 +105,7 @@ def install(self, spec, prefix):
LDFLAGS.append("-L%s/lib" % spec['hdf'].prefix)
LIBS.append("-l%s" % "jpeg")
if 'szip' in spec:
if '+szip' in spec:
CPPFLAGS.append("-I%s/include" % spec['szip'].prefix)
LDFLAGS.append("-L%s/lib" % spec['szip'].prefix)
LIBS.append("-l%s" % "sz")
@ -120,4 +120,8 @@ def install(self, spec, prefix):
configure(*config_args)
make()
if self.run_tests:
make("check")
make("install")