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
This commit is contained in:
Sajid Ali 2018-05-14 11:26:01 -05:00 committed by Adam J. Stewart
parent b5d578a5e1
commit a47ff73c6e

View file

@ -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')