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 BEEAC159C96 for ; Tue, 23 Jul 2024 23:56:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D9BC0E2A16; Tue, 23 Jul 2024 23:56:03 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B12DCE2A16 for ; Tue, 23 Jul 2024 23:56:03 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1AD1E335D0F for ; Tue, 23 Jul 2024 23:56:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7EA321DF4 for ; Tue, 23 Jul 2024 23:56:00 +0000 (UTC) From: "Aiden Wingard" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aiden Wingard" Message-ID: <1721778838.eeaa08fbdff0568ea904d199ad99ad3ef779d52c.kernaltrap@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-misc/tinyfetch/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-misc/tinyfetch/Manifest app-misc/tinyfetch/tinyfetch-6.1.ebuild X-VCS-Directories: app-misc/tinyfetch/ X-VCS-Committer: kernaltrap X-VCS-Committer-Name: Aiden Wingard X-VCS-Revision: eeaa08fbdff0568ea904d199ad99ad3ef779d52c X-VCS-Branch: dev Date: Tue, 23 Jul 2024 23:56:00 +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: 7e9b7143-e406-4498-9596-9e40fd953ab9 X-Archives-Hash: 4899b4720fd6e82bcf0f90225a099a6e commit: eeaa08fbdff0568ea904d199ad99ad3ef779d52c Author: kernaltrap gmail com> AuthorDate: Tue Jul 23 23:53:58 2024 +0000 Commit: Aiden Wingard gmail com> CommitDate: Tue Jul 23 23:53:58 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=eeaa08fb app-misc/tinyfetch: bump to 6.1 Signed-off-by: kernaltrap gmail.com> app-misc/tinyfetch/Manifest | 1 + app-misc/tinyfetch/tinyfetch-6.1.ebuild | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/app-misc/tinyfetch/Manifest b/app-misc/tinyfetch/Manifest index 1891ac266..9deb670b7 100644 --- a/app-misc/tinyfetch/Manifest +++ b/app-misc/tinyfetch/Manifest @@ -1 +1,2 @@ DIST tinyfetch-5.2.gh.tar.gz 21077 BLAKE2B 73a9107721edd5c559af229af3e9ff1a2c373efe3195e662f1a482631f6f5250eeaf20fba7143ce423244bc135d7699f7cdc77a2d557e11aaf84183fcaa04664 SHA512 5add99be93ad43319022e85cb1a294ea80d36ac4f075f317c1e030209e5759bb6916a11cd343fb7abb570006f32adc520e6ee43eea41ba43e285418b01a311a1 +DIST tinyfetch-6.1.gh.tar.gz 23543 BLAKE2B 3bcb7f31760819b69e62f69dbc141eecabbb895c7c584a19f5079a169415963e14dd5ec790e22831b7fc3202956b1edbf74dfa19612599ea948362b06d3526e6 SHA512 9c67bf8eacc6451a670b4cf83092b1a1da924e0e05b45cb63c4de8e350efca7c033f5c04b6a2602b91d6a9fa3e49cf3725e99487ae992d0eb3fd6a03d9a687d2 diff --git a/app-misc/tinyfetch/tinyfetch-6.1.ebuild b/app-misc/tinyfetch/tinyfetch-6.1.ebuild new file mode 100644 index 000000000..28f1d7e69 --- /dev/null +++ b/app-misc/tinyfetch/tinyfetch-6.1.ebuild @@ -0,0 +1,23 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson + +DESCRIPTION="fetch program written in pure C" +HOMEPAGE="https://github.com/kernaltrap8/tinyfetch" +SRC_URI="https://github.com/kernaltrap8/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc64" + +IUSE="+pci" + +RDEPEND=" + pci? ( + sys-apps/pciutils + ) +" +DEPEND="${RDEPEND}"