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 56CC4138239 for ; Mon, 10 May 2021 18:59:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A19A8E07A5; Mon, 10 May 2021 18:59:18 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 84D2CE07A5 for ; Mon, 10 May 2021 18:59: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 6519E340CD2 for ; Mon, 10 May 2021 18:59:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C036A4A0 for ; Mon, 10 May 2021 18:59:15 +0000 (UTC) From: "Piotr Karbowski" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Piotr Karbowski" Message-ID: <1620673146.e95f11c4e55a2ae54b4cc02f171cde851e2388ba.slashbeast@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-power/RyzenAdj/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-power/RyzenAdj/Manifest sys-power/RyzenAdj/RyzenAdj-0.8.1.ebuild sys-power/RyzenAdj/metadata.xml X-VCS-Directories: sys-power/RyzenAdj/ X-VCS-Committer: slashbeast X-VCS-Committer-Name: Piotr Karbowski X-VCS-Revision: e95f11c4e55a2ae54b4cc02f171cde851e2388ba X-VCS-Branch: master Date: Mon, 10 May 2021 18:59:15 +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: d0e1a191-781f-4dbe-8eed-d286389ab2c1 X-Archives-Hash: 8838db2142b26dcbbca5d9a46649b6f0 commit: e95f11c4e55a2ae54b4cc02f171cde851e2388ba Author: Piotr Karbowski gentoo org> AuthorDate: Mon May 10 18:58:36 2021 +0000 Commit: Piotr Karbowski gentoo org> CommitDate: Mon May 10 18:59:06 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e95f11c4 sys-power/RyzenAdj: New package Signed-off-by: Piotr Karbowski gentoo.org> sys-power/RyzenAdj/Manifest | 1 + sys-power/RyzenAdj/RyzenAdj-0.8.1.ebuild | 33 ++++++++++++++++++++++++++++++++ sys-power/RyzenAdj/metadata.xml | 11 +++++++++++ 3 files changed, 45 insertions(+) diff --git a/sys-power/RyzenAdj/Manifest b/sys-power/RyzenAdj/Manifest new file mode 100644 index 00000000000..02ce8e047cd --- /dev/null +++ b/sys-power/RyzenAdj/Manifest @@ -0,0 +1 @@ +DIST RyzenAdj-0.8.1.tar.gz 121560 BLAKE2B e7e2dee6bbb14564a641fff430bf3a043c94a6a95a743e7026f5dda8c2f22fb1c7a0fe129e00c5dd2a21ca7c2accff6dba71b095a6c3390282be7b5dc0082235 SHA512 77ec6095036be526308b778290c39af9855f1de500eafef184e2cf747482e4ffb74a1220a15eddbd556c6459c083a160295c927c31ce6e0cbc654aa62062202b diff --git a/sys-power/RyzenAdj/RyzenAdj-0.8.1.ebuild b/sys-power/RyzenAdj/RyzenAdj-0.8.1.ebuild new file mode 100644 index 00000000000..9bdcb5989b9 --- /dev/null +++ b/sys-power/RyzenAdj/RyzenAdj-0.8.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="The power management tool for mobile and desktop Ryzen APUs" +HOMEPAGE="https://github.com/FlyGoat/RyzenAdj" +SRC_URI="https://github.com/FlyGoat/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="sys-apps/pciutils" +RDEPEND="${DEPEND}" +BDEPEND="" + +src_configure() { + CMAKE_BUILD_TYPE="Release" + cmake_src_configure +} + +src_install() { + dosbin "${BUILD_DIR}"/ryzenadj + + dodir "/usr/$(get_libdir)" + insinto "/usr/$(get_libdir)" + doins "${BUILD_DIR}"/libryzenadj.so + + dodoc "${S}"/README.md +} diff --git a/sys-power/RyzenAdj/metadata.xml b/sys-power/RyzenAdj/metadata.xml new file mode 100644 index 00000000000..65aa12f9044 --- /dev/null +++ b/sys-power/RyzenAdj/metadata.xml @@ -0,0 +1,11 @@ + + + + + slashbeast@gentoo.org + Piotr Karbowski + + + FlyGoat/RyzenAdj + +