Update ppft (#24632)

This commit is contained in:
Sebastian Schmitt 2021-07-09 15:16:39 +02:00 committed by GitHub
parent 9add3182c7
commit 8cb3253a04
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,20 +12,23 @@ class PyPpft(PythonPackage):
homepage = "https://github.com/uqfoundation/ppft"
pypi = "ppft/ppft-1.6.4.9.tar.gz"
version('1.6.6.4', sha256='473442cc6731856990bd25bd6b454bb98720007de4523a73c560bdd0060463d2')
version('1.6.4.9', sha256='5537b00afb7b247da0f59cc57ee5680178be61c8b2e21b5a0672b70a3d247791')
version('1.6.4.7.1', sha256='f94b26491b4a36adc975fc51dba7568089a24756007a3a4ef3414a98d7337651')
version('1.6.4.6', sha256='92d09061f5425634c43dbf99c5558f2cf2a2e1e351929f8da7e85f4649c11095')
version('1.6.4.5', sha256='d47da9d2e553848b75727ce7c510f9e149965d5c68f9fc56c774a7c6a3d18214')
depends_on('python@2.5:2.8,3.1:')
depends_on('python@2.5:2.8,3.1:', type=('build', 'run'))
depends_on('python@2.7:2.8,3.6:', when='@1.6.6.4:', type=('build', 'run'))
depends_on('py-setuptools@0.6:', type='build')
depends_on('py-six@1.7.3:', type=('build', 'run'))
depends_on('py-dill@0.2.6:', type=('build', 'run'))
depends_on('py-dill@0.3.4:', type=('build', 'run'), when='@1.6.6.4:')
def url_for_version(self, version):
url = "https://pypi.io/packages/source/p/ppft/"
if version >= Version('1.6.4.8'):
if Version('1.6.6.4') > version >= Version('1.6.4.8'):
url += 'ppft-{0}.tar.gz'
else:
url += 'ppft-{0}.zip'