Diff legion-23.03.0 with a legion-9999

/usr/portage/sys-cluster/legion/legion-9999.ebuild 2023-10-09 14:52:35.464368501 +0300
1
# Copyright 1999-2023 Gentoo Authors
1
# Copyright 1999-2021 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
......
22 22
IUSE="examples gasnet hwloc test"
23 23
RESTRICT="!test? ( test )"
24 24

  
25
# https://github.com/StanfordLegion/legion/issues/575 re <hwloc-2
26 25
# See bug #821424 for examples/mpi
27 26
DEPEND="examples? ( virtual/mpi[cxx] )
28 27
	gasnet? ( >=sys-cluster/gasnet-1.26.4-r1 )
29 28
	hwloc? ( <sys-apps/hwloc-2:= )"
30 29
RDEPEND="${DEPEND}"
31 30

  
32
PATCHES=(
33
	"${FILESDIR}"/${PN}-23.03.0-gcc13.patch
34
)
35

  
36 31
src_configure() {
37 32
	local mycmakeargs=(
38 33
		-DLegion_USE_HWLOC=$(usex hwloc)
Thank you!