Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/google-perftools/
Date: Sun, 14 Oct 2018 10:19:07
Message-Id: 1539512289.0fc27cfeeb7b0431db4da300e2b81dfeec90fc0c.pacho@gentoo
1 commit: 0fc27cfeeb7b0431db4da300e2b81dfeec90fc0c
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 14 09:43:56 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 14 10:18:09 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fc27cfe
7
8 dev-util/google-perftools: Bump to 2.7
9
10 Closes: https://bugs.gentoo.org/586834
11 Closes: https://bugs.gentoo.org/662590
12 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
13 Package-Manager: Portage-2.3.51, Repoman-2.3.11
14
15 dev-util/google-perftools/Manifest | 1 +
16 .../google-perftools/google-perftools-2.7.ebuild | 88 ++++++++++++++++++++++
17 2 files changed, 89 insertions(+)
18
19 diff --git a/dev-util/google-perftools/Manifest b/dev-util/google-perftools/Manifest
20 index 3b610add720..9979b0356e5 100644
21 --- a/dev-util/google-perftools/Manifest
22 +++ b/dev-util/google-perftools/Manifest
23 @@ -2,3 +2,4 @@ DIST gperftools-2.0.tar.gz 1261243 BLAKE2B a37c62f6f3c27a29036955c37a58c480e5cc6
24 DIST gperftools-2.4.tar.gz 890402 BLAKE2B f4893d7c9bbd3a8dc5b4d8a25837039261fa32782e13653991002ab666d6e81de637932a8b46c66df219336adcc395a217a4ce32332e8e1558beeb140ea642f2 SHA512 77198c150ee26579adc8f190be0c4ba90a9e3854b006c3aa9252b5863b1fce317fd690c6aa0ed202c81f0bbcfbe2d5f8a182263e77b7fb4fbc6b3e8bfffc9fb0
25 DIST gperftools-2.6.2.tar.gz 911744 BLAKE2B e5798a2f0f2973f02bccabb2550a9df54319e505fc715795cd836ced631b29bfd8e6f8ddf3c7f6dceb0f166523bb0fa55564b1cbc896c8cd8cfd475263c07c39 SHA512 20c3460f806c6425d54e8d1020f15bc8940aacd7bf1367b03a116fb873bbd6c1e1fbb75df1d0ca341eaec813552fec394327175115ea8442a4b7a1ef17f0df2f
26 DIST gperftools-2.6.3.tar.gz 911813 BLAKE2B dae223927835f65b819836b25595df2943a0762ac3b6346e3d0186dab486cfa3e4eabc1f5a2ec43314f53ea96a68acb75991b76055591395bc52e78f655630d3 SHA512 6418c382760c8870ef42a535fcb65a623c1a9fd3ab58fcb7cfe2dd5048b2268b434427da36bc0c76beef2c28e13a6926d32d67084d8ca6675b78650a62de77a7
27 +DIST gperftools-2.7.tar.gz 916919 BLAKE2B c48882df45415110c1ec39298e84ec9384f6a82851d95e92435649d2b253b9fb8e29664b474e45881599abf3781731c47ead0b6c454c33be9a207a6a2401a97c SHA512 9aa39689bc18603123204f024ab6dc96099b70a3d304e31ef0cc1e9893cc77bd14ee6eb420e597d40e81e487a2a45e77cf1965873646d056fd4b7bee22a4b0bb
28
29 diff --git a/dev-util/google-perftools/google-perftools-2.7.ebuild b/dev-util/google-perftools/google-perftools-2.7.ebuild
30 new file mode 100644
31 index 00000000000..79113d00762
32 --- /dev/null
33 +++ b/dev-util/google-perftools/google-perftools-2.7.ebuild
34 @@ -0,0 +1,88 @@
35 +# Copyright 1999-2018 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=6
39 +MY_P="gperftools-${PV}"
40 +
41 +inherit toolchain-funcs flag-o-matic autotools vcs-snapshot multilib-minimal
42 +
43 +DESCRIPTION="Fast, multi-threaded malloc() and nifty performance analysis tools"
44 +HOMEPAGE="https://github.com/gperftools/gperftools"
45 +SRC_URI="https://github.com/gperftools/gperftools/tarball/${MY_P} -> ${MY_P}.tar.gz"
46 +
47 +LICENSE="MIT"
48 +SLOT="0/4"
49 +# contains ASM code, with support for
50 +# freebsd x86/amd64
51 +# linux x86/amd64/ppc/ppc64/arm
52 +# OSX ppc/amd64
53 +# AIX ppc/ppc64
54 +KEYWORDS="-* ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
55 +
56 +IUSE="largepages +debug minimal optimisememory test static-libs"
57 +
58 +DEPEND="sys-libs/libunwind"
59 +RDEPEND="${DEPEND}"
60 +
61 +S="${WORKDIR}/${MY_P}"
62 +
63 +pkg_setup() {
64 + # set up the make options in here so that we can actually make use
65 + # of them on both compile and install.
66 +
67 + # Avoid building the unit testing if we're not going to execute
68 + # tests; this trick here allows us to ignore the tests without
69 + # touching the build system (and thus without rebuilding
70 + # autotools). Keep commented as long as it's restricted.
71 + use test || \
72 + MAKEOPTS+=" noinst_PROGRAMS= "
73 +}
74 +
75 +src_prepare() {
76 + default
77 + eautoreconf
78 + multilib_copy_sources
79 +}
80 +
81 +multilib_src_configure() {
82 + use largepages && append-cppflags -DTCMALLOC_LARGE_PAGES
83 + use optimisememory && append-cppflags -DTCMALLOC_SMALL_BUT_SLOW
84 + append-flags -fno-strict-aliasing -fno-omit-frame-pointer
85 +
86 + econf \
87 + --docdir=${EPREFIX}/usr/share/doc/${PF} \
88 + --enable-shared \
89 + $(use_enable static-libs static) \
90 + $(use_enable debug debugalloc) \
91 + $(if [[ ${ABI} == x32 ]]; then printf "--enable-minimal\n" else use_enable minimal; fi)
92 +}
93 +
94 +src_test() {
95 + case "${LD_PRELOAD}" in
96 + *libsandbox*)
97 + ewarn "Unable to run tests when sandbox is enabled."
98 + ewarn "See https://bugs.gentoo.org/290249"
99 + return 0
100 + ;;
101 + esac
102 +
103 + multilib-minimal_src_test
104 +}
105 +
106 +src_install() {
107 + if ! use minimal && has x32 ${MULTILIB_ABIS}; then
108 + MULTILIB_WRAPPED_HEADERS=(
109 + /usr/include/gperftools/heap-checker.h
110 + /usr/include/gperftools/heap-profiler.h
111 + /usr/include/gperftools/stacktrace.h
112 + /usr/include/gperftools/profiler.h
113 + )
114 + fi
115 +
116 + multilib-minimal_src_install
117 +}
118 +
119 +multilib_src_install_all() {
120 + einstalldocs
121 + use static-libs || find "${D}" -name '*.la' -delete || die
122 +}