dev-libs/rocm-core: add 7.1.0

Signed-off-by: Patrick Lauer <patrick@gentoo.org>
This commit is contained in:
Patrick Lauer 2025-11-09 06:12:50 +00:00
parent 8ebac253cf
commit afcec2ec2a
No known key found for this signature in database
GPG Key ID: A6B98739114414D6
2 changed files with 29 additions and 0 deletions

View File

@ -1 +1,2 @@
DIST rocm-core-7.0.2.tar.gz 20551 BLAKE2B 453c5a11790d24200b8165e0d18246ea006a580f84beb51f6cd6f76ed9b880711f413011e62daec8de3c4d6cad54f53407cb082673017d645149a850ea2181bc SHA512 9dd7c6965bd13ebc92e3d16b7bd680e50de163afb532a4eb962668799650a89f2a7dcbe18935d858664fcfdbcb12373af1ff5e8ac4778ee8b7b4692d1a253c3e
DIST rocm-core-7.1.0.tar.gz 39718 BLAKE2B 41558fbeec932459d1652a1403b998050074eaa420f31fe6e7d4ff895eddc2c40f9a0abdb5f0543164d828cd666e41492572a041606eeddc00ebfd8452a8e025 SHA512 20d755c61f46af2b1255ab48f053fb92331527a527c5455febb9c4b4cfd239ada9bb4dd6f607ec6f475e29ba40490ddbf9b8d31382460f8cc2963101e5273300

View File

@ -0,0 +1,28 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Library that provides ROCm release version and install path information"
HOMEPAGE="https://github.com/ROCm/rocm-systems/tree/develop/projects/rocm-core"
SRC_URI="https://github.com/ROCm/rocm-core/archive/refs/tags/rocm-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/rocm-core-rocm-${PV}"
LICENSE="MIT"
SLOT="0/$(ver_cut 1-2)"
KEYWORDS="~amd64"
src_configure() {
local mycmakeargs=( -DROCM_VERSION=${PV} )
cmake_src_configure
}
src_install() {
cmake_src_install
# too broad for standard directory
rm "${ED}"/usr/.info/version || die
}
RDEPEND="!<dev-util/hip-7.0"