Add a SConsPackage base class (#4936)
* Add a SConsPackage base class * Make Matlab extendable * Most dependencies are actually required * Cantera requires older version of fmt
This commit is contained in:
@@ -25,31 +25,67 @@
|
||||
from spack import *
|
||||
|
||||
|
||||
class Serf(Package):
|
||||
class Serf(SConsPackage):
|
||||
"""Apache Serf - a high performance C-based HTTP client library
|
||||
built upon the Apache Portable Runtime (APR) library"""
|
||||
|
||||
homepage = 'https://serf.apache.org/'
|
||||
url = 'https://archive.apache.org/dist/serf/serf-1.3.8.tar.bz2'
|
||||
url = 'https://archive.apache.org/dist/serf/serf-1.3.9.tar.bz2'
|
||||
|
||||
version('1.3.9', '26015c63e3bbb108c1689bf2090e4c26351db674')
|
||||
version('1.3.8', '1d45425ca324336ce2f4ae7d7b4cfbc5567c5446')
|
||||
|
||||
variant('debug', default=False,
|
||||
description='Enable debugging info and strict compile warnings')
|
||||
|
||||
depends_on('scons@2.3.0:', type='build')
|
||||
|
||||
depends_on('apr')
|
||||
depends_on('apr-util')
|
||||
depends_on('scons', type='build')
|
||||
depends_on('expat')
|
||||
depends_on('openssl')
|
||||
depends_on('zlib')
|
||||
|
||||
def install(self, spec, prefix):
|
||||
options = ['PREFIX=%s' % prefix]
|
||||
options.append('APR=%s' % spec['apr'].prefix)
|
||||
options.append('APU=%s' % spec['apr-util'].prefix)
|
||||
options.append('OPENSSL=%s' % spec['openssl'].prefix)
|
||||
options.append('LINKFLAGS=-L%s/lib -L%s/lib' %
|
||||
(spec['expat'].prefix, spec['zlib'].prefix))
|
||||
options.append('CPPFLAGS=-I%s/include -I%s/include' %
|
||||
(spec['expat'].prefix, spec['zlib'].prefix))
|
||||
def build_args(self, spec, prefix):
|
||||
args = [
|
||||
'PREFIX={0}'.format(prefix),
|
||||
'APR={0}'.format(spec['apr'].prefix),
|
||||
'APU={0}'.format(spec['apr-util'].prefix),
|
||||
'OPENSSL={0}'.format(spec['openssl'].prefix),
|
||||
'ZLIB={0}'.format(spec['zlib'].prefix),
|
||||
]
|
||||
|
||||
scons(*options)
|
||||
scons('install')
|
||||
if '+debug' in spec:
|
||||
args.append('DEBUG=yes')
|
||||
else:
|
||||
args.append('DEBUG=no')
|
||||
|
||||
# SCons doesn't pass Spack environment variables to the
|
||||
# execution environment. Therefore, we can't use Spack's compiler
|
||||
# wrappers. Use the actual compilers. SCons seems to RPATH things
|
||||
# on its own anyway.
|
||||
args.append('CC={0}'.format(self.compiler.cc))
|
||||
|
||||
return args
|
||||
|
||||
def test(self):
|
||||
# FIXME: Several test failures:
|
||||
#
|
||||
# There were 14 failures:
|
||||
# 1) test_ssl_trust_rootca
|
||||
# 2) test_ssl_certificate_chain_with_anchor
|
||||
# 3) test_ssl_certificate_chain_all_from_server
|
||||
# 4) test_ssl_no_servercert_callback_allok
|
||||
# 5) test_ssl_large_response
|
||||
# 6) test_ssl_large_request
|
||||
# 7) test_ssl_client_certificate
|
||||
# 8) test_ssl_future_server_cert
|
||||
# 9) test_setup_ssltunnel
|
||||
# 10) test_ssltunnel_basic_auth
|
||||
# 11) test_ssltunnel_basic_auth_server_has_keepalive_off
|
||||
# 12) test_ssltunnel_basic_auth_proxy_has_keepalive_off
|
||||
# 13) test_ssltunnel_basic_auth_proxy_close_conn_on_200resp
|
||||
# 14) test_ssltunnel_digest_auth
|
||||
#
|
||||
# These seem to be related to:
|
||||
# https://groups.google.com/forum/#!topic/serf-dev/YEFTTdF1Qwc
|
||||
scons('check')
|
||||
|
Reference in New Issue
Block a user