Diff kcov-40 with a kcov-9999

/usr/portage/dev-util/kcov/kcov-9999.ebuild 2023-10-09 14:52:30.976368388 +0300
1
# Copyright 1999-2023 Gentoo Authors
1
# Copyright 1999-2022 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6
PYTHON_COMPAT=( python3_{9,10} )
7
inherit cmake python-any-r1
6
inherit cmake
8 7

  
9 8
DESCRIPTION="Kcov is a code coverage tester for compiled languages, Python and Bash"
10 9
HOMEPAGE="https://github.com/SimonKagstrom/kcov"
......
25 24
	sys-libs/zlib
26 25
	binutils? ( sys-libs/binutils-libs:= )"
27 26
DEPEND="${RDEPEND}"
28
BDEPEND="${PYTHON_DEPS}"
29

  
30
PATCHES=(
31
	"${FILESDIR}"/${P}-binutils-2.39.patch
32
	"${FILESDIR}"/${P}-gcc-13.patch
33
)
34 27

  
35 28
src_configure() {
36 29
	local mycmakeargs=(
Thank you!