Diff bear-3.1.2 with a bear-3.1.3

/usr/portage/dev-util/bear/bear-3.1.3.ebuild 2023-10-09 14:52:30.940368387 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
PYTHON_COMPAT=( python3_{10..11} )
6
PYTHON_COMPAT=( python3_{10..12} )
7 7

  
8 8
inherit cmake python-any-r1
9 9

  
10 10
DESCRIPTION="Build EAR generates a compilation database for clang tooling"
11 11
HOMEPAGE="https://github.com/rizsotto/Bear"
12 12
SRC_URI="https://github.com/rizsotto/Bear/archive/${PV}.tar.gz -> ${P}.tar.gz"
13
S="${WORKDIR}/${P^}"
13 14

  
14 15
LICENSE="GPL-3+"
15 16
SLOT="0"
16
KEYWORDS="amd64 ~arm64 ~loong ~ppc64 ~riscv x86"
17
KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
17 18
IUSE="test"
19
RESTRICT="!test? ( test )"
18 20

  
19 21
RDEPEND="
20 22
	>=dev-cpp/nlohmann_json-3.11.2:=
......
25 27
	>=net-libs/grpc-1.49.2:=
26 28
"
27 29

  
28
DEPEND="${RDEPEND}
30
DEPEND="
31
	${RDEPEND}
29 32
	test? (
30 33
		>=dev-cpp/gtest-1.13
31 34
	)
......
41 44
	)
42 45
"
43 46

  
44
RESTRICT="!test? ( test )"
45

  
46
S="${WORKDIR}/${P^}"
47

  
48
PATCHES=(
49
	"${FILESDIR}"/${PN}-3.0.21-libfmt-10.0.0.patch
50
)
51

  
52 47
pkg_setup() {
53 48
	use test && python-any-r1_pkg_setup
54 49
}
Thank you!