pcre2: add version 10.35; JIT support (#17037)

This commit is contained in:
Amjad Kotobi 2020-06-16 07:44:04 +02:00 committed by GitHub
parent f54c9ae305
commit 0111f2932f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,11 +14,14 @@ class Pcre2(AutotoolsPackage):
homepage = "http://www.pcre.org"""
url = "https://ftp.pcre.org/pub/pcre/pcre2-10.31.tar.bz2"
version('10.35', sha256='9ccba8e02b0ce78046cdfb52e5c177f0f445e421059e43becca4359c669d4613')
version('10.31', sha256='e07d538704aa65e477b6a392b32ff9fc5edf75ab9a40ddfc876186c4ff4d68ac')
version('10.20', sha256='332e287101c9e9567d1ed55391b338b32f1f72c5b5ee7cc81ef2274a53ad487a')
variant('multibyte', default=True,
description='Enable support for 16 and 32 bit characters.')
variant('jit', default=False,
description='enable Just-In-Time compiling support')
def configure_args(self):
args = []
@ -27,6 +30,9 @@ def configure_args(self):
args.append('--enable-pcre2-16')
args.append('--enable-pcre2-32')
if '+jit' in self.spec:
args.append('--enable-jit')
return args
@property