Diff rdma-core-45.0 with a rdma-core-47.0

/usr/portage/sys-cluster/rdma-core/rdma-core-47.0.ebuild 2023-10-09 14:52:35.468368501 +0300
3 3

  
4 4
EAPI=8
5 5

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

  
8 8
inherit cmake perl-functions python-single-r1 udev systemd
9 9

  
......
29 29
	neigh? ( dev-libs/libnl:3 )
30 30
	systemd? ( sys-apps/systemd:= )
31 31
	valgrind? ( dev-util/valgrind )
32
	python? ( ${PYTHON_DEPS} )"
33
DEPEND="${COMMON_DEPEND}
32
	python? ( ${PYTHON_DEPS} )
33
"
34
DEPEND="
35
	${COMMON_DEPEND}
34 36
	python? (
35 37
		$(python_gen_cond_dep '
36
			dev-python/cython[${PYTHON_USEDEP}]
38
			<dev-python/cython-3[${PYTHON_USEDEP}]
37 39
		')
38
	)"
40
	)
41
"
39 42
RDEPEND="${COMMON_DEPEND}
40 43
	!sys-fabric/infiniband-diags
41 44
	!sys-fabric/libibverbs
......
51 54
	!sys-fabric/libmlx4
52 55
	!sys-fabric/libmlx5
53 56
	!sys-fabric/libocrdma
54
	!sys-fabric/libnes"
57
	!sys-fabric/libnes
58
"
55 59
# python is required unconditionally at build-time
56 60
BDEPEND="
57 61
	${PYTHON_DEPS}
58
	virtual/pkgconfig"
62
	virtual/pkgconfig
63
"
59 64

  
60
PATCHES=( "${FILESDIR}"/${PN}-39.0-RDMA_BuildType.patch )
65
PATCHES=(
66
	"${FILESDIR}"/${PN}-39.0-RDMA_BuildType.patch
67
)
61 68

  
62 69
src_configure() {
63 70
	perl_set_version
71

  
64 72
	local mycmakeargs=(
65 73
		-DCMAKE_INSTALL_SYSCONFDIR="${EPREFIX}"/etc
66 74
		-DCMAKE_INSTALL_RUNDIR=/run
Thank you!