spack/var/spack/repos/builtin/packages/r-v8/package.py
Manuela Kuhn 25a9888102
r-v8: add 3.6.0 (#27714)
* r-v8: add 3.6.0

* Add conflict and deprecate version 3.4.0
2021-12-05 00:56:47 -06:00

31 lines
1.1 KiB
Python

# Copyright 2013-2021 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 RV8(RPackage):
"""V8: Embedded JavaScript and WebAssembly Engine for R"""
homepage = "https://github.com/jeroen/v8"
cran = "V8"
version('3.6.0', sha256='a3969898bf4a7c13d3130fae0d385cd048d46372ff4a412917b914b159261377')
version('3.4.0', sha256='f5c8a2a03cc1be9f504f47711a0fcd1b962745139c9fb2a10fbd79c4ae103fbd',
deprecated=True)
depends_on('r-rcpp@0.12.12:', type=('build', 'run'))
depends_on('r-jsonlite@1.0:', type=('build', 'run'))
depends_on('r-curl@1.0:', type=('build', 'run'))
conflicts('@3.4.0', when='target=aarch64:')
conflicts('@3.4.0', when='%gcc@5:')
def setup_build_environment(self, env):
spec = self.spec
if ((spec.platform == 'darwin') or
(spec.platform == 'linux' and spec.target.family == 'x86_64')):
env.append_flags('DOWNLOAD_STATIC_LIBV8', '1')