Diff hipBLAS-6.1.1 with a hipBLAS-6.3.2

/usr/portage/sci-libs/hipBLAS/hipBLAS-6.3.2.ebuild 2025-07-29 16:22:17.336467760 +0300
1
# Copyright 1999-2024 Gentoo Authors
1
# Copyright 1999-2025 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
......
17 17
SLOT="0/$(ver_cut 1-2)"
18 18
KEYWORDS="~amd64"
19 19

  
20
RDEPEND="dev-util/hip
20
RDEPEND="
21
	dev-util/hip:${SLOT}
22
	sci-libs/hipBLAS-common:${SLOT}
21 23
	sci-libs/rocBLAS:${SLOT}[${ROCM_USEDEP}]
22
	sci-libs/rocSOLVER:${SLOT}[${ROCM_USEDEP}]"
24
	sci-libs/rocSOLVER:${SLOT}[${ROCM_USEDEP}]
25
"
23 26
DEPEND="${RDEPEND}"
24 27

  
28
PATCHES=(
29
	"${FILESDIR}"/${PN}-6.3.0-no-git.patch
30
)
31

  
25 32
src_configure() {
26 33
	# Note: hipcc is enforced; clang fails when libc++ is enabled
27 34
	# with an error similar to https://github.com/boostorg/config/issues/392
Thank you!