summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsnj <snj>2005-08-31 08:48:45 +0000
committersnj <snj>2005-08-31 08:48:45 +0000
commitf720d3352ad6e9458f75b62d29c7e2461b6b76bd (patch)
tree8d37e9e6797f9175658d72a998e4730fefd668cc
parentdf1ad4520cee72313c1f171a3501846005616204 (diff)
downloadpkgsrc-f720d3352ad6e9458f75b62d29c7e2461b6b76bd.tar.gz
Pullup ticket 724 - requested by Lubomir Sedlacik
security update for pcre Revisions pulled up: - pkgsrc/devel/pcre/Makefile 1.22-1.23 - pkgsrc/devel/pcre/PLIST 1.6 - pkgsrc/devel/pcre/distinfo 1.13 - pkgsrc/devel/pcre/patches/patch-aa removed - pkgsrc/devel/pcre/buildlink3.mk 1.7 Module Name: pkgsrc Committed By: wiz Date: Wed Aug 3 17:43:13 UTC 2005 Modified Files: pkgsrc/devel/pcre: Makefile PLIST distinfo Removed Files: pkgsrc/devel/pcre/patches: patch-aa Log Message: Update to 6.2: Version 6.2 01-Aug-05 --------------------- 1. There was no test for integer overflow of quantifier values. A construction such as {1111111111111111} would give undefined results. What is worse, if a minimum quantifier for a parenthesized subpattern overflowed and became negative, the calculation of the memory size went wrong. This could have led to memory overwriting. 2. Building PCRE using VPATH was broken. Hopefully it is now fixed. 3. Added "b" to the 2nd argument of fopen() in dftables.c, for non-Unix-like operating environments where this matters. 4. Applied Giuseppe Maxia's patch to add additional features for controlling PCRE options from within the C++ wrapper. 5. Named capturing subpatterns were not being correctly counted when a pattern was compiled. This caused two problems: (a) If there were more than 100 such subpatterns, the calculation of the memory needed for the whole compiled pattern went wrong, leading to an overflow error. (b) Numerical back references of the form \12, where the number was greater than 9, were not recognized as back references, even though there were sufficient previous subpatterns. 6. Two minor patches to pcrecpp.cc in order to allow it to compile on older versions of gcc, e.g. 2.95.4. Version 6.1 21-Jun-05 --------------------- 1. There was one reference to the variable "posix" in pcretest.c that was not surrounded by "#if !defined NOPOSIX". 2. Make it possible to compile pcretest without DFA support, UTF8 support, or the cross-check on the old pcre_info() function, for the benefit of the cut-down version of PCRE that is currently imported into Exim. 3. A (silly) pattern starting with (?i)(?-i) caused an internal space allocation error. I've done the easy fix, which wastes 2 bytes for sensible patterns that start (?i) but I don't think that matters. The use of (?i) is just an example; this all applies to the other options as well. 4. Since libtool seems to echo the compile commands it is issuing, the output from "make" can be reduced a bit by putting "@" in front of each libtool compile command. 5. Patch from the folks at Google for configure.in to be a bit more thorough in checking for a suitable C++ installation before trying to compile the C++ stuff. This should fix a reported problem when a compiler was present, but no suitable headers. 6. The man pages all had just "PCRE" as their title. I have changed them to be the relevant file name. I have also arranged that these names are retained in the file doc/pcre.txt, which is a concatenation in text format of all the man pages except the little individual ones for each function. 7. The NON-UNIX-USE file had not been updated for the different set of source files that come with release 6. I also added a few comments about the C++ wrapper. Version 6.0 07-Jun-05 --------------------- 1. Some minor internal re-organization to help with my DFA experiments. 2. Some missing #ifdef SUPPORT_UCP conditionals in pcretest and printint that didn't matter for the library itself when fully configured, but did matter when compiling without UCP support, or within Exim, where the ucp files are not imported. 3. Refactoring of the library code to split up the various functions into different source modules. The addition of the new DFA matching code (see below) to a single monolithic source would have made it really too unwieldy, quite apart from causing all the code to be include in a statically linked application, when only some functions are used. This is relevant even without the DFA addition now that patterns can be compiled in one application and matched in another. The downside of splitting up is that there have to be some external functions and data tables that are used internally in different modules of the library but which are not part of the API. These have all had their names changed to start with "_pcre_" so that they are unlikely to clash with other external names. 4. Added an alternate matching function, pcre_dfa_exec(), which matches using a different (DFA) algorithm. Although it is slower than the original function, it does have some advantages for certain types of matching problem. 5. Upgrades to pcretest in order to test the features of pcre_dfa_exec(), including restarting after a partial match. 6. A patch for pcregrep that defines INVALID_FILE_ATTRIBUTES if it is not defined when compiling for Windows was sent to me. I have put it into the code, though I have no means of testing or verifying it. 7. Added the pcre_refcount() auxiliary function. 8. Added the PCRE_FIRSTLINE option. This constrains an unanchored pattern to match before or at the first newline in the subject string. In pcretest, the /f option on a pattern can be used to set this. 9. A repeated \w when used in UTF-8 mode with characters greater than 256 would behave wrongly. This has been present in PCRE since release 4.0. 10. A number of changes to the pcregrep command: (a) Refactored how -x works; insert ^(...)$ instead of setting PCRE_ANCHORED and checking the length, in preparation for adding something similar for -w. (b) Added the -w (match as a word) option. (c) Refactored the way lines are read and buffered so as to have more than one at a time available. (d) Implemented a pcregrep test script. (e) Added the -M (multiline match) option. This allows patterns to match over several lines of the subject. The buffering ensures that at least 8K, or the rest of the document (whichever is the shorter) is available for matching (and similarly the previous 8K for lookbehind assertions). (f) Changed the --help output so that it now says -w, --word-regex(p) instead of two lines, one with "regex" and the other with "regexp" because that confused at least one person since the short forms are the same. (This required a bit of code, as the output is generated automatically from a table. It wasn't just a text change.) (g) -- can be used to terminate pcregrep options if the next thing isn't an option but starts with a hyphen. Could be a pattern or a path name starting with a hyphen, for instance. (h) "-" can be given as a file name to represent stdin. (i) When file names are being printed, "(standard input)" is used for the standard input, for compatibility with GNU grep. Previously "<stdin>" was used. (j) The option --label=xxx can be used to supply a name to be used for stdin when file names are being printed. There is no short form. (k) Re-factored the options decoding logic because we are going to add two more options that take data. Such options can now be given in four different ways, e.g. "-fname", "-f name", "--file=name", "--file name". (l) Added the -A, -B, and -C options for requesting that lines of context around matches be printed. (m) Added the -L option to print the names of files that do not contain any matching lines, that is, the complement of -l. (n) The return code is 2 if any file cannot be opened, but pcregrep does continue to scan other files. (o) The -s option was incorrectly implemented. For compatibility with other greps, it now suppresses the error message for a non-existent or non-accessible file (but not the return code). There is a new option called -q that suppresses the output of matching lines, which was what -s was previously doing. (p) Added --include and --exclude options to specify files for inclusion and exclusion when recursing. 11. The Makefile was not using the Autoconf-supported LDFLAGS macro properly. Hopefully, it now does. 12. Missing cast in pcre_study(). 13. Added an "uninstall" target to the makefile. 14. Replaced "extern" in the function prototypes in Makefile.in with "PCRE_DATA_SCOPE", which defaults to 'extern' or 'extern "C"' in the Unix world, but is set differently for Windows. 15. Added a second compiling function called pcre_compile2(). The only difference is that it has an extra argument, which is a pointer to an integer error code. When there is a compile-time failure, this is set non-zero, in addition to the error test pointer being set to point to an error message. The new argument may be NULL if no error number is required (but then you may as well call pcre_compile(), which is now just a wrapper). This facility is provided because some applications need a numeric error indication, but it has also enabled me to tidy up the way compile-time errors are handled in the POSIX wrapper. 16. Added VPATH=.libs to the makefile; this should help when building with one prefix path and installing with another. (Or so I'm told by someone who knows more about this stuff than I do.) 17. Added a new option, REG_DOTALL, to the POSIX function regcomp(). This passes PCRE_DOTALL to the pcre_compile() function, making the "." character match everything, including newlines. This is not POSIX-compatible, but somebody wanted the feature. From pcretest it can be activated by using both the P and the s flags. 18. AC_PROG_LIBTOOL appeared twice in Makefile.in. Removed one. 19. libpcre.pc was being incorrectly installed as executable. 20. A couple of places in pcretest check for end-of-line by looking for '\n'; it now also looks for '\r' so that it will work unmodified on Windows. 21. Added Google's contributed C++ wrapper to the distribution. 22. Added some untidy missing memory free() calls in pcretest, to keep Electric Fence happy when testing. --- Module Name: pkgsrc Committed By: wiz Date: Thu Aug 4 09:52:54 UTC 2005 Modified Files: pkgsrc/devel/pcre: Makefile Log Message: Automatic build of the cpp library is currently broken, build it manually. --- Module Name: pkgsrc Committed By: salo Date: Tue Aug 30 12:34:07 UTC 2005 Modified Files: pkgsrc/devel/pcre: buildlink3.mk Log Message: Bump BUILDLINK_RECOMMENDED for latest update with security fixes.
-rw-r--r--devel/pcre/Makefile8
-rw-r--r--devel/pcre/PLIST10
-rw-r--r--devel/pcre/buildlink3.mk4
-rw-r--r--devel/pcre/distinfo9
-rw-r--r--devel/pcre/patches/patch-aa18
5 files changed, 20 insertions, 29 deletions
diff --git a/devel/pcre/Makefile b/devel/pcre/Makefile
index 2050b0cb5ef..bc455a4a44d 100644
--- a/devel/pcre/Makefile
+++ b/devel/pcre/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.21 2005/04/11 21:45:36 tv Exp $
+# $NetBSD: Makefile,v 1.21.2.1 2005/08/31 08:48:45 snj Exp $
-DISTNAME= pcre-5.0
-PKGREVISION= 1
+DISTNAME= pcre-6.2
CATEGORIES= devel
MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ \
ftp://pcre.sourceforge.net/pub/pcre/
@@ -13,7 +12,10 @@ COMMENT= Perl Compatible Regular Expressions library
PKG_INSTALLATION_TYPES= overwrite pkgviews
+BUILD_TARGET= all libpcrecpp.la pcrecpp_unittest \
+ pcre_scanner_unittest pcre_stringpiece_unittest
GNU_CONFIGURE= yes
+USE_LANGUAGES= c c++
USE_LIBTOOL= yes
PKG_CONFIG_OVERRIDE= libpcre.pc.in
diff --git a/devel/pcre/PLIST b/devel/pcre/PLIST
index c5904cb9242..ed799480eb9 100644
--- a/devel/pcre/PLIST
+++ b/devel/pcre/PLIST
@@ -1,10 +1,14 @@
-@comment $NetBSD: PLIST,v 1.5 2004/09/28 15:59:49 wiz Exp $
+@comment $NetBSD: PLIST,v 1.5.6.1 2005/08/31 08:48:45 snj Exp $
bin/pcre-config
bin/pcregrep
bin/pcretest
include/pcre.h
+include/pcre_scanner.h
+include/pcre_stringpiece.h
+include/pcrecpp.h
include/pcreposix.h
lib/libpcre.la
+lib/libpcrecpp.la
lib/libpcreposix.la
lib/pkgconfig/libpcre.pc
man/man1/pcregrep.1
@@ -14,6 +18,7 @@ man/man3/pcre_compile.3
man/man3/pcre_config.3
man/man3/pcre_copy_named_substring.3
man/man3/pcre_copy_substring.3
+man/man3/pcre_dfa_exec.3
man/man3/pcre_exec.3
man/man3/pcre_free_substring.3
man/man3/pcre_free_substring_list.3
@@ -24,12 +29,15 @@ man/man3/pcre_get_substring.3
man/man3/pcre_get_substring_list.3
man/man3/pcre_info.3
man/man3/pcre_maketables.3
+man/man3/pcre_refcount.3
man/man3/pcre_study.3
man/man3/pcre_version.3
man/man3/pcreapi.3
man/man3/pcrebuild.3
man/man3/pcrecallout.3
man/man3/pcrecompat.3
+man/man3/pcrecpp.3
+man/man3/pcrematching.3
man/man3/pcrepattern.3
man/man3/pcreperform.3
man/man3/pcreposix.3
diff --git a/devel/pcre/buildlink3.mk b/devel/pcre/buildlink3.mk
index 2b4ff556b74..6de30224661 100644
--- a/devel/pcre/buildlink3.mk
+++ b/devel/pcre/buildlink3.mk
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.6 2004/10/03 00:13:32 tv Exp $
+# $NetBSD: buildlink3.mk,v 1.6.6.1 2005/08/31 08:48:45 snj Exp $
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
PCRE_BUILDLINK3_MK:= ${PCRE_BUILDLINK3_MK}+
@@ -12,7 +12,7 @@ BUILDLINK_PACKAGES+= pcre
.if !empty(PCRE_BUILDLINK3_MK:M+)
BUILDLINK_DEPENDS.pcre+= pcre>=3.4nb1
-BUILDLINK_RECOMMENDED.pcre+= pcre>=5.0nb1
+BUILDLINK_RECOMMENDED.pcre+= pcre>=6.2
BUILDLINK_PKGSRCDIR.pcre?= ../../devel/pcre
.endif # PCRE_BUILDLINK3_MK
diff --git a/devel/pcre/distinfo b/devel/pcre/distinfo
index 19cd22a6c3a..b38430cfe94 100644
--- a/devel/pcre/distinfo
+++ b/devel/pcre/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.12 2005/02/23 22:24:30 agc Exp $
+$NetBSD: distinfo,v 1.12.4.1 2005/08/31 08:48:45 snj Exp $
-SHA1 (pcre-5.0.tar.bz2) = 320841e705a5ae86a2df9cfadb387f09a731b88f
-RMD160 (pcre-5.0.tar.bz2) = bf0b384a6cbb6af3be34cde4e2725b33c17e424f
-Size (pcre-5.0.tar.bz2) = 465738 bytes
-SHA1 (patch-aa) = c175ed919871534114fb02ca909be1e0ee12b522
+SHA1 (pcre-6.2.tar.bz2) = 191fbde6614473f907da7d1ef92e17df97fde3eb
+RMD160 (pcre-6.2.tar.bz2) = b56d841d42444372f7d80a74f9271c4f58d1cd82
+Size (pcre-6.2.tar.bz2) = 561447 bytes
SHA1 (patch-ab) = 1bb79ce010f30fdd4ab3b579faa45fa06c01ce90
diff --git a/devel/pcre/patches/patch-aa b/devel/pcre/patches/patch-aa
deleted file mode 100644
index 57aa00366ab..00000000000
--- a/devel/pcre/patches/patch-aa
+++ /dev/null
@@ -1,18 +0,0 @@
-$NetBSD: patch-aa,v 1.6 2004/09/28 15:59:49 wiz Exp $
-
---- Makefile.in.orig 2004-09-13 16:20:00.000000000 +0200
-+++ Makefile.in
-@@ -78,12 +78,11 @@ NO_RECURSE = @NO_RECURSE@
- EBCDIC = @EBCDIC@
-
- INSTALL = @INSTALL@
--INSTALL_DATA = @INSTALL_DATA@
-+INSTALL_DATA = ${BSD_INSTALL_DATA}
-
- # LIBTOOL enables the building of shared and static libraries. It is set up
- # to do one or the other or both by ./configure.
-
--LIBTOOL = @LIBTOOL@
- LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) -c $(CFLAGS) -I. -I$(top_srcdir) $(NEWLINE) $(LINK_SIZE) $(MATCH_LIMIT) $(NO_RECURSE) $(EBCDIC)
- @ON_WINDOWS@LINK = $(CC) $(CFLAGS) -I. -I$(top_srcdir) -L.libs
- @NOT_ON_WINDOWS@LINK = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -I. -I$(top_srcdir)