py-pythran: add new version (#24900)

This commit is contained in:
Adam J. Stewart 2021-07-19 05:57:21 -05:00 committed by GitHub
parent 29c7542c48
commit 846ab65cc0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,14 +12,33 @@ class PyPythran(PythonPackage):
homepage = "https://github.com/serge-sans-paille/pythran" homepage = "https://github.com/serge-sans-paille/pythran"
pypi = "pythran/pythran-0.9.11.tar.gz" pypi = "pythran/pythran-0.9.11.tar.gz"
version('0.9.12', sha256='5d50dc74dca1d3f902941865acbae981fc24cceeb9d54673d68d6b5c8c1b0001')
version('0.9.11', sha256='a317f91e2aade9f6550dc3bf40b5caeb45b7e012daf27e2b3e4ad928edb01667') version('0.9.11', sha256='a317f91e2aade9f6550dc3bf40b5caeb45b7e012daf27e2b3e4ad928edb01667')
version('0.9.10', sha256='8fa1d19624cb2950e5a18974fdcb0dffc57e1a821049dc95df09563edd673915')
version('0.9.9', sha256='aaabc97f30ad46d1d62303323de6697d2933779afa4666c15b0f433cb50825b1')
version('0.9.8', sha256='81c10a16fce9ed41211fb70e82fda6984e93f4602a164934648db8cbb08156b3')
version('0.9.7', sha256='ac36a94bd862e3c80dae585158b90d3e7c5c05fd252819f3ca7d880a1c7c1012')
version('0.9.6', sha256='2d102a55d9d53f77cf0f4a904eeb5cbaa8fe76e4892319a859fc618401e2f6ba')
version('0.9.5', sha256='815a778d6889593c0b8ddf08052cff36a504ce4cc8bd8d7bfb856a212f91486e')
version('0.9.4', sha256='ec9c91f5331454263b064027292556a184a9f55a50f8615e09b08f57a4909855')
version('0.9.3', sha256='217427a8225a331fdc8f3efe57871aed775cdf2c6e847a0a83df0aaae4b02493')
depends_on('python@3:', when='@0.9.6:', type=('build', 'run'))
depends_on('python@2.7:', when='@:0.9.5', type=('build', 'run'))
depends_on('py-setuptools', type='build') depends_on('py-setuptools', type='build')
depends_on('py-pytest-runner', type='build') depends_on('py-pytest-runner', type='build')
depends_on('py-ply@3.4:', type=('build', 'run')) depends_on('py-ply@3.4:', type=('build', 'run'))
depends_on('py-networkx@2:', type=('build', 'run')) depends_on('py-networkx@2:', when='@:0.9.11', type=('build', 'run'))
depends_on('py-decorator', type=('build', 'run')) depends_on('py-decorator', when='@:0.9.11', type=('build', 'run'))
depends_on('py-gast@0.4.0:0.4.999', type=('build', 'run')) depends_on('py-gast@0.5.0:0.5.999', when='@0.9.12:', type=('build', 'run'))
depends_on('py-six', type=('build', 'run')) depends_on('py-gast@0.4.0:0.4.999', when='@0.9.7:0.9.11', type=('build', 'run'))
depends_on('py-gast@0.3.3:0.3.999', when='@0.9.6', type=('build', 'run'))
depends_on('py-gast@0.3.0:', when='@0.9.4:0.9.5', type=('build', 'run'))
depends_on('py-gast', when='@:0.9.3', type=('build', 'run'))
depends_on('py-six', when='@:0.9.11', type=('build', 'run'))
depends_on('py-numpy', type=('build', 'run')) depends_on('py-numpy', type=('build', 'run'))
depends_on('py-beniget@0.3.0:0.3.999', type=('build', 'run')) depends_on('py-beniget@0.4.0:0.4.999', when='@0.9.12:', type=('build', 'run'))
depends_on('py-beniget@0.3.0:0.3.999', when='@0.9.7:0.9.11', type=('build', 'run'))
depends_on('py-beniget@0.2.1:0.2.999', when='@0.9.6', type=('build', 'run'))
depends_on('py-beniget@0.2.0:', when='@0.9.4:0.9.5', type=('build', 'run'))
depends_on('py-beniget', when='@:0.9.3', type=('build', 'run'))