Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libpcre2/
Date: Wed, 12 Sep 2018 08:37:39
Message-Id: 1536741448.ed6b211ce2fcb06dfe77e27ea8bcf074b128261e.polynomial-c@gentoo
1 commit: ed6b211ce2fcb06dfe77e27ea8bcf074b128261e
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 12 08:37:13 2018 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 12 08:37:28 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed6b211c
7
8 dev-libs/libpcre2: Bump to version 10.32
9
10 Package-Manager: Portage-2.3.49, Repoman-2.3.10
11
12 dev-libs/libpcre2/Manifest | 1 +
13 dev-libs/libpcre2/libpcre2-10.32.ebuild | 79 +++++++++++++++++++++++++++++++++
14 2 files changed, 80 insertions(+)
15
16 diff --git a/dev-libs/libpcre2/Manifest b/dev-libs/libpcre2/Manifest
17 index 01e1b1e4a83..08483bc57e6 100644
18 --- a/dev-libs/libpcre2/Manifest
19 +++ b/dev-libs/libpcre2/Manifest
20 @@ -1,2 +1,3 @@
21 DIST pcre2-10.30.tar.bz2 1583543 BLAKE2B bd9369f3c81bf0d154aaf3d111b934835af25068051f9bcafc0d4b00376011ff7a4acfac127ee10efe6094021163a07a073076d9d769eff68823fd8d1041cd1f SHA512 f247a9f917c75920793b9919a45bb1426d126246e7a5d04e39d9407e44b5781f894a90cd3d232b385436b2f22be391335ab782664dd3a28c79058a2fcc74dc3e
22 DIST pcre2-10.31.tar.bz2 1603075 BLAKE2B 3cc101b738320823f5b8ab5d29fcc94d8bc2ecd3fbade148de34eda5371cc4d9c168f9e234f0d581626f3da85988ec8d46f76377b019459d3f6b044998e82426 SHA512 44d7db2513d9415dcdf6541366fea585e016f572f3e4379f6e959a38114b2337851092049ab4a1576ae8f19b9de413edbcfa62f434c77fc8470747ee5413e967
23 +DIST pcre2-10.32.tar.bz2 1641814 BLAKE2B fdd512312547ae90b36b6c9eb86b6fcfea9b03fcfd9766063c901819c6bf7536e1f3da89bd69ae62309069bc07c705e96e81f4a36355bf934c566f343e3104e4 SHA512 3d712e7d6afbaef227952680ded69fadbdec0b1abdfcac17cf071415c3c93edd152d6d268dec80570aedf24f82ba954f74f5f9e62c9b9991be75080a3d6ab5fe
24
25 diff --git a/dev-libs/libpcre2/libpcre2-10.32.ebuild b/dev-libs/libpcre2/libpcre2-10.32.ebuild
26 new file mode 100644
27 index 00000000000..642cd4e24e1
28 --- /dev/null
29 +++ b/dev-libs/libpcre2/libpcre2-10.32.ebuild
30 @@ -0,0 +1,79 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +inherit flag-o-matic libtool multilib-minimal toolchain-funcs
37 +
38 +DESCRIPTION="Perl-compatible regular expression library"
39 +HOMEPAGE="http://www.pcre.org/"
40 +MY_P="pcre2-${PV/_rc/-RC}"
41 +if [[ ${PV} != *_rc* ]] ; then
42 + # Only the final releases are available here.
43 + SRC_URI="mirror://sourceforge/pcre/${MY_P}.tar.bz2
44 + ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${MY_P}.tar.bz2"
45 +else
46 + SRC_URI="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/Testing/${MY_P}.tar.bz2"
47 +fi
48 +
49 +LICENSE="BSD"
50 +SLOT="0"
51 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
52 +IUSE="bzip2 +jit libedit pcre16 pcre32 +readline +recursion-limit static-libs unicode zlib"
53 +REQUIRED_USE="?? ( libedit readline )"
54 +
55 +RDEPEND="bzip2? ( app-arch/bzip2 )
56 + zlib? ( sys-libs/zlib )
57 + libedit? ( dev-libs/libedit )
58 + readline? ( sys-libs/readline:0= )"
59 +DEPEND="${RDEPEND}
60 + virtual/pkgconfig
61 + userland_GNU? ( >=sys-apps/findutils-4.4.0 )"
62 +
63 +S="${WORKDIR}/${MY_P}"
64 +
65 +MULTILIB_CHOST_TOOLS=(
66 + /usr/bin/pcre2-config
67 +)
68 +
69 +src_prepare() {
70 + default
71 +
72 + elibtoolize
73 +}
74 +
75 +multilib_src_configure() {
76 + local myeconfargs=(
77 + --enable-pcre2-8
78 + --enable-shared
79 + --htmldir="${EPREFIX}"/usr/share/doc/${PF}/html
80 + --with-match-limit-depth=$(usex recursion-limit 8192 MATCH_LIMIT)
81 + $(multilib_native_use_enable bzip2 pcre2grep-libbz2)
82 + $(multilib_native_use_enable libedit pcre2test-libedit)
83 + $(multilib_native_use_enable readline pcre2test-libreadline)
84 + $(multilib_native_use_enable zlib pcre2grep-libz)
85 + $(use_enable jit)
86 + $(use_enable jit pcre2grep-jit)
87 + $(use_enable pcre16 pcre2-16)
88 + $(use_enable pcre32 pcre2-32)
89 + $(use_enable static-libs static)
90 + $(use_enable unicode)
91 + )
92 + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
93 +}
94 +
95 +multilib_src_compile() {
96 + emake V=1 $(multilib_is_native_abi || echo "bin_PROGRAMS=")
97 +}
98 +
99 +multilib_src_install() {
100 + emake \
101 + DESTDIR="${D}" \
102 + $(multilib_is_native_abi || echo "bin_PROGRAMS= dist_html_DATA=") \
103 + install
104 + multilib_is_native_abi && gen_usr_ldscript -a pcre2-posix
105 +}
106 +
107 +multilib_src_install_all() {
108 + find "${ED}" -name "*.la" -delete || die
109 +}