From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 15DC61581FD for ; Wed, 10 Sep 2025 15:07:56 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 04BD6340D2E for ; Wed, 10 Sep 2025 15:07:55 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id A9AC6110377; Wed, 10 Sep 2025 15:07:53 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id A3959110377 for ; Wed, 10 Sep 2025 15:07:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4A253340D2E for ; Wed, 10 Sep 2025 15:07:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC539322B for ; Wed, 10 Sep 2025 15:07:50 +0000 (UTC) From: "Patrick Lauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick Lauer" Message-ID: <1757516868.5b4617663648059130d735aae9c2496fa0405d33.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/hipBLAS/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/hipBLAS/hipBLAS-6.4.3-r1.ebuild X-VCS-Directories: sci-libs/hipBLAS/ X-VCS-Committer: patrick X-VCS-Committer-Name: Patrick Lauer X-VCS-Revision: 5b4617663648059130d735aae9c2496fa0405d33 X-VCS-Branch: master Date: Wed, 10 Sep 2025 15:07:50 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8822f710-5638-4ee1-a35a-43fca4b7756d X-Archives-Hash: 1435a9bd37e95b4a8baacd5a54becea8 commit: 5b4617663648059130d735aae9c2496fa0405d33 Author: Patrick Lauer gentoo org> AuthorDate: Wed Sep 10 15:06:50 2025 +0000 Commit: Patrick Lauer gentoo org> CommitDate: Wed Sep 10 15:07:48 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b461766 sci-libs/hipBLAS: Improve dependencies hipBLAS-common is also useful as runtime dep, noticed while using binpkgs Signed-off-by: Patrick Lauer gentoo.org> sci-libs/hipBLAS/hipBLAS-6.4.3-r1.ebuild | 47 ++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/sci-libs/hipBLAS/hipBLAS-6.4.3-r1.ebuild b/sci-libs/hipBLAS/hipBLAS-6.4.3-r1.ebuild new file mode 100644 index 000000000000..47c25418b33a --- /dev/null +++ b/sci-libs/hipBLAS/hipBLAS-6.4.3-r1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ROCM_VERSION=${PV} + +inherit cmake rocm +DESCRIPTION="ROCm BLAS marshalling library" +HOMEPAGE="https://github.com/ROCm/hipBLAS" +SRC_URI="https://github.com/ROCm/hipBLAS/archive/rocm-${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/hipBLAS-rocm-${PV}" + +REQUIRED_USE="${ROCM_REQUIRED_USE}" + +LICENSE="MIT" +SLOT="0/$(ver_cut 1-2)" +KEYWORDS="~amd64" + +RDEPEND=" + dev-util/hip:${SLOT} + sci-libs/rocBLAS:${SLOT} + sci-libs/rocSOLVER:${SLOT} + sci-libs/hipBLAS-common:${SLOT} +" +DEPEND="${RDEPEND} +" + +PATCHES=( + "${FILESDIR}"/${PN}-6.3.0-no-git.patch +) + +src_configure() { + # Note: hipcc is enforced; clang fails when libc++ is enabled + # with an error similar to https://github.com/boostorg/config/issues/392 + rocm_use_hipcc + + local mycmakeargs=( + # currently hipBLAS is a wrapper of rocBLAS which has tests, so no need to perform test here + -DBUILD_CLIENTS_TESTS=OFF + -DBUILD_CLIENTS_BENCHMARKS=OFF + -DBUILD_FILE_REORG_BACKWARD_COMPATIBILITY=OFF + -DROCM_SYMLINK_LIBS=OFF + ) + + cmake_src_configure +}