libjwt: new versions, missing dep, disable examples (#31723)

This commit is contained in:
Harmen Stoppels 2022-07-26 23:04:27 +02:00 committed by GitHub
parent 43d53a032a
commit cffdd86d11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,12 +15,18 @@ class Libjwt(AutotoolsPackage):
maintainers = ['bollig']
version('1.13.1', sha256='4df55ac89c6692adaf3badb43daf3241fd876612c9ab627e250dfc4bb59993d9')
version('1.12.1', sha256='d29e4250d437340b076350e910e69fd5539ef8b92528d0306745cec0e343cc17')
version('1.12.0', sha256='eaf5d8b31d867c02dde767efa2cf494840885a415a3c9a62680bf870a4511bee')
depends_on('autoconf', type='build')
depends_on('automake', type='build')
depends_on('libtool', type='build')
depends_on('m4', type='build')
depends_on('pkgconfig', type='build')
# Needs openssl at runtime to ensure we can generate keys
depends_on('openssl', type=('build', 'run'))
depends_on('jansson')
def configure_args(self):
return ['--without-examples']