diff options
author | wiz <wiz@pkgsrc.org> | 2007-01-06 23:45:42 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2007-01-06 23:45:42 +0000 |
commit | af5d82867d607dc45f083eb3ff1170cb06b1a01c (patch) | |
tree | 85d54384548d3775083a60d68d4987f97e584b0a /devel | |
parent | 2e67fb10b8681e7bccd5ca3694836a897f1483a2 (diff) | |
download | pkgsrc-af5d82867d607dc45f083eb3ff1170cb06b1a01c.tar.gz |
Update to 7.0:
Release 7.0 23-Nov-06
---------------------
This release has a new major number because there have been some internal
upheavals to facilitate the addition of new optimizations and other facilities,
and to make subsequent maintenance and extension easier. Compilation is likely
to be a bit slower, but there should be no major effect on runtime performance.
Previously compiled patterns are NOT upwards compatible with this release. If
you have saved compiled patterns from a previous release, you will have to
re-compile them. Important changes that are visible to users are:
1. The Unicode property tables have been updated to Unicode 5.0.0, which adds
some more scripts.
2. The option PCRE_NEWLINE_ANY causes PCRE to recognize any Unicode newline
sequence as a newline.
3. The \R escape matches a single Unicode newline sequence as a single unit.
4. New features that will appear in Perl 5.10 are now in PCRE. These include
alternative Perl syntax for named parentheses, and Perl syntax for
recursion.
5. The C++ wrapper interface has been extended by the addition of a
QuoteMeta function and the ability to allow copy construction and
assignment.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/pcre/Makefile | 7 | ||||
-rw-r--r-- | devel/pcre/PLIST | 3 | ||||
-rw-r--r-- | devel/pcre/distinfo | 10 | ||||
-rw-r--r-- | devel/pcre/patches/patch-ac | 12 | ||||
-rw-r--r-- | devel/pcre/patches/patch-ad | 13 |
5 files changed, 10 insertions, 35 deletions
diff --git a/devel/pcre/Makefile b/devel/pcre/Makefile index 01c9edf492b..30688caf886 100644 --- a/devel/pcre/Makefile +++ b/devel/pcre/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.33 2006/11/03 19:22:55 joerg Exp $ +# $NetBSD: Makefile,v 1.34 2007/01/06 23:45:42 wiz Exp $ -DISTNAME= pcre-6.7 +DISTNAME= pcre-7.0 CATEGORIES= devel MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ \ ftp://pcre.sourceforge.net/pub/pcre/ @@ -18,8 +18,9 @@ USE_LIBTOOL= yes GNU_CONFIGURE= yes CONFIGURE_ARGS+= --enable-utf8 -PKGCONFIG_OVERRIDE= libpcre.pc.in +PKGCONFIG_OVERRIDE= libpcre.pc.in libpcrecpp.pc.in +# needs a stacksize of 4mb, default is 2mb TEST_TARGET= test # Avoid an ICE in gcc2 on sparc64 diff --git a/devel/pcre/PLIST b/devel/pcre/PLIST index 58a4dad573d..3fd7d680faa 100644 --- a/devel/pcre/PLIST +++ b/devel/pcre/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.8 2006/07/10 16:10:44 wiz Exp $ +@comment $NetBSD: PLIST,v 1.9 2007/01/06 23:45:42 wiz Exp $ bin/pcre-config bin/pcregrep bin/pcretest @@ -12,6 +12,7 @@ lib/libpcre.la lib/libpcrecpp.la lib/libpcreposix.la lib/pkgconfig/libpcre.pc +lib/pkgconfig/libpcrecpp.pc man/man1/pcregrep.1 man/man1/pcretest.1 man/man3/pcre.3 diff --git a/devel/pcre/distinfo b/devel/pcre/distinfo index 29261c89fc6..a6b8a25fa69 100644 --- a/devel/pcre/distinfo +++ b/devel/pcre/distinfo @@ -1,9 +1,7 @@ -$NetBSD: distinfo,v 1.22 2006/10/04 20:23:46 rillig Exp $ +$NetBSD: distinfo,v 1.23 2007/01/06 23:45:42 wiz Exp $ -SHA1 (pcre-6.7.tar.bz2) = 499d5b20c29fe1314916c99aa70b5408a2c8e5f9 -RMD160 (pcre-6.7.tar.bz2) = 1a4699930c53e3f692bd405b1f40a9bc1bcd8bc3 -Size (pcre-6.7.tar.bz2) = 570867 bytes +SHA1 (pcre-7.0.tar.bz2) = dc216fc717aca2ab2f7844d97adee6f6f3a6657c +RMD160 (pcre-7.0.tar.bz2) = 086a55134324f177973bb04ca160f9ddc33fa1db +Size (pcre-7.0.tar.bz2) = 607541 bytes SHA1 (patch-aa) = 821339994e6fd77715f7b0d9e823038861dd3bfa SHA1 (patch-ab) = fb350f9ecc978b69ce75055edc6ba9560d62fdbb -SHA1 (patch-ac) = 928b5ef7b91990735412e5965189fd457b7517e6 -SHA1 (patch-ad) = d64362ea560f446ef31e225115a6f9c1d1972b57 diff --git a/devel/pcre/patches/patch-ac b/devel/pcre/patches/patch-ac deleted file mode 100644 index 3901cd7d2f9..00000000000 --- a/devel/pcre/patches/patch-ac +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-ac,v 1.3 2006/07/10 22:14:18 joerg Exp $ - ---- pcretest.c.orig 2006-07-10 21:37:54.000000000 +0000 -+++ pcretest.c -@@ -45,6 +45,7 @@ POSSIBILITY OF SUCH DAMAGE. - #include <errno.h> - - #ifndef _WIN32 -+#include <sys/time.h> - #include <sys/resource.h> - #endif - diff --git a/devel/pcre/patches/patch-ad b/devel/pcre/patches/patch-ad deleted file mode 100644 index 052b3fe0cb1..00000000000 --- a/devel/pcre/patches/patch-ad +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ad,v 1.3 2006/10/04 20:23:46 rillig Exp $ - ---- configure.orig 2006-10-04 22:20:58.000000000 +0200 -+++ configure 2006-10-04 22:21:48.000000000 +0200 -@@ -19664,7 +19664,7 @@ fi; - # Check whether --enable-ebcdic or --disable-ebcdic was given. - if test "${enable_ebcdic+set}" = set; then - enableval="$enable_ebcdic" -- if test "$enableval" == "yes"; then -+ if test "$enableval" = "yes"; then - EBCDIC=-DEBCDIC=1 - fi - |