mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-15 01:53:25 -04:00
sys-power/linux-tools-power-x86: drop 5.18
Signed-off-by: Joe Kappus <joe@wt.gd>
This commit is contained in:
@@ -1,2 +1 @@
|
||||
DIST linux-5.18.tar.xz 129790264 BLAKE2B e2745a69eb70169e90505a9318a3993046eab3020496eecde7d8352ecda0eb71a25b21becf7ce93fc593507dce7d1cd61b94ddcdf82b3094d79c0d3d48508eeb SHA512 dbbc9d1395898a498fa4947fceda1781344fa5d360240f753810daa4fa88e519833e2186c4e582a8f1836e6413e9e85f6563c7770523b704e8702d67622f98b5
|
||||
DIST linux-6.1.tar.xz 134728520 BLAKE2B ae60257860b2bd1bd708d183f0443afc60ebbd2b3d535c45e44c2e541bd0928530a3b62de6385dd4e4726ebbedcc0a871d4f3ffb4105b9f1f6d8ed7467f5688e SHA512 6ed2a73c2699d0810e54753715635736fc370288ad5ce95c594f2379959b0e418665cd71bc512a0273fe226fe90074d8b10d14c209080a6466498417a4fdda68
|
||||
|
||||
@@ -1,92 +0,0 @@
|
||||
# Copyright 2013-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{10..11} )
|
||||
|
||||
inherit fcaps linux-info python-r1 toolchain-funcs
|
||||
|
||||
DESCRIPTION="Linux x86 CPU power tools"
|
||||
HOMEPAGE="https://www.kernel.org/"
|
||||
SRC_URI="https://cdn.kernel.org/pub/linux/kernel/v${PV%%.*}.x/linux-${PV}.tar.xz"
|
||||
S="${WORKDIR}/linux-${PV}"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0/0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="pstate-tracer"
|
||||
|
||||
CDEPEND="dev-libs/libnl:3"
|
||||
RDEPEND="
|
||||
pstate-tracer? (
|
||||
${PYTHON_DEPS}
|
||||
dev-python/gnuplot-py[${PYTHON_USEDEP}]
|
||||
dev-python/numpy[${PYTHON_USEDEP}]
|
||||
sci-visualization/gnuplot
|
||||
)
|
||||
"
|
||||
DEPEND="
|
||||
${CDEPEND}
|
||||
virtual/os-headers
|
||||
"
|
||||
|
||||
REQUIRED_USE="pstate-tracer? ( ${PYTHON_REQUIRED_USE} )"
|
||||
|
||||
PATCHES=( "${FILESDIR}/${P}-cflags.patch" )
|
||||
FILECAPS=( 'cap_sys_rawio=ep' usr/bin/turbostat )
|
||||
|
||||
pkg_setup() {
|
||||
linux-info_pkg_setup
|
||||
if linux_config_exists; then
|
||||
CONFIG_CHECK_MODULES="CONFIG_X86_MSR" || ewarn "msr module is needed at runtime"
|
||||
fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
export bindir="${EPREFIX}/usr/bin"
|
||||
export sbindir="${EPREFIX}/usr/sbin"
|
||||
export mandir="${EPREFIX}/usr/share/man"
|
||||
export includedir="${EPREFIX}/usr/include"
|
||||
export libdir="${EPREFIX}/usr/$(get_libdir)"
|
||||
export localedir="${EPREFIX}/usr/share/locale"
|
||||
export docdir="${EPREFIX}/usr/share/doc/${PF}"
|
||||
export confdir="${EPREFIX}/etc"
|
||||
export bash_completion_dir="${EPREFIX}/usr/share/bash-completion/completions"
|
||||
export V=1
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
myemakeargs=(
|
||||
AR="$(tc-getAR)"
|
||||
CC="$(tc-getCC)"
|
||||
LD="$(tc-getCC)"
|
||||
VERSION=${PV}
|
||||
)
|
||||
emake -C tools/power/x86/intel-speed-select "${myemakeargs[@]}"
|
||||
emake -C tools/power/x86/turbostat "${myemakeargs[@]}"
|
||||
emake -C tools/power/x86/x86_energy_perf_policy "${myemakeargs[@]}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
pushd "${S}/tools/power/x86/intel-speed-select" || die
|
||||
emake "${myemakeargs[@]}" DESTDIR="${D}" install
|
||||
popd || die
|
||||
pushd "${S}/tools/power/x86/turbostat" || die
|
||||
emake "${myemakeargs[@]}" DESTDIR="${D}" install
|
||||
popd || die
|
||||
pushd "${S}/tools/power/x86/x86_energy_perf_policy" || die
|
||||
emake "${myemakeargs[@]}" DESTDIR="${D}" install
|
||||
popd || die
|
||||
|
||||
if use pstate-tracer; then
|
||||
python_foreach_impl python_doscript tools/power/x86/intel_pstate_tracer/intel_pstate_tracer.py
|
||||
python_foreach_impl python_doscript tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
|
||||
fi
|
||||
|
||||
einstalldocs
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
fcaps_pkg_postinst
|
||||
}
|
||||
Reference in New Issue
Block a user