Date: Tue, 14 Feb 2012 16:40:02 +0000 From: "Philip M. Gollucci" <pgollucci@gmail.com> To: Martin Matuska <mm@FreeBSD.org> Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/devel/pcre Makefile distinfo pkg-plist ports/devel/pcre/files extra-patch-libedit patch-pcre_compile.c Message-ID: <4F3A8E62.60003@p6m7g8.com> In-Reply-To: <201202141239.q1ECdNFi060805@repoman.freebsd.org> References: <201202141239.q1ECdNFi060805@repoman.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig292646D585B19E46529E4359 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable 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 >=20 > FreeBSD ports repository >=20 > Modified files: > devel/pcre Makefile distinfo pkg-plist=20 > Added files: > devel/pcre/files extra-patch-libedit=20 > Removed files: > devel/pcre/files patch-pcre_compile.c=20 > Log: > Update PCRE to 8.30 > Add support for binding pcretest to libedit [1] > =20 > PR: ports/162565 [1] > =20 > 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?re= v=3D1.1&content-type=3Dtext/x-cvsweb-markup > 1.4 +0 -34 ports/devel/pcre/files/patch-pcre_compile.c (dea= d) > http://cvsweb.FreeBSD.org/ports/devel/pcre/files/patch-pcre_compile.c?r= ev=3D1.3&content-type=3Dtext/x-cvsweb-markup > 1.17 +1 -1 ports/devel/pcre/pkg-plist >=20 > http://cvsweb.FreeBSD.org/ports/devel/pcre/Makefile.diff?r1=3D1.72&r2=3D= 1.73&f=3Dh > | --- 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 $ > | # > | =20 > | PORTNAME=3D pcre > | -PORTVERSION=3D 8.21 > | -PORTREVISION=3D 1 > | +PORTVERSION=3D 8.30 > | CATEGORIES=3D devel > | MASTER_SITES=3D ftp://ftp.csx.cam.ac.uk/pub/software/programming/%SU= BDIR%/ \ > | ftp://ftp.fu-berlin.de/unix/misc/%SUBDIR%/ \ > | @@ -20,14 +19,21 @@ COMMENT=3D Perl Compatible Regular Express > | LICENSE=3D BSD > | LICENSE_FILE=3D ${WRKSRC}/LICENCE > | =20 > | -OPTIONS=3D JIT "Enable Just-In-Time compiling support" on > | +OPTIONS=3D JIT "Enable Just-In-Time compiling support" on \ > | + LIBEDIT "Link pcretest against libedit" off > | =20 > | USE_BZIP2=3D yes > | GNU_CONFIGURE=3D yes > | USE_LDCONFIG=3D yes > | CONFIGURE_ARGS=3D --enable-utf8 --enable-unicode-properties > | =20 > | -.include <bsd.port.pre.mk> > | +.include <bsd.port.options.mk> > | + > | +.if defined(WITH_LIBEDIT) > | +EXTRA_PATCHES+=3D ${FILESDIR}/extra-patch-libedit > | +CONFIGURE_ARGS+=3D --enable-pcretest-libedit > | +USE_AUTOTOOLS+=3D autoconf > | +.endif > | =20 > | .if !defined(WITHOUT_JIT) && ${ARCH} !=3D "sparc64" > | CONFIGURE_ARGS+=3D --enable-jit > | @@ -39,6 +45,8 @@ CONFIGURE_ARGS+=3D --disable-jit > | PORTDOCS=3D * > | .endif > | =20 > | +.include <bsd.port.pre.mk> > | + > | .if ${ARCH} =3D=3D "amd64" || ${ARCH} =3D=3D "ia64" > | CFLAGS+=3D -fPIC > | .endif > | @@ -47,23 +55,79 @@ CFLAGS+=3D -fPIC > | CONFIGURE_ARGS+=3D--with-link-size=3D${WITH_LINK_SIZE} > | .endif > | =20 > | -MAN1=3D pcre-config.1 pcregrep.1 pcretest.1 > | -MAN3=3D 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=3D pcre-config.1 \ > | + pcregrep.1 \ > | + pcretest.1 > | +MAN3=3D 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+=3D 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_orde= r.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_d= oc|dist_html|html)DATA,,g' \ > http://cvsweb.FreeBSD.org/ports/devel/pcre/distinfo.diff?r1=3D1.38&r2=3D= 1.39&f=3Dh > | --- 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) =3D a4b8509d11fc2764fb4e1415b764ad2c21445= 9edc011ce48aeeb6bbe1ac599e3 > | -SIZE (pcre-8.21.tar.bz2) =3D 1174037 > | +SHA256 (pcre-8.30.tar.bz2) =3D c1113fd7db934e97ad8b3917d432e5b642e9e= b9afd127eb797804937c965f4ac > | +SIZE (pcre-8.30.tar.bz2) =3D 1248556 > http://cvsweb.FreeBSD.org/ports/devel/pcre/pkg-plist.diff?r1=3D1.16&r2=3D= 1.17&f=3Dh > | --- 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 --=20 ------------------------------------------------------------------------ 1024D/DB9B8C1C B90B FBC3 A3A1 C71A 8E70 3F8C 75B8 8FFB DB9B 8C1C Philip M. Gollucci (pgollucci@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. --------------enig292646D585B19E46529E4359 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.18 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iD8DBQFPOo5kdbiP+9ubjBwRArqCAJ9LNKA+1Xi5T5uK6Ay4G0kVmRdXJgCfQHpQ r7yIcSwSEmzAYuoz000zUOY= =Z4Ig -----END PGP SIGNATURE----- --------------enig292646D585B19E46529E4359--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?4F3A8E62.60003>