Install this version:
emerge -a =dev-util/rocm-smi-10.0.0
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-util/rocm-smi-10.0.0
Or alternatively:
emerge --autounmask-write -a =dev-util/rocm-smi-10.0.0
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 10.0.0 | 8 | ~amd64 | 0/$(ver_cut 1-2) |
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{12..14} )
inherit cmake linux-info optfeature python-r1
ROCM_SYSTEMS_COMMIT=6b0e43f341195e203754e08f850e437ff2fc09f9
DESCRIPTION="ROCm System Management Interface Library"
HOMEPAGE="https://github.com/ROCm/rocm-systems/tree/develop/projects/rocm-smi-lib"
SRC_URI="https://github.com/ROCm/rocm-systems/archive/${ROCM_SYSTEMS_COMMIT}.tar.gz -> rocm-systems-${ROCM_SYSTEMS_COMMIT}.tar.gz"
S="${WORKDIR}/rocm-systems-${ROCM_SYSTEMS_COMMIT}/projects/rocm-smi-lib"
LICENSE="MIT"
SLOT="0/$(ver_cut 1-2)"
KEYWORDS="~amd64"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}"
DEPEND="${RDEPEND}
sys-kernel/linux-headers
x11-libs/libdrm[video_cards_amdgpu]
"
CONFIG_CHECK="~HSA_AMD ~DRM_AMDGPU"
src_prepare() {
cmake_src_prepare
# Disable code that relies on missing .git directory.
# Just silences potential "git: command not found" QA warnings.
sed -e "/find_program *(GIT NAMES git)/d" -i CMakeLists.txt || die
sed -e "/num_change_since_prev_pkg(\${VERSION_PREFIX})/d" -i cmake_modules/utils.cmake || die
local rocm_lib="${EPREFIX}/usr/$(get_libdir)/librocm_smi64.so.@VERSION_MAJOR@"
sed -E "s|path_librocm =.+__file__.+|path_librocm = '${rocm_lib}'|" \
-i python_smi_tools/rsmiBindingsInit.py.in || die
}
src_configure() {
local mycmakeargs=(
-DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr"
)
cmake_src_configure
}
src_install() {
cmake_src_install
python_foreach_impl python_newscript python_smi_tools/rocm_smi.py rocm-smi
python_foreach_impl python_domodule python_smi_tools/rsmiBindings.py
python_foreach_impl python_domodule python_smi_tools/rsmiBindingsInit.py
mv "${ED}"/usr/share/doc/rocm-smi-lib/* "${ED}/usr/share/doc/${PF}" || die
rm -r "${ED}"/usr/share/doc/rocm-smi-lib || die
}
pkg_postinst() {
optfeature "vendor and device names instead of hex device IDs" sys-apps/hwdata
}
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | rocm-systems-6b0e43f341195e203754e08f850e437ff2fc09f9.tar.gz | 211666901 bytes | https://github.com/ROCm/rocm-systems/archive/6b0e43f341195e203754e08f850e437ff2fc09f9.tar.gz |