Diff ucx-1.9.0 with a ucx-1.10.0_rc5

/usr/portage/sys-cluster/ucx/ucx-1.10.0_rc5.ebuild 2023-10-09 14:52:35.468368501 +0300
3 3

  
4 4
EAPI=7
5 5

  
6
inherit autotools
7

  
8
MY_PV=${PV/_/-}
6 9
DESCRIPTION="Unified Communication X"
7 10
HOMEPAGE="https://www.openucx.org"
8
SRC_URI="https://github.com/openucx/ucx/releases/download/v${PV}/${P}.tar.gz"
11
SRC_URI="https://github.com/openucx/ucx/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
12
S="${WORKDIR}/${PN}-${MY_PV}"
9 13

  
10
SLOT="0"
11 14
LICENSE="BSD"
12
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
15
SLOT="0"
16
KEYWORDS="~amd64 -riscv ~x86 ~amd64-linux ~x86-linux"
13 17
IUSE="+numa +openmp"
14 18

  
15 19
RDEPEND="
......
18 22
"
19 23
DEPEND="${RDEPEND}"
20 24

  
25
PATCHES=(
26
	"${FILESDIR}"/${PN}-1.10.0_rc5-drop-werror.patch
27
)
28

  
29
src_prepare() {
30
	default
31
	eautoreconf
32
}
33

  
21 34
src_configure() {
22 35
	BASE_CFLAGS="" \
23 36
	econf \
Thank you!