sys-apps/tuned - 2.27.0-r1 (gentoo)

Search

Install

Install this version:

emerge -a =sys-apps/tuned-2.27.0-r1

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =sys-apps/tuned-2.27.0-r1

Or alternatively:

emerge --autounmask-write -a =sys-apps/tuned-2.27.0-r1

Package Information

Description:
Daemon for monitoring and adaptive tuning of system devices
Homepage:
https://github.com/redhat-performance/tuned
License:
GPL-2

Ebuild Details

Version EAPI Keywords Slot
2.27.0-r1 8 ~amd64 0
View Raw Ebuild
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

PYTHON_COMPAT=( python3_{11..13} )

inherit optfeature python-single-r1 tmpfiles toolchain-funcs xdg

DESCRIPTION="Daemon for monitoring and adaptive tuning of system devices"
HOMEPAGE="https://github.com/redhat-performance/tuned"
SRC_URI="https://github.com/redhat-performance/tuned/archive/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+ppd"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"

RDEPEND="
	${PYTHON_DEPS}
	app-emulation/virt-what
	dev-debug/systemtap
	sys-apps/dbus
	sys-apps/ethtool
	sys-power/powertop
	$(python_gen_cond_dep '
		dev-python/configobj[${PYTHON_USEDEP}]
		dev-python/dbus-python[${PYTHON_USEDEP}]
		dev-python/decorator[${PYTHON_USEDEP}]
		dev-python/pygobject:3[${PYTHON_USEDEP}]
		dev-python/python-linux-procfs[${PYTHON_USEDEP}]
		dev-python/pyudev[${PYTHON_USEDEP}]
	')
	ppd? (
		!sys-power/power-profiles-daemon
		$(python_gen_cond_dep '
			dev-python/pyinotify[${PYTHON_USEDEP}]
		')
	)
"

src_compile() { :; }

src_test() {
	eunittest tests/unit
}

src_install() {
	local sitedir="$(python_get_sitedir)"
	local myemakeargs=(
		DESTDIR="${ED}"
		DOCDIR="/usr/share/doc/${PF}"
		PKG_CONFIG="$(tc-getPKG_CONFIG)"
		PYTHON_SITELIB="${sitedir#${EPREFIX}}"
		rewrite_shebang=true
	)
	emake "${myemakeargs[@]}" install $(usev ppd install-ppd)

	einstalldocs

	# 934664
	dodir /etc/tuned/profiles

	rm -r "${ED}"/run "${ED}"/var || die

	newinitd "${FILESDIR}"/${PN}.initd ${PN}
	python_fix_shebang "${ED}"
	python_optimize
}

pkg_postinst() {
	tmpfiles_process ${PN}.conf
	xdg_pkg_postinst

	optfeature_header
	optfeature "Optimize for power saving by spinning-down rotational disks" sys-apps/hdparm
	optfeature "Get hardware info" sys-apps/dmidecode
	optfeature "Optimize network txqueuelen" sys-apps/iproute2
	# tuned-gui.py calls systemctl
	has_version sys-apps/systemd && optfeature "GTK gui" x11-libs/gtk+:3[introspection]
}

USE Flags

Manage flags for this package: euse -i <flag> -p sys-apps/tuned | euse -E <flag> -p sys-apps/tuned | euse -D <flag> -p sys-apps/tuned

Global/Standard Flags

ppd
Default: Enabled (+)

Inherited Eclasses

xdg

Dependencies

RDEPEND

	
	app-emulation/virt-what
	dev-debug/systemtap
	sys-apps/dbus
	sys-apps/ethtool
	sys-power/powertop
	$(python_gen_cond_dep '
		dev-python/configobj[]
		dev-python/dbus-python[]
		dev-python/decorator[]
		dev-python/pygobject:3[]
		dev-python/python-linux-procfs[]
		dev-python/pyudev[]
	')
	ppd? (
		!sys-power/power-profiles-daemon
		$(python_gen_cond_dep '
			dev-python/pyinotify[]
		')
	)