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