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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4E92615802E for ; Thu, 27 Jun 2024 08:41:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EC662E2B56; Thu, 27 Jun 2024 08:41:33 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CFD6DE2B56 for ; Thu, 27 Jun 2024 08:41:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E94A234301E for ; Thu, 27 Jun 2024 08:41:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC8991D72 for ; Thu, 27 Jun 2024 08:41:29 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1719349493.82468b7cda330a39601058c17fd1a26143096ec5.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-misc/tinyfetch/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-misc/tinyfetch/metadata.xml app-misc/tinyfetch/tinyfetch-9999.ebuild X-VCS-Directories: app-misc/tinyfetch/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 82468b7cda330a39601058c17fd1a26143096ec5 X-VCS-Branch: master Date: Thu, 27 Jun 2024 08:41:29 +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: 629c6958-4284-48fd-b135-b0f38e44e2fa X-Archives-Hash: 7f435dba8b8d2125d04027fca9650783 commit: 82468b7cda330a39601058c17fd1a26143096ec5 Author: kernaltrap8 gmail com> AuthorDate: Tue Jun 25 21:04:53 2024 +0000 Commit: David Roman gmail com> CommitDate: Tue Jun 25 21:04:53 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=82468b7c app-misc/tinyfetch: fix QA issues Signed-off-by: kernaltrap8 gmail.com> app-misc/tinyfetch/metadata.xml | 5 ++++- app-misc/tinyfetch/tinyfetch-9999.ebuild | 14 +++++++------- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/app-misc/tinyfetch/metadata.xml b/app-misc/tinyfetch/metadata.xml index 0e20b7f2e..dbe59c026 100644 --- a/app-misc/tinyfetch/metadata.xml +++ b/app-misc/tinyfetch/metadata.xml @@ -13,5 +13,8 @@ kernaltrap8/tinyfetch - + + + Enables the use of pciutils to detect GPU names + diff --git a/app-misc/tinyfetch/tinyfetch-9999.ebuild b/app-misc/tinyfetch/tinyfetch-9999.ebuild index da81d6caf..6bb3e1b18 100644 --- a/app-misc/tinyfetch/tinyfetch-9999.ebuild +++ b/app-misc/tinyfetch/tinyfetch-9999.ebuild @@ -5,12 +5,18 @@ EAPI=8 inherit meson +DESCRIPTION="fetch program written in pure C" +HOMEPAGE="https://github.com/kernaltrap8/tinyfetch" + if [[ ${PV} == 9999 ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/kernaltrap8/tinyfetch" S="${WORKDIR}/${PN}-9999" fi +LICENSE="GPL-3" +SLOT="0" + IUSE="+pci" RDEPEND=" @@ -20,13 +26,7 @@ RDEPEND=" " DEPEND="${RDEPEND}" -DESCRIPTION="fetch program written in pure C" -HOMEPAGE="https://github.com/kernaltrap8/tinyfetch" - -LICENSE="GPL-3" -SLOT="0" - -src_unpack() { +src_unpack() { if use pci ; then EGIT_BRANCH=pci fi