pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/pcre Update to 7.2:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/a3d58610a1d4
branches:  trunk
changeset: 530657:a3d58610a1d4
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Tue Jul 03 17:20:01 2007 +0000

description:
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:

 devel/pcre/Makefile |  5 ++---
 devel/pcre/distinfo |  8 ++++----
 2 files changed, 6 insertions(+), 7 deletions(-)

diffs (28 lines):

diff -r 171b80013ad5 -r a3d58610a1d4 devel/pcre/Makefile
--- a/devel/pcre/Makefile       Tue Jul 03 17:14:11 2007 +0000
+++ b/devel/pcre/Makefile       Tue Jul 03 17:20:01 2007 +0000
@@ -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 -r 171b80013ad5 -r a3d58610a1d4 devel/pcre/distinfo
--- a/devel/pcre/distinfo       Tue Jul 03 17:14:11 2007 +0000
+++ b/devel/pcre/distinfo       Tue Jul 03 17:20:01 2007 +0000
@@ -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



Home | Main Index | Thread Index | Old Index