From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1617835-garchives=archives.gentoo.org@lists.gentoo.org> 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 D2771158041 for <garchives@archives.gentoo.org>; Fri, 5 Apr 2024 18:48:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 15586E29E3; Fri, 5 Apr 2024 18:48:26 +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 E546DE29E3 for <gentoo-commits@lists.gentoo.org>; Fri, 5 Apr 2024 18:48:25 +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 C3D423432D6 for <gentoo-commits@lists.gentoo.org>; Fri, 5 Apr 2024 18:48:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0FBF415B1 for <gentoo-commits@lists.gentoo.org>; Fri, 5 Apr 2024 18:48:23 +0000 (UTC) From: "Julien Roy" <julien@jroy.ca> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julien Roy" <julien@jroy.ca> Message-ID: <1712338789.3dfca8dcb13ea5f02cfbef4ee2dfe59fafd7f0de.julien@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: x11-themes/catppuccin-btop/ X-VCS-Repository: repo/proj/guru X-VCS-Files: x11-themes/catppuccin-btop/catppuccin-btop-1.0.0.ebuild X-VCS-Directories: x11-themes/catppuccin-btop/ X-VCS-Committer: julien X-VCS-Committer-Name: Julien Roy X-VCS-Revision: 3dfca8dcb13ea5f02cfbef4ee2dfe59fafd7f0de X-VCS-Branch: master Date: Fri, 5 Apr 2024 18:48:23 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e37531b0-6c1c-482e-9961-c6b1c2a93575 X-Archives-Hash: 113cff0d4915dbb425ee4f4de4420b85 commit: 3dfca8dcb13ea5f02cfbef4ee2dfe59fafd7f0de Author: Denis Strizhkin <strdenis02 <AT> gmail <DOT> com> AuthorDate: Fri Apr 5 17:39:13 2024 +0000 Commit: Julien Roy <julien <AT> jroy <DOT> ca> CommitDate: Fri Apr 5 17:39:49 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3dfca8dc x11-themes/catppuccin-btop: change DEPEND to RDEPEND & simplify install Signed-off-by: Denis Strizhkin <strdenis02 <AT> gmail.com> x11-themes/catppuccin-btop/catppuccin-btop-1.0.0.ebuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/x11-themes/catppuccin-btop/catppuccin-btop-1.0.0.ebuild b/x11-themes/catppuccin-btop/catppuccin-btop-1.0.0.ebuild index 800fb024b0..558385c1d7 100644 --- a/x11-themes/catppuccin-btop/catppuccin-btop-1.0.0.ebuild +++ b/x11-themes/catppuccin-btop/catppuccin-btop-1.0.0.ebuild @@ -8,7 +8,7 @@ SRC_URI=" " S="${WORKDIR}/themes" -DEPEND=" +RDEPEND=" sys-process/btop " @@ -18,9 +18,5 @@ KEYWORDS="~amd64" src_install() { insinto "/usr/share/btop/themes" - for f in "${S}"/*.theme; do - if [ -f "$f" ]; then - doins "$f" - fi - done + doins *.theme }