commit:     d8c6db460e2de44b3d4db179687ca5a6334ac3cf
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 21 06:59:50 2018 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Wed Mar 21 07:05:42 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8c6db46

dev-libs/libpcre: Bump to version 8.42

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-libs/libpcre/Manifest                          |  1 +
 .../libpcre-8.41-fix-stack-size-detection.patch    |  4 +-
 dev-libs/libpcre/libpcre-8.42.ebuild               | 96 ++++++++++++++++++++++
 3 files changed, 99 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libpcre/Manifest b/dev-libs/libpcre/Manifest
index 6cdfc4655c5..9c138703d64 100644
--- a/dev-libs/libpcre/Manifest
+++ b/dev-libs/libpcre/Manifest
@@ -1,2 +1,3 @@
 DIST pcre-8.40.tar.bz2 1560119 BLAKE2B 
121d2c9f8c403a663fe27a68030faf09a06dec5e6a25ae8d62e06887850e219e87c71a14f6ded084fa25b719067acb71c89c66c81f6f09f55dcc51feaf41e737
 SHA512 
b4c27eafbdf33bd7a1384655b1936f4be3bc6745c072347eb26e988896c52664bd85ac42444da1be78b6e20f45b6c7e5921f5f20f5b0741b5bd3d9844e5bd4e2
 DIST pcre-8.41.tar.bz2 1561874 BLAKE2B 
2a97a859237994137190da00c30ba7c15e8631b82b7f200858cf722f1fdd0405d36c24bb716eb099d8107f2f829a85fd7d3497f36cdac51769636989331e7a79
 SHA512 
cc9cdbeb98c010fe4f093a019bebfb91965dae4c6a48f8e49c38ec8df7d9da7f0d32c12fc58f22c51f1c2f010e72b65bcbf8bbf180060e93edf464fa9a7c3551
+DIST pcre-8.42.tar.bz2 1570171 BLAKE2B 
f68bac3cf8ff5a81ccba31fd4d8926e05143a25a756e7daba9793467cec9cd8a4766f394f958ffca088b472463a43a31ea77014f2d4505082c1f366a18f30c7a
 SHA512 
b47b923108f6ee0c31409b79d0888314271b482a22590e164d02f21d2112fba22dd0342c24f9ba0f5fcc5b8c65550bad08c476e30a2fc79b34ecf4601ed82f3d

diff --git a/dev-libs/libpcre/files/libpcre-8.41-fix-stack-size-detection.patch 
b/dev-libs/libpcre/files/libpcre-8.41-fix-stack-size-detection.patch
index 0fd6b5f3b22..a0e71ab3f30 100644
--- a/dev-libs/libpcre/files/libpcre-8.41-fix-stack-size-detection.patch
+++ b/dev-libs/libpcre/files/libpcre-8.41-fix-stack-size-detection.patch
@@ -1,8 +1,8 @@
 https://bugs.exim.org/show_bug.cgi?id=2173#c4
 
 diff --git a/pcre/pcre_exec.c b/pcre/pcre_exec.c
---- a/pcre/pcre_exec.c
-+++ b/pcre/pcre_exec.c
+--- a/pcre_exec.c
++++ b/pcre_exec.c
 @@ -509,6 +509,12 @@
                   (e.g. stopped by repeated call or recursion limit)
  */

diff --git a/dev-libs/libpcre/libpcre-8.42.ebuild 
b/dev-libs/libpcre/libpcre-8.42.ebuild
new file mode 100644
index 00000000000..613e96bb360
--- /dev/null
+++ b/dev-libs/libpcre/libpcre-8.42.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit multilib libtool flag-o-matic toolchain-funcs multilib-minimal
+
+DESCRIPTION="Perl-compatible regular expression library"
+HOMEPAGE="http://www.pcre.org/";
+MY_P="pcre-${PV/_rc/-RC}"
+if [[ ${PV} != *_rc* ]] ; then
+       # Only the final releases are available here.
+       SRC_URI="mirror://sourceforge/pcre/${MY_P}.tar.bz2
+               
ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${MY_P}.tar.bz2";
+else
+       
SRC_URI="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/Testing/${MY_P}.tar.bz2";
+fi
+
+LICENSE="BSD"
+SLOT="3"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="bzip2 +cxx +jit libedit pcre16 pcre32 +readline +recursion-limit 
static-libs unicode zlib"
+REQUIRED_USE="readline? ( !libedit )
+       libedit? ( !readline )"
+
+RDEPEND="
+       bzip2? ( app-arch/bzip2 )
+       zlib? ( sys-libs/zlib )
+       libedit? ( dev-libs/libedit )
+       readline? ( sys-libs/readline:0= )
+"
+DEPEND="
+       ${RDEPEND}
+       virtual/pkgconfig
+"
+
+S="${WORKDIR}/${MY_P}"
+
+MULTILIB_CHOST_TOOLS=(
+       /usr/bin/pcre-config
+)
+
+PATCHES=(
+       "${FILESDIR}"/${PN}-8.41-fix-stack-size-detection.patch
+)
+
+src_prepare() {
+       default
+       sed -i -e "s:-lpcre ::" libpcrecpp.pc.in || die
+       elibtoolize
+}
+
+multilib_src_configure() {
+       local myeconfargs=(
+               --with-match-limit-recursion=$(usex recursion-limit 8192 
MATCH_LIMIT)
+               $(multilib_native_use_enable bzip2 pcregrep-libbz2)
+               $(use_enable cxx cpp)
+               $(use_enable jit)
+               $(use_enable jit pcregrep-jit)
+               $(use_enable pcre16)
+               $(use_enable pcre32)
+               $(multilib_native_use_enable libedit pcretest-libedit)
+               $(multilib_native_use_enable readline pcretest-libreadline)
+               $(use_enable static-libs static)
+               $(use_enable unicode utf)
+               $(use_enable unicode unicode-properties)
+               $(multilib_native_use_enable zlib pcregrep-libz)
+               --enable-pcre8
+               --enable-shared
+       )
+       ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
+}
+
+multilib_src_compile() {
+       emake V=1 $(multilib_is_native_abi || echo "bin_PROGRAMS=")
+}
+
+multilib_src_install() {
+       emake \
+               DESTDIR="${D}" \
+               $(multilib_is_native_abi || echo "bin_PROGRAMS= 
dist_html_DATA=") \
+               install
+       gen_usr_ldscript -a pcre
+}
+
+multilib_src_install_all() {
+       find "${ED}" -name "*.la" -delete || die
+}
+
+pkg_preinst() {
+       preserve_old_lib /$(get_libdir)/libpcre.so.0
+}
+
+pkg_postinst() {
+       preserve_old_lib_notify /$(get_libdir)/libpcre.so.0
+}

Reply via email to