diff options
author | Mazunki Hoksaas <rolferen@gmail.com> | 2024-08-01 04:39:51 +0200 |
---|---|---|
committer | Mazunki Hoksaas <rolferen@gmail.com> | 2024-08-01 04:39:54 +0200 |
commit | ca9f5f2568b26d86f0417634b8b313cbd1c6d454 (patch) | |
tree | 7c8a95df2365a72e682bf5fd2eca9883a790dc79 /sys-power | |
parent | media-gfx/mayo: Add explanation rational to patch. (diff) | |
download | guru-ca9f5f2568b26d86f0417634b8b313cbd1c6d454.tar.gz guru-ca9f5f2568b26d86f0417634b8b313cbd1c6d454.tar.bz2 guru-ca9f5f2568b26d86f0417634b8b313cbd1c6d454.zip |
sys-power/amdfan: drop 0.2.1-r2
this version was broken from the get-go. it didn't merge any binaries,
and the openrc service file included was incompatible with this package
version. it was pushed early accidentally
Signed-off-by: Mazunki Hoksaas <rolferen@gmail.com>
Diffstat (limited to 'sys-power')
-rw-r--r-- | sys-power/amdfan/Manifest | 1 | ||||
-rw-r--r-- | sys-power/amdfan/amdfan-0.2.1-r2.ebuild | 58 |
2 files changed, 0 insertions, 59 deletions
diff --git a/sys-power/amdfan/Manifest b/sys-power/amdfan/Manifest index 9b7d21f1c..dae0c403f 100644 --- a/sys-power/amdfan/Manifest +++ b/sys-power/amdfan/Manifest @@ -1,2 +1 @@ DIST amdfan-0.1.28.tar.gz 81901 BLAKE2B 84e461a2f230e560c80badd99ec658774e5b46785a78387d6906d8ebe8a855f1e421a33872246af2a96ff06790615ad47a7d3d248e97a615c78a4ff9de8f641e SHA512 214b4940e747a8c8c0083d1cd90e78a3080e6b6b56031fff42f6bdca867e47ba81defb490e7704786f6e2a2c9634d990d53cbcfbc24c2c43d4ec9691023c06d8 -DIST amdfan-0.2.1.tar.gz 83709 BLAKE2B 962598cac033e176314202ef66d2a0a1bc7f1bc6897a3d792a33dc08998c690efe5634d40fed55f5c1b959ca12782215d8521ef6721186350098ef529f093e9f SHA512 afff7abd657e44ef5ba328af10683dda90e398853427c04773634b487f83d14ab5d60cbe32c3926277c5b5b9b8fa3331c86ebdc6d7ab57ddf56b88c150e5d03c diff --git a/sys-power/amdfan/amdfan-0.2.1-r2.ebuild b/sys-power/amdfan/amdfan-0.2.1-r2.ebuild deleted file mode 100644 index 7b5c0dd97..000000000 --- a/sys-power/amdfan/amdfan-0.2.1-r2.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# 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 -} |