89 lines
3.7 KiB
Python
89 lines
3.7 KiB
Python
# Copyright 2013-2022 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 import *
|
|
|
|
|
|
class Thrift(Package):
|
|
"""Software framework for scalable cross-language services development.
|
|
|
|
Thrift combines a software stack with a code generation engine to
|
|
build services that work efficiently and seamlessly between C++,
|
|
Java, Python, PHP, Ruby, Erlang, Perl, Haskell, C#, Cocoa,
|
|
JavaScript, Node.js, Smalltalk, OCaml and Delphi and other languages.
|
|
|
|
"""
|
|
|
|
homepage = "https://thrift.apache.org"
|
|
url = "http://apache.mirrors.ionfish.org/thrift/0.11.0/thrift-0.11.0.tar.gz"
|
|
|
|
version('0.13.0', sha256='7ad348b88033af46ce49148097afe354d513c1fca7c607b59c33ebb6064b5179')
|
|
version('0.12.0', sha256='c336099532b765a6815173f62df0ed897528a9d551837d627c1f87fadad90428')
|
|
version('0.11.0', sha256='c4ad38b6cb4a3498310d405a91fef37b9a8e79a50cd0968148ee2524d2fa60c2')
|
|
version('0.10.0', sha256='2289d02de6e8db04cbbabb921aeb62bfe3098c4c83f36eec6c31194301efa10b')
|
|
version('0.9.3', sha256='b0740a070ac09adde04d43e852ce4c320564a292f26521c46b78e0641564969e')
|
|
|
|
# Currently only support for c-family and python
|
|
variant('c', default=True,
|
|
description="Build support for C-family languages")
|
|
variant('pic', default=True,
|
|
description='Build position independent code')
|
|
variant('python', default=True,
|
|
description="Build support for python")
|
|
|
|
depends_on('pkgconfig', type='build')
|
|
depends_on('java')
|
|
depends_on('autoconf', type='build')
|
|
depends_on('automake', type='build')
|
|
depends_on('libtool', type='build')
|
|
depends_on('boost@1.53:')
|
|
depends_on('bison', type='build')
|
|
depends_on('flex', type='build')
|
|
depends_on('openssl')
|
|
|
|
# Variant dependencies
|
|
extends('python', when='+python')
|
|
depends_on('py-setuptools', type=('build', 'run'), when='+python')
|
|
depends_on('py-six@1.7.2:', type=('build', 'run'), when='@0.10.0:+python')
|
|
depends_on('py-tornado', type=('build', 'run'), when='+python')
|
|
depends_on('py-twisted', type=('build', 'run'), when='+python')
|
|
depends_on('py-zope-interface', type=('build', 'run'), when='+python')
|
|
depends_on('py-ipaddress', type=('build', 'run'), when='+python ^python@2')
|
|
depends_on('py-backports-ssl-match-hostname@3.5:', when='+python ^python@:3.4', type=('build', 'run'))
|
|
depends_on('py-pure-sasl', type=('build', 'run'), when='+python')
|
|
depends_on('scons', type=('build', 'run'), when='+python')
|
|
|
|
depends_on('zlib', when='+c')
|
|
depends_on('libevent', when='+c')
|
|
|
|
def setup_build_environment(self, env):
|
|
if '+pic' in self.spec:
|
|
env.append_flags('CFLAGS', self.compiler.cc_pic_flag)
|
|
env.append_flags('CXXFLAGS', self.compiler.cxx_pic_flag)
|
|
|
|
def install(self, spec, prefix):
|
|
env['PY_PREFIX'] = prefix
|
|
|
|
# configure options
|
|
options = ['--prefix=%s' % prefix]
|
|
|
|
options.append('--with-boost=%s' % spec['boost'].prefix)
|
|
options.append('--enable-tests=no')
|
|
|
|
options.append('--with-nodejs=no')
|
|
options.append('--with-c=%s' % ('yes' if '+c' in spec else 'no'))
|
|
options.append('--with-python=%s' %
|
|
('yes' if '+python' in spec else 'no'))
|
|
options.append('--with-java=%s' % ('yes' if '+java' in spec else 'no'))
|
|
options.append('--with-go=%s' % ('yes' if '+go' in spec else 'no'))
|
|
options.append('--with-lua=%s' % ('yes' if '+lua' in spec else 'no'))
|
|
options.append('--with-php=%s' % ('yes' if '+php' in spec else 'no'))
|
|
options.append('--with-qt4=%s' % ('yes' if '+qt4' in spec else 'no'))
|
|
|
|
configure(*options)
|
|
|
|
make()
|
|
make("install")
|