Diff google-perftools-2.9.1-r2 with a google-perftools-2.10-r1

/usr/portage/dev-util/google-perftools/google-perftools-2.10-r1.ebuild 2023-10-09 14:52:30.968368387 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2022 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6 6
MY_P="gperftools-${PV}"
7 7
inherit flag-o-matic autotools vcs-snapshot multilib-minimal
......
17 17
# linux amd64/arm/arm64/ppc/ppc64/riscv/x86
18 18
# OSX ppc/amd64
19 19
# AIX ppc/ppc64
20
KEYWORDS="-* amd64 arm arm64 ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
20
KEYWORDS="-* ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
21 21

  
22
IUSE="largepages largepages64k +debug minimal optimisememory test static-libs"
22
IUSE="largepages largepages64k +debug llvm-libunwind minimal optimisememory test static-libs"
23 23

  
24 24
RESTRICT="!test? ( test )"
25 25

  
26
# TODO: remove the riscv special case once either libunwind has begun supporting this arch
27
# or this package allows using llvm-libunwind for other arches
28
DEPEND="!ppc64? (
29
	riscv? ( sys-libs/llvm-libunwind:= )
30
	!riscv? ( sys-libs/libunwind:= )
31
)"
26
DEPEND="
27
	llvm-libunwind? ( sys-libs/llvm-libunwind:= )
28
	!llvm-libunwind? ( sys-libs/libunwind:= )
29
"
32 30
RDEPEND="${DEPEND}"
33 31

  
34 32
S="${WORKDIR}/${MY_P}"
Thank you!