diff options
author | wiz <wiz@pkgsrc.org> | 2018-12-02 07:45:03 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2018-12-02 07:45:03 +0000 |
commit | 4fc0f0cab9a6a93d83b09023783a414569f47bf2 (patch) | |
tree | 7d90d0434a0e12d5a82f5328bb508270c81691bd /devel | |
parent | 6e4d54b9b21a723a3993f018e6d53d57d67574fe (diff) | |
download | pkgsrc-4fc0f0cab9a6a93d83b09023783a414569f47bf2.tar.gz |
pcre2: update to 10.32.
Version 10.32 10-September-2018
-------------------------------
This is another mainly bugfix and tidying release with a few minor
enhancements. These are the main ones:
1. pcre2grep now supports the inclusion of binary zeros in patterns that are
read from files via the -f option.
2. ./configure now supports --enable-jit=auto, which automatically enables JIT
if the hardware supports it.
3. In pcre2_dfa_match(), internal recursive calls no longer use the stack for
local workspace and local ovectors. Instead, an initial block of stack is
reserved, but if this is insufficient, heap memory is used. The heap limit
parameter now applies to pcre2_dfa_match().
4. Updated to Unicode version 11.0.0.
5. (*ACCEPT:ARG), (*FAIL:ARG), and (*COMMIT:ARG) are now supported.
6. Added support for \N{U+dddd}, but only in Unicode mode.
7. Added support for (?^) to unset all imnsx options.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/pcre2/Makefile | 7 | ||||
-rw-r--r-- | devel/pcre2/distinfo | 10 |
2 files changed, 10 insertions, 7 deletions
diff --git a/devel/pcre2/Makefile b/devel/pcre2/Makefile index 5d1f9a3f00d..184043a4152 100644 --- a/devel/pcre2/Makefile +++ b/devel/pcre2/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.11 2018/04/17 08:56:06 wiz Exp $ +# $NetBSD: Makefile,v 1.12 2018/12/02 07:45:03 wiz Exp $ -DISTNAME= pcre2-10.31 +DISTNAME= pcre2-10.32 CATEGORIES= devel MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ MASTER_SITES+= https://ftp.pcre.org/pub/pcre/ @@ -26,6 +26,9 @@ CONFIGURE_ARGS+= --enable-pcre2-32 CONFIGURE_ARGS+= --enable-pcre2grep-libz CONFIGURE_ARGS+= --enable-pcre2grep-libbz2 +# On NetBSD, needs: +# sysctl -w security.pax.mprotect.enabled=0 +# because of its JIT. TEST_TARGET= check .include "options.mk" diff --git a/devel/pcre2/distinfo b/devel/pcre2/distinfo index b6e560c2aaf..a76fc6e026c 100644 --- a/devel/pcre2/distinfo +++ b/devel/pcre2/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.8 2018/04/17 08:56:06 wiz Exp $ +$NetBSD: distinfo,v 1.9 2018/12/02 07:45:03 wiz Exp $ -SHA1 (pcre2-10.31.tar.bz2) = 79fa7e244b9f6b7eb2d5faed4e3547caf86ea76d -RMD160 (pcre2-10.31.tar.bz2) = 77a851c705eab3745db05da9f7dc59dcce2d70bf -SHA512 (pcre2-10.31.tar.bz2) = 44d7db2513d9415dcdf6541366fea585e016f572f3e4379f6e959a38114b2337851092049ab4a1576ae8f19b9de413edbcfa62f434c77fc8470747ee5413e967 -Size (pcre2-10.31.tar.bz2) = 1603075 bytes +SHA1 (pcre2-10.32.tar.bz2) = 31dea762ff549cda09b7df33648f9d4cc3707cf8 +RMD160 (pcre2-10.32.tar.bz2) = 708cdaa837ff5cdb5c97db3991d51778a2e9102e +SHA512 (pcre2-10.32.tar.bz2) = 3d712e7d6afbaef227952680ded69fadbdec0b1abdfcac17cf071415c3c93edd152d6d268dec80570aedf24f82ba954f74f5f9e62c9b9991be75080a3d6ab5fe +Size (pcre2-10.32.tar.bz2) = 1641814 bytes |