Files
guru/sys-power/amdfan/amdfan-0.2.1-r2.ebuild
Philippe-Alexandre Mathieu 6fa58a9ddd sys-power/amdfan: remove py3.10 and add py3.13
Closes: https://bugs.gentoo.org/936809
Signed-off-by: Philippe-Alexandre Mathieu <pamathieu@poum.ca>
2024-07-28 14:16:43 -04:00

59 lines
1.1 KiB
Bash

# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=poetry
PYTHON_COMPAT=( python3_{11..13} )
inherit distutils-r1 systemd autotools
DESCRIPTION="Updated AMD Fan control utility forked from amdgpu-fan and updated. "
HOMEPAGE="https://mcgillij.dev/pages/amdfan.html"
SRC_URI="https://github.com/mcgillij/amdfan/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
${PYTHON_DEPS}
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/click[${PYTHON_USEDEP}]
dev-python/rich[${PYTHON_USEDEP}]
"
DEPEND="${PYTHON_DEPS}"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
DOCS=( README.md )
distutils_enable_tests unittest
src_prepare() {
default
sed -i '/^include = \["dist\/systemd\/amdfan.service"\]$/d' pyproject.toml || die
eautoreconf
}
src_configure() {
econf
}
python_install_all() {
distutils-r1_python_install_all
}
src_install() {
default
newinitd dist/openrc/amdfan amdfan
systemd_dounit dist/systemd/amdfan.service
}
python_test() {
"${EPYTHON}" -m unittest discover tests || die
}