cvs commit: ports/devel/pcre Makefile distinfo pkg-plist
ports/devel/pcre/files extra-patch-libedit patch-pcre_compile.c
Philip M. Gollucci
pgollucci at gmail.com
Tue Feb 14 16:40:09 UTC 2012
That was an shlib bump. Did you bump the ports tree ?
On 02/14/12 12:39, Martin Matuska wrote:
> mm 2012-02-14 12:39:23 UTC
>
> FreeBSD ports repository
>
> Modified files:
> devel/pcre Makefile distinfo pkg-plist
> Added files:
> devel/pcre/files extra-patch-libedit
> Removed files:
> devel/pcre/files patch-pcre_compile.c
> Log:
> Update PCRE to 8.30
> Add support for binding pcretest to libedit [1]
>
> PR: ports/162565 [1]
>
> Revision Changes Path
> 1.73 +85 -21 ports/devel/pcre/Makefile
> 1.39 +2 -2 ports/devel/pcre/distinfo
> 1.1 +105 -0 ports/devel/pcre/files/extra-patch-libedit (new)
> http://cvsweb.FreeBSD.org/ports/devel/pcre/files/extra-patch-libedit?rev=1.1&content-type=text/x-cvsweb-markup
> 1.4 +0 -34 ports/devel/pcre/files/patch-pcre_compile.c (dead)
> http://cvsweb.FreeBSD.org/ports/devel/pcre/files/patch-pcre_compile.c?rev=1.3&content-type=text/x-cvsweb-markup
> 1.17 +1 -1 ports/devel/pcre/pkg-plist
>
> http://cvsweb.FreeBSD.org/ports/devel/pcre/Makefile.diff?r1=1.72&r2=1.73&f=h
> | --- ports/devel/pcre/Makefile 2012/01/07 22:31:51 1.72
> | +++ ports/devel/pcre/Makefile 2012/02/14 12:39:23 1.73
> | @@ -2,12 +2,11 @@
> | # Date created: 08 July 1998
> | # Whom: dom
> | #
> | -# $FreeBSD: /usr/local/www/cvsroot/FreeBSD/ports/devel/pcre/Makefile,v 1.72 2012/01/07 22:31:51 mm Exp $
> | +# $FreeBSD: /usr/local/www/cvsroot/FreeBSD/ports/devel/pcre/Makefile,v 1.73 2012/02/14 12:39:23 mm Exp $
> | #
> |
> | PORTNAME= pcre
> | -PORTVERSION= 8.21
> | -PORTREVISION= 1
> | +PORTVERSION= 8.30
> | CATEGORIES= devel
> | MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/programming/%SUBDIR%/ \
> | ftp://ftp.fu-berlin.de/unix/misc/%SUBDIR%/ \
> | @@ -20,14 +19,21 @@ COMMENT= Perl Compatible Regular Express
> | LICENSE= BSD
> | LICENSE_FILE= ${WRKSRC}/LICENCE
> |
> | -OPTIONS= JIT "Enable Just-In-Time compiling support" on
> | +OPTIONS= JIT "Enable Just-In-Time compiling support" on \
> | + LIBEDIT "Link pcretest against libedit" off
> |
> | USE_BZIP2= yes
> | GNU_CONFIGURE= yes
> | USE_LDCONFIG= yes
> | CONFIGURE_ARGS= --enable-utf8 --enable-unicode-properties
> |
> | -.include <bsd.port.pre.mk>
> | +.include <bsd.port.options.mk>
> | +
> | +.if defined(WITH_LIBEDIT)
> | +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-libedit
> | +CONFIGURE_ARGS+= --enable-pcretest-libedit
> | +USE_AUTOTOOLS+= autoconf
> | +.endif
> |
> | .if !defined(WITHOUT_JIT) && ${ARCH} != "sparc64"
> | CONFIGURE_ARGS+= --enable-jit
> | @@ -39,6 +45,8 @@ CONFIGURE_ARGS+= --disable-jit
> | PORTDOCS= *
> | .endif
> |
> | +.include <bsd.port.pre.mk>
> | +
> | .if ${ARCH} == "amd64" || ${ARCH} == "ia64"
> | CFLAGS+= -fPIC
> | .endif
> | @@ -47,23 +55,79 @@ CFLAGS+= -fPIC
> | CONFIGURE_ARGS+=--with-link-size=${WITH_LINK_SIZE}
> | .endif
> |
> | -MAN1= pcre-config.1 pcregrep.1 pcretest.1
> | -MAN3= pcre.3 pcre_assign_jit_stack.3 pcre_compile.3 \
> | - pcre_compile2.3 pcre_config.3 pcre_copy_named_substring.3 \
> | - pcre_copy_substring.3 pcre_dfa_exec.3 pcre_exec.3 \
> | - pcre_free_study.3 pcre_free_substring.3 \
> | - pcre_free_substring_list.3 pcre_fullinfo.3 \
> | - pcre_get_named_substring.3 pcre_get_stringnumber.3 \
> | - pcre_get_stringtable_entries.3 pcre_get_substring.3 \
> | - pcre_get_substring_list.3 pcre_info.3 \
> | - pcre_jit_stack_alloc.3 pcre_jit_stack_free.3 \
> | - pcre_maketables.3 pcrepartial.3 pcreprecompile.3 \
> | - pcre_refcount.3 pcre_study.3 pcre_version.3 pcreapi.3 \
> | - pcrebuild.3 pcrecallout.3 pcrecompat.3 \
> | - pcrecpp.3 pcrejit.3 pcrelimits.3 pcrematching.3 \
> | - pcrepattern.3 pcreperform.3 pcreposix.3 pcresample.3 \
> | - pcrestack.3 pcresyntax.3 pcreunicode.3
> | -
> | +MAN1= pcre-config.1 \
> | + pcregrep.1 \
> | + pcretest.1
> | +MAN3= pcre.3 \
> | + pcre16.3 \
> | + pcre_assign_jit_stack.3 \
> | + pcre_compile.3 \
> | + pcre_compile2.3 \
> | + pcre_config.3 \
> | + pcre_copy_named_substring.3 \
> | + pcre_copy_substring.3 \
> | + pcre_dfa_exec.3 \
> | + pcre_exec.3 \
> | + pcre_free_study.3 \
> | + pcre_free_substring.3 \
> | + pcre_free_substring_list.3 \
> | + pcre_fullinfo.3 \
> | + pcre_get_named_substring.3 \
> | + pcre_get_stringnumber.3 \
> | + pcre_get_stringtable_entries.3 \
> | + pcre_get_substring.3 \
> | + pcre_get_substring_list.3 \
> | + pcre_jit_stack_alloc.3 \
> | + pcre_jit_stack_free.3 \
> | + pcre_maketables.3 \
> | + pcre_pattern_to_host_byte_order.3 \
> | + pcre_refcount.3 \
> | + pcre_study.3 \
> | + pcre_version.3 \
> | + pcreapi.3 \
> | + pcrebuild.3 \
> | + pcrecallout.3 \
> | + pcrecompat.3 \
> | + pcrecpp.3 \
> | + pcrejit.3 \
> | + pcrelimits.3 \
> | + pcrematching.3 \
> | + pcrepartial.3 \
> | + pcrepattern.3 \
> | + pcreperform.3 \
> | + pcreposix.3 \
> | + pcreprecompile.3 \
> | + pcresample.3 \
> | + pcrestack.3 \
> | + pcresyntax.3 \
> | + pcre_utf16_to_host_byte_order.3 \
> | + pcreunicode.3
> | +
> | +MLINKS+= pcre_assign_jit_stack.3 pcre16_assign_jit_stack.3 \
> | + pcre_compile.3 pcre16_compile.3 \
> | + pcre_compile2.3 pcre16_compile2.3 \
> | + pcre_config.3 pcre16_config.3 \
> | + pcre_copy_named_substring.3 pcre16_copy_named_substring.3 \
> | + pcre_copy_substring.3 pcre16_copy_substring.3 \
> | + pcre_dfa_exec.3 pcre16_dfa_exec.3 \
> | + pcre_exec.3 pcre16_exec.3 \
> | + pcre_free_study.3 pcre16_free_study.3 \
> | + pcre_free_substring.3 pcre16_free_substring.3 \
> | + pcre_free_substring_list.3 pcre16_free_substring_list.3 \
> | + pcre_fullinfo.3 pcre16_fullinfo.3 \
> | + pcre_get_named_substring.3 pcre16_get_named_substring.3 \
> | + pcre_get_stringnumber.3 pcre16_get_stringnumber.3 \
> | + pcre_get_stringtable_entries.3 pcre16_get_stringtable_entries.3 \
> | + pcre_get_substring.3 pcre16_get_substring.3 \
> | + pcre_get_substring_list.3 pcre16_get_substring_list.3 \
> | + pcre_jit_stack_alloc.3 pcre16_jit_stack_alloc.3 \
> | + pcre_jit_stack_free.3 pcre16_jit_stack_free.3 \
> | + pcre_maketables.3 pcre16_maketables.3 \
> | + pcre_pattern_to_host_byte_order.3 pcre16_pattern_to_host_byte_order.3 \
> | + pcre_refcount.3 pcre16_refcount.3 \
> | + pcre_study.3 pcre16_study.3 \
> | + pcre_utf16_to_host_byte_order.3 pcre16_utf16_to_host_byte_order.3 \
> | + pcre_version.3 pcre16_version.3
> | post-patch:
> | .if defined(NOPORTDOCS)
> | @${REINPLACE_CMD} -E -e '/^install-data-am/,/^$$/ s,install-(dist_doc|dist_html|html)DATA,,g' \
> http://cvsweb.FreeBSD.org/ports/devel/pcre/distinfo.diff?r1=1.38&r2=1.39&f=h
> | --- ports/devel/pcre/distinfo 2011/12/20 23:06:42 1.38
> | +++ ports/devel/pcre/distinfo 2012/02/14 12:39:23 1.39
> | @@ -1,2 +1,2 @@
> | -SHA256 (pcre-8.21.tar.bz2) = a4b8509d11fc2764fb4e1415b764ad2c214459edc011ce48aeeb6bbe1ac599e3
> | -SIZE (pcre-8.21.tar.bz2) = 1174037
> | +SHA256 (pcre-8.30.tar.bz2) = c1113fd7db934e97ad8b3917d432e5b642e9eb9afd127eb797804937c965f4ac
> | +SIZE (pcre-8.30.tar.bz2) = 1248556
> http://cvsweb.FreeBSD.org/ports/devel/pcre/pkg-plist.diff?r1=1.16&r2=1.17&f=h
> | --- ports/devel/pcre/pkg-plist 2009/10/21 19:49:26 1.16
> | +++ ports/devel/pcre/pkg-plist 2012/02/14 12:39:23 1.17
> | @@ -10,7 +10,7 @@ include/pcrecpp.h
> | lib/libpcre.a
> | lib/libpcre.la
> | lib/libpcre.so
> | -lib/libpcre.so.0
> | +lib/libpcre.so.1
> | lib/libpcrecpp.a
> | lib/libpcrecpp.la
> | lib/libpcrecpp.so
--
------------------------------------------------------------------------
1024D/DB9B8C1C B90B FBC3 A3A1 C71A 8E70 3F8C 75B8 8FFB DB9B 8C1C
Philip M. Gollucci (pgollucci at p6m7g8.com) c: 703.336.9354
Member, Apache Software Foundation
Committer, FreeBSD Foundation
Consultant, P6M7G8 Inc.
Director Operations, Ridecharge Inc.
Work like you don't need the money,
love like you'll never get hurt,
and dance like nobody's watching.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 252 bytes
Desc: OpenPGP digital signature
Url : http://lists.freebsd.org/pipermail/cvs-all/attachments/20120214/1c0ea613/signature.pgp
More information about the cvs-all
mailing list