Limit Jasper version for WPS (#31088)

* Limit Jasper version for WPS

Jasper@3: changed API and does not support interfaces used by WPS.
This prevented ungrib.exe build and failed silently.
This commit is contained in:
marcosmazz 2022-06-12 14:02:07 -03:00 committed by GitHub
parent 27610838dd
commit 06b5141d01
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -46,7 +46,7 @@ class Wps(Package):
depends_on('time', type=('build'))
depends_on('m4', type='build')
depends_on('libtool', type='build')
depends_on('jasper')
depends_on('jasper@:2')
phases = ['configure', 'build', 'install']
patch('for_aarch64.patch', when='target=aarch64:')