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 C4564158086 for ; Sun, 2 Jan 2022 10:56:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2B9F82BC00C; Sun, 2 Jan 2022 10:56:19 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 20A642BC052 for ; Sun, 2 Jan 2022 10:56:18 +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 81148342FCE for ; Sun, 2 Jan 2022 10:56:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1064F278 for ; Sun, 2 Jan 2022 10:56:15 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1641120945.54e6240f94f2baecefaeaf4158650d8b27a2b7e9.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/tela-icon-theme/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-themes/tela-icon-theme/tela-icon-theme-20211225.ebuild x11-themes/tela-icon-theme/tela-icon-theme-99999999.ebuild X-VCS-Directories: x11-themes/tela-icon-theme/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 54e6240f94f2baecefaeaf4158650d8b27a2b7e9 X-VCS-Branch: master Date: Sun, 2 Jan 2022 10:56: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: c149b6dc-d092-403a-ba82-63c7f8b5b08b X-Archives-Hash: 1854665730264432fdd0b9e9c97539fd commit: 54e6240f94f2baecefaeaf4158650d8b27a2b7e9 Author: Georgy Yakovlev gentoo org> AuthorDate: Sun Jan 2 09:55:36 2022 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Sun Jan 2 10:55:45 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54e6240f x11-themes/tela-icon-theme: compact bash syntax a bit Signed-off-by: Georgy Yakovlev gentoo.org> x11-themes/tela-icon-theme/tela-icon-theme-20211225.ebuild | 13 ++++++------- x11-themes/tela-icon-theme/tela-icon-theme-99999999.ebuild | 13 ++++++------- 2 files changed, 12 insertions(+), 14 deletions(-) diff --git a/x11-themes/tela-icon-theme/tela-icon-theme-20211225.ebuild b/x11-themes/tela-icon-theme/tela-icon-theme-20211225.ebuild index 09de04dd50cd..a4310154d7d6 100644 --- a/x11-themes/tela-icon-theme/tela-icon-theme-20211225.ebuild +++ b/x11-themes/tela-icon-theme/tela-icon-theme-20211225.ebuild @@ -26,11 +26,12 @@ fi LICENSE="GPL-3+" SLOT="0" -IUSE="${MY_COLOR_VARIANTS[*]/standard/+standard}" +IUSE="+${MY_COLOR_VARIANTS[*]}" # this is why standard comes first REQUIRED_USE="|| ( ${MY_COLOR_VARIANTS[*]} )" -RESTRICT="binchecks strip test" # not needed +# not needed +RESTRICT="binchecks strip test" BDEPEND="app-shells/bash" @@ -42,11 +43,9 @@ src_prepare() { src_install() { local v variants=( - $( - for v in ${MY_COLOR_VARIANTS[@]}; do - usev ${v} - done - ) + $(for v in ${MY_COLOR_VARIANTS[@]}; do + usev ${v} + done) ) dodir /usr/share/icons diff --git a/x11-themes/tela-icon-theme/tela-icon-theme-99999999.ebuild b/x11-themes/tela-icon-theme/tela-icon-theme-99999999.ebuild index 09de04dd50cd..a4310154d7d6 100644 --- a/x11-themes/tela-icon-theme/tela-icon-theme-99999999.ebuild +++ b/x11-themes/tela-icon-theme/tela-icon-theme-99999999.ebuild @@ -26,11 +26,12 @@ fi LICENSE="GPL-3+" SLOT="0" -IUSE="${MY_COLOR_VARIANTS[*]/standard/+standard}" +IUSE="+${MY_COLOR_VARIANTS[*]}" # this is why standard comes first REQUIRED_USE="|| ( ${MY_COLOR_VARIANTS[*]} )" -RESTRICT="binchecks strip test" # not needed +# not needed +RESTRICT="binchecks strip test" BDEPEND="app-shells/bash" @@ -42,11 +43,9 @@ src_prepare() { src_install() { local v variants=( - $( - for v in ${MY_COLOR_VARIANTS[@]}; do - usev ${v} - done - ) + $(for v in ${MY_COLOR_VARIANTS[@]}; do + usev ${v} + done) ) dodir /usr/share/icons