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 E31A915800C for ; Wed, 28 Dec 2022 14:39:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C3D21E07F9; Wed, 28 Dec 2022 14:39:33 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A7C65E07F9 for ; Wed, 28 Dec 2022 14:39: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 AE0B5340FBD for ; Wed, 28 Dec 2022 14:39:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 424B177C for ; Wed, 28 Dec 2022 14:39:31 +0000 (UTC) From: "Viorel Munteanu" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Viorel Munteanu" Message-ID: <1672238341.25e631488a35fc772829ae606f93808cf4fbfda5.ceamac@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-misc/fastfetch/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-misc/fastfetch/fastfetch-1.7.5.ebuild app-misc/fastfetch/fastfetch-9999.ebuild app-misc/fastfetch/fastfetch-9999d.ebuild X-VCS-Directories: app-misc/fastfetch/ X-VCS-Committer: ceamac X-VCS-Committer-Name: Viorel Munteanu X-VCS-Revision: 25e631488a35fc772829ae606f93808cf4fbfda5 X-VCS-Branch: dev Date: Wed, 28 Dec 2022 14:39:31 +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: 2c4aac78-ead5-49da-810f-1f2e7e830c25 X-Archives-Hash: 9e8894f04375c6ef0e9bd0fa65ca59b5 commit: 25e631488a35fc772829ae606f93808cf4fbfda5 Author: Viorel Munteanu gentoo org> AuthorDate: Wed Dec 28 14:36:42 2022 +0000 Commit: Viorel Munteanu gentoo org> CommitDate: Wed Dec 28 14:39:01 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=25e63148 app-misc/fastfetch: add live ebuild for dev branch Call it -9999d. Also sync the others Signed-off-by: Viorel Munteanu gentoo.org> app-misc/fastfetch/fastfetch-1.7.5.ebuild | 7 +++++-- app-misc/fastfetch/fastfetch-9999.ebuild | 6 +++++- .../fastfetch/{fastfetch-1.7.5.ebuild => fastfetch-9999d.ebuild} | 7 +++++-- 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/app-misc/fastfetch/fastfetch-1.7.5.ebuild b/app-misc/fastfetch/fastfetch-1.7.5.ebuild index 8fa754c75..c9038f015 100644 --- a/app-misc/fastfetch/fastfetch-1.7.5.ebuild +++ b/app-misc/fastfetch/fastfetch-1.7.5.ebuild @@ -7,16 +7,19 @@ inherit cmake DESCRIPTION="Fast system information tool" HOMEPAGE="https://github.com/LinusDierheimer/fastfetch" -if [[ ${PV} == *9999 ]]; then +if [[ ${PV} == *9999* ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/LinusDierheimer/fastfetch.git" + [[ ${PV} == *9999 ]] && EGIT_BRANCH=master + [[ ${PV} == *d ]] && EGIT_BRANCH=dev + [[ "${EGIT_BRANCH}" == "" ]] && die "Please set a git branch" else SRC_URI="https://github.com/LinusDierheimer/fastfetch/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" fi LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64" IUSE="X chafa dbus gnome imagemagick opencl opengl osmesa pci sqlite vulkan wayland xcb xfce xrandr" # note - qa-vdb will always report errors because fastfetch loads the libs dynamically diff --git a/app-misc/fastfetch/fastfetch-9999.ebuild b/app-misc/fastfetch/fastfetch-9999.ebuild index b2b17703e..c9038f015 100644 --- a/app-misc/fastfetch/fastfetch-9999.ebuild +++ b/app-misc/fastfetch/fastfetch-9999.ebuild @@ -7,11 +7,15 @@ inherit cmake DESCRIPTION="Fast system information tool" HOMEPAGE="https://github.com/LinusDierheimer/fastfetch" -if [[ ${PV} == *9999 ]]; then +if [[ ${PV} == *9999* ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/LinusDierheimer/fastfetch.git" + [[ ${PV} == *9999 ]] && EGIT_BRANCH=master + [[ ${PV} == *d ]] && EGIT_BRANCH=dev + [[ "${EGIT_BRANCH}" == "" ]] && die "Please set a git branch" else SRC_URI="https://github.com/LinusDierheimer/fastfetch/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" fi LICENSE="MIT" diff --git a/app-misc/fastfetch/fastfetch-1.7.5.ebuild b/app-misc/fastfetch/fastfetch-9999d.ebuild similarity index 92% copy from app-misc/fastfetch/fastfetch-1.7.5.ebuild copy to app-misc/fastfetch/fastfetch-9999d.ebuild index 8fa754c75..c9038f015 100644 --- a/app-misc/fastfetch/fastfetch-1.7.5.ebuild +++ b/app-misc/fastfetch/fastfetch-9999d.ebuild @@ -7,16 +7,19 @@ inherit cmake DESCRIPTION="Fast system information tool" HOMEPAGE="https://github.com/LinusDierheimer/fastfetch" -if [[ ${PV} == *9999 ]]; then +if [[ ${PV} == *9999* ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/LinusDierheimer/fastfetch.git" + [[ ${PV} == *9999 ]] && EGIT_BRANCH=master + [[ ${PV} == *d ]] && EGIT_BRANCH=dev + [[ "${EGIT_BRANCH}" == "" ]] && die "Please set a git branch" else SRC_URI="https://github.com/LinusDierheimer/fastfetch/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" fi LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64" IUSE="X chafa dbus gnome imagemagick opencl opengl osmesa pci sqlite vulkan wayland xcb xfce xrandr" # note - qa-vdb will always report errors because fastfetch loads the libs dynamically