Updates rose definition (#4411)

* Adds z3 package

* Adds binwalk package

* Updates spot package definition

* Updates rose package definition

* Modifications for code review

* Fixes string formatting

* Remove python version requirement
This commit is contained in:
Josh Asplund
2017-06-14 10:43:50 -07:00
committed by Adam J. Stewart
parent f4f2f25838
commit bc2c4a14c2
4 changed files with 151 additions and 16 deletions

View File

@@ -35,7 +35,7 @@ class Rose(Package):
(Developed at Lawrence Livermore National Lab)"""
homepage = "http://rosecompiler.org/"
url = "https://github.com/rose-compiler/rose/archive/v0.9.7.tar.gz"
url = "https://github.com/rose-compiler/rose/archive/v0.9.7.tar.gz"
version('0.9.7', 'e14ce5250078df4b09f4f40559d46c75')
version('master', branch='master',
@@ -46,20 +46,56 @@ class Rose(Package):
depends_on("autoconf@2.69", type='build')
depends_on("automake@1.14", type='build')
depends_on("libtool@2.4", type='build')
depends_on("boost@1.54.0")
depends_on("jdk@8u25")
depends_on("boost@1.47.0:")
def install(self, spec, prefix):
# Bootstrap with autotools
variant('tests', default=False, description='Build the tests directory')
variant('binanalysis', default=False, description='Enable binary analysis tooling')
depends_on('libgcrypt', when='+binanalysis', type='build')
depends_on('py-binwalk', when='+binanalysis', type='run')
variant('c', default=True, description='Enable c language support')
variant('cxx', default=True, description='Enable c++ language support')
variant('fortran', default=False, description='Enable fortran language support')
variant('java', default=False, description='Enable java language support')
depends_on('jdk', when='+java')
variant('z3', default=False, description='Enable z3 theorem prover')
depends_on('z3', when='+z3')
build_directory = 'spack-build'
def autoreconf(self, spec, prefix):
bash = which('bash')
bash('build')
# Configure, compile & install
with working_dir('rose-build', create=True):
boost = spec['boost']
@property
def languages(self):
spec = self.spec
langs = [
'binaries' if '+binanalysis' in spec else '',
'c' if '+c' in spec else '',
'c++' if '+cxx' in spec else '',
'java' if '+java' in spec else '',
'fortran' if '+fortran' in spec else ''
]
return list(filter(None, langs))
configure = Executable('../configure')
configure("--prefix=" + prefix,
"--with-boost=" + boost.prefix,
"--disable-boost-version-check")
make("install-core")
def configure_args(self):
spec = self.spec
cc = self.compiler.cc
cxx = self.compiler.cxx
return [
'--disable-boost-version-check',
"--with-alternate_backend_C_compiler={0}".format(cc),
"--with-alternate_backend_Cxx_compiler={0}".format(cxx),
"--with-boost={0}".format(spec['boost'].prefix),
"--enable-languages={0}".format(",".join(self.languages)),
"--with-z3={0}".format(spec['z3'].prefix) if '+z3' in spec else '',
'--disable-tests-directory' if '+tests' not in spec else '',
'--enable-tutorial-directory={0}'.format('no'),
]
install_targets = ["install-core"]