summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSajid Ali <30510036+s-sajid-ali@users.noreply.github.com>2018-05-14 11:26:01 -0500
committerAdam J. Stewart <ajstewart426@gmail.com>2018-05-14 11:26:01 -0500
commita47ff73c6e740015d21f15e1b426c057c4b42940 (patch)
tree921a089f423276222a0d1f557e33cb71e72c2fda
parentb5d578a5e183f88ba48b73d2271c95ea49a6567a (diff)
downloadspack-a47ff73c6e740015d21f15e1b426c057c4b42940.tar.gz
spack-a47ff73c6e740015d21f15e1b426c057c4b42940.tar.bz2
spack-a47ff73c6e740015d21f15e1b426c057c4b42940.tar.xz
spack-a47ff73c6e740015d21f15e1b426c057c4b42940.zip
Update py-llvmlite to reflect llvm@6 requirement for versions >0.23.0 (#8109)
* new file: package.py * corrected using pep8online.com * Update package.py * correct typo * as requested * modified: package.py * Update package.py
-rw-r--r--var/spack/repos/builtin/packages/py-llvmlite/package.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/py-llvmlite/package.py b/var/spack/repos/builtin/packages/py-llvmlite/package.py
index 3e82c4ee38..b5248d496f 100644
--- a/var/spack/repos/builtin/packages/py-llvmlite/package.py
+++ b/var/spack/repos/builtin/packages/py-llvmlite/package.py
@@ -29,11 +29,14 @@ class PyLlvmlite(PythonPackage):
"""A lightweight LLVM python binding for writing JIT compilers"""
homepage = "http://llvmlite.readthedocs.io/en/latest/index.html"
- url = "https://pypi.io/packages/source/l/llvmlite/llvmlite-0.20.0.tar.gz"
+ url = "https://pypi.io/packages/source/l/llvmlite/llvmlite-0.23.0.tar.gz"
+ version('0.23.0', '6fc856576a11dbeef71de862f7c419de')
version('0.20.0', 'f2aa60d0981842b7930ba001b03679ab')
depends_on('py-setuptools', type='build')
- depends_on('py-enum34', type=('build', 'run'), when='^python@:3.3.99')
+ depends_on('python@2.6:2.8,3.4:', type=('build', 'run'))
+ depends_on('py-enum34', type=('build', 'run'), when='^python@:3.3.99')
+ depends_on('llvm@6.0:', when='@0.23.0:')
depends_on('llvm@4.0:4.99', when='@0.17.0:0.20.99')
depends_on('binutils', type='build')