diff options
author | wiz <wiz@pkgsrc.org> | 2007-07-03 17:20:01 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2007-07-03 17:20:01 +0000 |
commit | 1379cb1883b93cf5c1917e624f452625601d8e1c (patch) | |
tree | 24f4386a61a87fa5303955f352f8741c6ee430ff /devel | |
parent | 884faef5cb5fc79fa910edc23318b232c013c174 (diff) | |
download | pkgsrc-1379cb1883b93cf5c1917e624f452625601d8e1c.tar.gz |
Update to 7.2:
Release 7.2 19-Jun-07
---------------------
WARNING: saved patterns that were compiled by earlier versions of PCRE must be
recompiled for use with 7.2 (necessitated by the addition of \K, \h, \H, \v,
and \V).
Correction to the notes for 7.1: the note about shared libraries for Windows is
wrong. Previously, three libraries were built, but each could function
independently. For example, the pcreposix library also included all the
functions from the basic pcre library. The change is that the three libraries
are no longer independent. They are like the Unix libraries. To use the
pcreposix functions, for example, you need to link with both the pcreposix and
the basic pcre library.
Some more features from Perl 5.10 have been added:
(?-n) and (?+n) relative references for recursion and subroutines.
(?(-n) and (?(+n) relative references as conditions.
\k{name} and \g{name} are synonyms for \k<name>.
\K to reset the start of the matched string; for example, (foo)\Kbar
matches bar preceded by foo, but only sets bar as the matched string.
(?| introduces a group where the capturing parentheses in each alternative
start from the same number; for example, (?|(abc)|(xyz)) sets capturing
parentheses number 1 in both cases.
\h, \H, \v, \V match horizontal and vertical whitespace, respectively.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/pcre/Makefile | 5 | ||||
-rw-r--r-- | devel/pcre/distinfo | 8 |
2 files changed, 6 insertions, 7 deletions
diff --git a/devel/pcre/Makefile b/devel/pcre/Makefile index 214e5b555af..f4174de084b 100644 --- a/devel/pcre/Makefile +++ b/devel/pcre/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.37 2007/06/17 17:05:08 joerg Exp $ +# $NetBSD: Makefile,v 1.38 2007/07/03 17:20:01 wiz Exp $ -DISTNAME= pcre-7.1 +DISTNAME= pcre-7.2 CATEGORIES= devel -PKGREVISION= 1 MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ EXTRACT_SUFX= .tar.bz2 diff --git a/devel/pcre/distinfo b/devel/pcre/distinfo index 5ab3f028126..57cc49c14b1 100644 --- a/devel/pcre/distinfo +++ b/devel/pcre/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.25 2007/06/17 17:05:08 joerg Exp $ +$NetBSD: distinfo,v 1.26 2007/07/03 17:20:01 wiz Exp $ -SHA1 (pcre-7.1.tar.bz2) = 1bc54556368165e7ce5f59ac2a60aba7dec6365c -RMD160 (pcre-7.1.tar.bz2) = 1df0f1e86435a7f77c694472bb23bc71433a60be -Size (pcre-7.1.tar.bz2) = 729915 bytes +SHA1 (pcre-7.2.tar.bz2) = fd4f69a66d0202504a831f8668a170b57bd5d1ec +RMD160 (pcre-7.2.tar.bz2) = eee4b9f40bc04c05546f1b426e0398e77dd7b123 +Size (pcre-7.2.tar.bz2) = 738540 bytes SHA1 (patch-aa) = 2bca13cdd4a398ae3dbf26f75fd94557cb076dbe |