Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/jemalloc/
Date: Thu, 23 Aug 2018 00:22:38
Message-Id: 1534983737.6ce311f8ad19cd606c2b2155cd765c8383b3bdd0.whissi@gentoo
1 commit: 6ce311f8ad19cd606c2b2155cd765c8383b3bdd0
2 Author: Tomas Mozes <hydrapolic <AT> gmail <DOT> com>
3 AuthorDate: Thu Aug 23 00:02:45 2018 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 23 00:22:17 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ce311f8
7
8 dev-libs/jemalloc: bump to 5.1.0
9
10 Closes: https://github.com/gentoo/gentoo/pull/9471
11 Closes: https://bugs.gentoo.org/662922
12 Package-Manager: Portage-2.3.44, Repoman-2.3.10
13 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
14
15 dev-libs/jemalloc/Manifest | 1 +
16 dev-libs/jemalloc/jemalloc-5.1.0.ebuild | 61 +++++++++++++++++++++++++++++++++
17 2 files changed, 62 insertions(+)
18
19 diff --git a/dev-libs/jemalloc/Manifest b/dev-libs/jemalloc/Manifest
20 index e32161b7b21..53502225ff4 100644
21 --- a/dev-libs/jemalloc/Manifest
22 +++ b/dev-libs/jemalloc/Manifest
23 @@ -2,3 +2,4 @@ DIST jemalloc-3.6.0.tar.bz2 338964 BLAKE2B a5edacc85c5bebf3b373e7fc8bafd9449273f
24 DIST jemalloc-4.4.0.tar.bz2 440144 BLAKE2B 6acb91c5be6c5b17c209341dd08e6973e3ad5ecdfe7ebe5d8c78181cddca1fccba3c11628e736d66acd7698f7813f38077033d39093bf2e4bd704c8b4de60e7b SHA512 2f88fb17ede3bf87e334e9c80949870e0dd85b5adcdd89a1750ccf6df5240f35293159ac0a360d3a29cf0b1d17edf86dcc7997c6bf3190ae7da7442d3a3cc14e
25 DIST jemalloc-4.5.0.tar.bz2 449992 BLAKE2B 6141c71f7f5f9cee91a59eeed9c69b0a69b3cc39666aa608445073c11ee3ca9b4777a851c5cb5adac80d42bfbf10a6726e5dc1340ffe85ea1ee884d87c7865da SHA512 76953363fe1007952232220afa1a91da4c1c33c02369b5ad239d8dd1d0792141197c15e8489a8f4cd301b08494e65cadd8ecd34d025cb0285700dd78d7248821
26 DIST jemalloc-5.0.1.tar.bz2 499300 BLAKE2B 551933fcd93315968cbf89bfadc40313717ff216141af8a131f2333d10090438ddf36fbfdc0ee831cbec6f930ae15aa9cfaafae72ed4f38dd97b00712ca918e8 SHA512 8cb5957a5724eb2bbad120cf0028ea8b2b14b4a416c1751b7c967351a7fd51135058ea0d3c4dc1d127c86f3aa7e9fd5ef101857110aabfdb7789427791c432c3
27 +DIST jemalloc-5.1.0.tar.bz2 515622 BLAKE2B 3c8b35d30fca0018e3e32452e6fa41c7ac59f9f2f7d4bc243237fde95025ab5a7562fb86b5afe2ca9b7bb072f7baf6ac7589a4862d9ebaafddae187d93e20da0 SHA512 d9abebe54d303ca931b8c31c1033f23ff5fb060f2377ec8386f4d79c352e65c78ed34f680c352dac14f7d7115d10245782d553d988bc13df2eb34a2f0942ef6f
28
29 diff --git a/dev-libs/jemalloc/jemalloc-5.1.0.ebuild b/dev-libs/jemalloc/jemalloc-5.1.0.ebuild
30 new file mode 100644
31 index 00000000000..7eda36ea909
32 --- /dev/null
33 +++ b/dev-libs/jemalloc/jemalloc-5.1.0.ebuild
34 @@ -0,0 +1,61 @@
35 +# Copyright 1999-2018 Gentoo Foundation
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=6
39 +
40 +inherit autotools toolchain-funcs multilib-minimal
41 +
42 +DESCRIPTION="Jemalloc is a general-purpose scalable concurrent allocator"
43 +HOMEPAGE="http://jemalloc.net/ https://github.com/jemalloc/jemalloc"
44 +SRC_URI="https://github.com/jemalloc/jemalloc/releases/download/${PV}/${P}.tar.bz2"
45 +
46 +LICENSE="BSD"
47 +SLOT="0/2"
48 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
49 +IUSE="debug hardened lazy-lock static-libs stats xmalloc"
50 +HTML_DOCS=( doc/jemalloc.html )
51 +PATCHES=( "${FILESDIR}/${PN}-5.0.1-strip-optimization.patch"
52 + "${FILESDIR}/${PN}-4.5.0-fix_html_install.patch"
53 +)
54 +MULTILIB_WRAPPED_HEADERS=( /usr/include/jemalloc/jemalloc.h )
55 +# autotools-utils.eclass auto-adds configure options when static-libs is in IUSE
56 +# but jemalloc doesn't implement them in its configure; need this here to
57 +# supress the warnings until automagic is removed from the eclass
58 +QA_CONFIGURE_OPTIONS="--enable-static --disable-static --enable-shared --disable-shared"
59 +
60 +src_prepare() {
61 + default
62 + eautoreconf
63 +}
64 +
65 +multilib_src_configure() {
66 + local myconf=()
67 +
68 + if use hardened ; then
69 + myconf+=( --disable-syscall )
70 + fi
71 +
72 + ECONF_SOURCE="${S}" \
73 + econf \
74 + $(use_enable debug) \
75 + $(use_enable lazy-lock) \
76 + $(use_enable stats) \
77 + $(use_enable xmalloc) \
78 + "${myconf[@]}"
79 +}
80 +
81 +multilib_src_install() {
82 + # Copy man file which the Makefile looks for
83 + cp "${S}/doc/jemalloc.3" "${BUILD_DIR}/doc" || die
84 + emake DESTDIR="${D}" install
85 +}
86 +
87 +multilib_src_install_all() {
88 + if [[ ${CHOST} == *-darwin* ]] ; then
89 + # fixup install_name, #437362
90 + install_name_tool \
91 + -id "${EPREFIX}"/usr/$(get_libdir)/libjemalloc.2.dylib \
92 + "${ED}"/usr/$(get_libdir)/libjemalloc.2.dylib || die
93 + fi
94 + use static-libs || find "${ED}" -name '*.a' -delete
95 +}