From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id ABC0A1382C5 for ; Sun, 2 May 2021 08:07:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C22AEE086A; Sun, 2 May 2021 08:07:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AB427E086A for ; Sun, 2 May 2021 08:07:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AC28E340C30 for ; Sun, 2 May 2021 08:07:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4B01166A for ; Sun, 2 May 2021 08:07:16 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1619942829.e4c9b9c48ae44a097da42eada8991e24b3f87a48.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-power/amdgpu-fan/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-power/amdgpu-fan/Manifest sys-power/amdgpu-fan/amdgpu-fan-0.1.0.ebuild sys-power/amdgpu-fan/metadata.xml X-VCS-Directories: sys-power/amdgpu-fan/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: e4c9b9c48ae44a097da42eada8991e24b3f87a48 X-VCS-Branch: dev Date: Sun, 2 May 2021 08:07:16 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0aa4acfa-bca0-41dd-9341-0f497ee0ca3d X-Archives-Hash: 8f2160e3edba1089c032271a4621ee3b commit: e4c9b9c48ae44a097da42eada8991e24b3f87a48 Author: Alessandro Barbieri gmail com> AuthorDate: Sun May 2 08:06:46 2021 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Sun May 2 08:07:09 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e4c9b9c4 sys-power/amdgpu-fan: new package Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Alessandro Barbieri gmail.com> sys-power/amdgpu-fan/Manifest | 1 + sys-power/amdgpu-fan/amdgpu-fan-0.1.0.ebuild | 28 ++++++++++++++++++++++++++++ sys-power/amdgpu-fan/metadata.xml | 8 ++++++++ 3 files changed, 37 insertions(+) diff --git a/sys-power/amdgpu-fan/Manifest b/sys-power/amdgpu-fan/Manifest new file mode 100644 index 000000000..ddc91761e --- /dev/null +++ b/sys-power/amdgpu-fan/Manifest @@ -0,0 +1 @@ +DIST amdgpu-fan-0.1.0.tar.gz 12469 BLAKE2B 955ed51e5b1d6054542cfe9a3057c4cedcb95a73782472a2e2c9fa731e525259e38ba7d8186c2a166ba85ecf0b3c1f7d7288112670ff3587040c92bbc2a17ad1 SHA512 b21d8e413d44a263fdbef37fff11a496fe5e46a1f4d1e7ade161dde36750cf0dc02dfd2ccaebc455dac5aa023150101a65a255a38e6d9b70a6bba39da8f26378 diff --git a/sys-power/amdgpu-fan/amdgpu-fan-0.1.0.ebuild b/sys-power/amdgpu-fan/amdgpu-fan-0.1.0.ebuild new file mode 100644 index 000000000..157d1f880 --- /dev/null +++ b/sys-power/amdgpu-fan/amdgpu-fan-0.1.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{7,8,9} ) + +inherit distutils-r1 systemd + +DESCRIPTION="Fan controller for AMD graphics cards running the amdgpu driver on Linux" +HOMEPAGE="https://github.com/zzkW35/amdgpu-fan" +SRC_URI="https://github.com/zzkW35/amdgpu-fan/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}] +" +DEPEND="${PYTHON_DEPS}" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" +DOCS=( README.md ) + +python_install_all() { + distutils-r1_python_install_all + systemd_dounit amdgpu-fan.service +} diff --git a/sys-power/amdgpu-fan/metadata.xml b/sys-power/amdgpu-fan/metadata.xml new file mode 100644 index 000000000..b119d860d --- /dev/null +++ b/sys-power/amdgpu-fan/metadata.xml @@ -0,0 +1,8 @@ + + + + + https://github.com/zzkW35/amdgpu-fan/issues + zzkW35/amdgpu-fan + +