Gentoo Archives: gentoo-commits

From: gerion <gerion.entrup@×××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/user/gerislay:master commit in: dev-cpp/gperftools/
Date: Mon, 10 Dec 2018 09:13:43
Message-Id: 1544433175.81728e82971bfccfbd32347de0e2f5e92697dda4.gerion@gentoo
1 commit: 81728e82971bfccfbd32347de0e2f5e92697dda4
2 Author: Gerion Entrup <gerion.entrup <AT> flump <DOT> de>
3 AuthorDate: Fri Dec 7 12:35:58 2018 +0000
4 Commit: gerion <gerion.entrup <AT> flump <DOT> de>
5 CommitDate: Mon Dec 10 09:12:55 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/user/gerislay.git/commit/?id=81728e82
7
8 gperftools-2.7: initial ebuild
9
10 Signed-off-by: Gerion Entrup <gerion.entrup <AT> flump.de>
11
12 dev-cpp/gperftools/Manifest | 2 ++
13 dev-cpp/gperftools/gperftools-2.7.ebuild | 16 ++++++++++++++++
14 2 files changed, 18 insertions(+)
15
16 diff --git a/dev-cpp/gperftools/Manifest b/dev-cpp/gperftools/Manifest
17 new file mode 100644
18 index 0000000..24b2e8c
19 --- /dev/null
20 +++ b/dev-cpp/gperftools/Manifest
21 @@ -0,0 +1,2 @@
22 +DIST gperftools-2.7.tar.gz 1523562 BLAKE2B 9bf8c60562371c44427551ccb20d74d96c2f7e578a82490bf0f72da5616587e187b80c0504baeb80b9474dc08dfaf79644d04ff1f5133f4bf64cdc882f96dec1 SHA512 7cd079fcfa9fd517ef99ff81c294daa6150898ae9024cb5ee02e1bce086d135d2cadcd2b863528cc82327fc00c9f4574d5078b47a02ac57fbc393fa66adc32ec
23 +EBUILD gperftools-2.7.ebuild 421 BLAKE2B 0838e27991cdae8dd678cd71055ad97565e9634e42495dc2f42405768249ca7997451c164e5ba1690eab08e41c53c3cffbe1578fc7fb7c2f204cf023b0ab010f SHA512 241c38d11a066b217087768f8410cc41b273e94d267912a4a221d0c41fe35e2317947b64e235f8988cf0560e59bb1b8dd714900782de09d863ee4bda9be800b0
24
25 diff --git a/dev-cpp/gperftools/gperftools-2.7.ebuild b/dev-cpp/gperftools/gperftools-2.7.ebuild
26 new file mode 100644
27 index 0000000..46ab78f
28 --- /dev/null
29 +++ b/dev-cpp/gperftools/gperftools-2.7.ebuild
30 @@ -0,0 +1,16 @@
31 +# Copyright 2018 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DESCRIPTION="Fast, multi-threaded malloc() and nifty performance analysis tools"
37 +HOMEPAGE="https://github.com/gperftools/gperftools"
38 +SRC_URI="https://github.com/gperftools/${PN}/releases/download/${P}/${P}.tar.gz"
39 +
40 +LICENSE="BSD"
41 +SLOT="0"
42 +KEYWORDS="~amd64"
43 +IUSE=""
44 +
45 +DEPEND="sys-libs/libunwind"
46 +RDEPEND="${DEPEND}"