diff options
author | wiz <wiz@pkgsrc.org> | 2012-03-02 14:10:42 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2012-03-02 14:10:42 +0000 |
commit | bab1779ceea498bc7d85a227e73b083a2571a808 (patch) | |
tree | 55809962cd780b2931ec270debf4e986cb951e95 /devel | |
parent | 1e3a2087376bea1a19fd562c97b41e9e4e7eeb8d (diff) | |
download | pkgsrc-bab1779ceea498bc7d85a227e73b083a2571a808.tar.gz |
Update to 8.30. New 16-bit character string library not enabled per default.
Release 8.30 04-February-2012
-----------------------------
Release 8.30 introduces a major new feature: support for 16-bit character
strings, compiled as a separate library. There are a few changes to the
8-bit library, in addition to some bug fixes.
. The pcre_info() function, which has been obsolete for over 10 years, has
been removed.
. When a compiled pattern was saved to a file and later reloaded on a host
with different endianness, PCRE used automatically to swap the bytes in some
of the data fields. With the advent of the 16-bit library, where more of this
swapping is needed, it is no longer done automatically. Instead, the bad
endianness is detected and a specific error is given. The user can then call
a new function called pcre_pattern_to_host_byte_order() (or an equivalent
16-bit function) to do the swap.
. In UTF-8 mode, the values 0xd800 to 0xdfff are not legal Unicode
code points and are now faulted. (They are the so-called "surrogates"
that are reserved for coding high values in UTF-16.)
Diffstat (limited to 'devel')
-rw-r--r-- | devel/pcre/Makefile | 4 | ||||
-rw-r--r-- | devel/pcre/PLIST | 35 | ||||
-rw-r--r-- | devel/pcre/distinfo | 8 |
3 files changed, 38 insertions, 9 deletions
diff --git a/devel/pcre/Makefile b/devel/pcre/Makefile index 99027d2ea3d..12f36e69b88 100644 --- a/devel/pcre/Makefile +++ b/devel/pcre/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.62 2011/12/15 15:39:21 drochner Exp $ +# $NetBSD: Makefile,v 1.63 2012/03/02 14:10:42 wiz Exp $ -DISTNAME= pcre-8.21 +DISTNAME= pcre-8.30 CATEGORIES= devel MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ \ ${MASTER_SITE_SOURCEFORGE:=pcre/} diff --git a/devel/pcre/PLIST b/devel/pcre/PLIST index c623efbcca1..ceabff1d2bb 100644 --- a/devel/pcre/PLIST +++ b/devel/pcre/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.14 2011/11/28 16:39:29 wiz Exp $ +@comment $NetBSD: PLIST,v 1.15 2012/03/02 14:10:42 wiz Exp $ bin/pcre-config bin/pcregrep bin/pcretest @@ -18,6 +18,32 @@ man/man1/pcre-config.1 man/man1/pcregrep.1 man/man1/pcretest.1 man/man3/pcre.3 +man/man3/pcre16.3 +man/man3/pcre16_assign_jit_stack.3 +man/man3/pcre16_compile.3 +man/man3/pcre16_compile2.3 +man/man3/pcre16_config.3 +man/man3/pcre16_copy_named_substring.3 +man/man3/pcre16_copy_substring.3 +man/man3/pcre16_dfa_exec.3 +man/man3/pcre16_exec.3 +man/man3/pcre16_free_study.3 +man/man3/pcre16_free_substring.3 +man/man3/pcre16_free_substring_list.3 +man/man3/pcre16_fullinfo.3 +man/man3/pcre16_get_named_substring.3 +man/man3/pcre16_get_stringnumber.3 +man/man3/pcre16_get_stringtable_entries.3 +man/man3/pcre16_get_substring.3 +man/man3/pcre16_get_substring_list.3 +man/man3/pcre16_jit_stack_alloc.3 +man/man3/pcre16_jit_stack_free.3 +man/man3/pcre16_maketables.3 +man/man3/pcre16_pattern_to_host_byte_order.3 +man/man3/pcre16_refcount.3 +man/man3/pcre16_study.3 +man/man3/pcre16_utf16_to_host_byte_order.3 +man/man3/pcre16_version.3 man/man3/pcre_assign_jit_stack.3 man/man3/pcre_compile.3 man/man3/pcre_compile2.3 @@ -35,12 +61,13 @@ man/man3/pcre_get_stringnumber.3 man/man3/pcre_get_stringtable_entries.3 man/man3/pcre_get_substring.3 man/man3/pcre_get_substring_list.3 -man/man3/pcre_info.3 man/man3/pcre_jit_stack_alloc.3 man/man3/pcre_jit_stack_free.3 man/man3/pcre_maketables.3 +man/man3/pcre_pattern_to_host_byte_order.3 man/man3/pcre_refcount.3 man/man3/pcre_study.3 +man/man3/pcre_utf16_to_host_byte_order.3 man/man3/pcre_version.3 man/man3/pcreapi.3 man/man3/pcrebuild.3 @@ -68,6 +95,7 @@ share/doc/pcre/README share/doc/pcre/html/index.html share/doc/pcre/html/pcre-config.html share/doc/pcre/html/pcre.html +share/doc/pcre/html/pcre16.html share/doc/pcre/html/pcre_assign_jit_stack.html share/doc/pcre/html/pcre_compile.html share/doc/pcre/html/pcre_compile2.html @@ -85,12 +113,13 @@ share/doc/pcre/html/pcre_get_stringnumber.html share/doc/pcre/html/pcre_get_stringtable_entries.html share/doc/pcre/html/pcre_get_substring.html share/doc/pcre/html/pcre_get_substring_list.html -share/doc/pcre/html/pcre_info.html share/doc/pcre/html/pcre_jit_stack_alloc.html share/doc/pcre/html/pcre_jit_stack_free.html share/doc/pcre/html/pcre_maketables.html +share/doc/pcre/html/pcre_pattern_to_host_byte_order.html share/doc/pcre/html/pcre_refcount.html share/doc/pcre/html/pcre_study.html +share/doc/pcre/html/pcre_utf16_to_host_byte_order.html share/doc/pcre/html/pcre_version.html share/doc/pcre/html/pcreapi.html share/doc/pcre/html/pcrebuild.html diff --git a/devel/pcre/distinfo b/devel/pcre/distinfo index c9e05ed7217..57ead0a09e5 100644 --- a/devel/pcre/distinfo +++ b/devel/pcre/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.44 2011/12/15 15:39:21 drochner Exp $ +$NetBSD: distinfo,v 1.45 2012/03/02 14:10:42 wiz Exp $ -SHA1 (pcre-8.21.tar.bz2) = 52abf655d94f5208377258ffff27c7b35c53af39 -RMD160 (pcre-8.21.tar.bz2) = e1cbc69618dca2ca4f8e53b6b11ae9ca65f8a802 -Size (pcre-8.21.tar.bz2) = 1174037 bytes +SHA1 (pcre-8.30.tar.bz2) = 68d28fb383325b8af9e3d481d30f586b46c56022 +RMD160 (pcre-8.30.tar.bz2) = bddee68c7e2b8b8224a835a2a9cdadc6b7cc9fd2 +Size (pcre-8.30.tar.bz2) = 1248556 bytes SHA1 (patch-aa) = 569d204319817c8c478db57ab731fc50bcf5dd53 SHA1 (patch-ab) = 0da1392febca936ad89a8bda66c7114240a0fe4b |