Package 'libaec': no need to specify per version urls. (#5176)

This commit is contained in:
Sergey Kosukhin 2017-08-22 09:27:03 +02:00 committed by Massimiliano Culpo
parent e55efdf8ed
commit f52bdeda2a

View file

@ -29,14 +29,14 @@ class Libaec(CMakePackage):
"""Libaec provides fast lossless compression of 1 up to 32 bit wide signed """Libaec provides fast lossless compression of 1 up to 32 bit wide signed
or unsigned integers (samples). It implements Golomb-Rice compression or unsigned integers (samples). It implements Golomb-Rice compression
method under the BSD license and includes a free drop-in replacement for method under the BSD license and includes a free drop-in replacement for
the SZIP library.""" the SZIP library.
"""
homepage = 'https://gitlab.dkrz.de/k202009/libaec' homepage = 'https://gitlab.dkrz.de/k202009/libaec'
url = 'https://gitlab.dkrz.de/k202009/libaec/uploads/631e85bcf877c2dcaca9b2e6d6526339/libaec-1.0.0.tar.gz'
# We provide per version urls. list_url = 'https://gitlab.dkrz.de/k202009/libaec/tags'
url = 'https://gitlab.dkrz.de/k202009/libaec/uploads/'
provides('szip') provides('szip')
version('1.0.1', 'cdf70e2b8f9153ee644710bb441f9e1e', url=url + '926fe2b181865e38a236ad12bf053cfa/libaec-1.0.1.tar.gz') version('1.0.1', 'cdf70e2b8f9153ee644710bb441f9e1e')
version('1.0.0', 'a848b4e397ed210313183a5e92592e42', url=url + '631e85bcf877c2dcaca9b2e6d6526339/libaec-1.0.0.tar.gz') version('1.0.0', 'a848b4e397ed210313183a5e92592e42')