diff options
author | 2022-08-16 16:36:01 -0400 | |
---|---|---|
committer | 2022-09-02 22:28:28 +0100 | |
commit | 5564ef5a3056127e1444edd89b45f6e16b560a82 (patch) | |
tree | 92722d7577ad26d5c78c831fd437a5c9a7bb7c87 /dev-util | |
parent | app-crypt/gnupg: add 2.2.39 (diff) | |
download | gentoo-5564ef5a3056127e1444edd89b45f6e16b560a82.tar.gz gentoo-5564ef5a3056127e1444edd89b45f6e16b560a82.tar.bz2 gentoo-5564ef5a3056127e1444edd89b45f6e16b560a82.zip |
dev-util/google-perftools: add llvm-libunwind to be used
- USE llvm-libunwind
Signed-off-by: dante-robinson <danterobinson2000@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/26885
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/google-perftools/Manifest | 2 | ||||
-rw-r--r-- | dev-util/google-perftools/google-perftools-2.10-r1.ebuild (renamed from dev-util/google-perftools/google-perftools-2.10.ebuild) | 14 |
2 files changed, 7 insertions, 9 deletions
diff --git a/dev-util/google-perftools/Manifest b/dev-util/google-perftools/Manifest index 0f343649601f..4957d61fd891 100644 --- a/dev-util/google-perftools/Manifest +++ b/dev-util/google-perftools/Manifest @@ -1,2 +1,2 @@ -DIST gperftools-2.9.1.tar.gz 924910 BLAKE2B fcf0491e42ff4212a63ab0af422f27f5a625c53a0b33e69f8dede96b004a0f01af104d9791a4b75d38145ae0059f5e2967ea1d09b0712cc4d930ef7aafd4f3ba SHA512 5e07f28da9afc5f1ba3df7f06ad0e146c171d33e1779bbaab21547ed234aaced02e5278c1eb8f92fc45480abd2474d6a2d4c71644fb9378f41088c56cc1bc8ab DIST gperftools-2.10.tar.gz 926512 BLAKE2B e92fb751f9e695d21edf5fce443f3d3641fcff15cbd6b5d868bc77fbe622594be824b75c8d45513c7f82b9e574c690133b8502d4574162948a77886d5166b92d SHA512 4400711723be9401f519d85b3b69c026e4715473cbed48ab0573df17abdf895fb971ee969875fe5127a2e8b9aba90d858285e50c8e012384c2c36d5a76b1f0c4 +DIST gperftools-2.9.1.tar.gz 924910 BLAKE2B fcf0491e42ff4212a63ab0af422f27f5a625c53a0b33e69f8dede96b004a0f01af104d9791a4b75d38145ae0059f5e2967ea1d09b0712cc4d930ef7aafd4f3ba SHA512 5e07f28da9afc5f1ba3df7f06ad0e146c171d33e1779bbaab21547ed234aaced02e5278c1eb8f92fc45480abd2474d6a2d4c71644fb9378f41088c56cc1bc8ab diff --git a/dev-util/google-perftools/google-perftools-2.10.ebuild b/dev-util/google-perftools/google-perftools-2.10-r1.ebuild index 42f067fa0ced..cb76ce6b7b1d 100644 --- a/dev-util/google-perftools/google-perftools-2.10.ebuild +++ b/dev-util/google-perftools/google-perftools-2.10-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -19,16 +19,14 @@ SLOT="0/4" # AIX ppc/ppc64 KEYWORDS="-* ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux" -IUSE="largepages largepages64k +debug minimal optimisememory test static-libs" +IUSE="largepages largepages64k +debug llvm-libunwind minimal optimisememory test static-libs" RESTRICT="!test? ( test )" -# TODO: remove the riscv special case once either libunwind has begun supporting this arch -# or this package allows using llvm-libunwind for other arches -DEPEND="!ppc64? ( - riscv? ( sys-libs/llvm-libunwind:= ) - !riscv? ( sys-libs/libunwind:= ) -)" +DEPEND=" + llvm-libunwind? ( sys-libs/llvm-libunwind:= ) + !llvm-libunwind? ( sys-libs/libunwind:= ) +" RDEPEND="${DEPEND}" S="${WORKDIR}/${MY_P}" |