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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 581811382C5 for ; Sat, 27 Mar 2021 16:43:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A3EE7E081E; Sat, 27 Mar 2021 16:43:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8A337E081E for ; Sat, 27 Mar 2021 16:43:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 31AC634017A for ; Sat, 27 Mar 2021 16:43:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CBFB4592 for ; Sat, 27 Mar 2021 16:43:17 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1616863385.45d18c5b17003caa77878b44c1cc6088d47cf8a6.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/windowmaker-themes/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-themes/windowmaker-themes/windowmaker-themes-0.1-r1.ebuild X-VCS-Directories: x11-themes/windowmaker-themes/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 45d18c5b17003caa77878b44c1cc6088d47cf8a6 X-VCS-Branch: master Date: Sat, 27 Mar 2021 16:43:17 +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: 0da2f37a-b551-48bb-bb4c-ab42304885a0 X-Archives-Hash: 39d0a8f1a45d5d605e90a4d59f0a6d62 commit: 45d18c5b17003caa77878b44c1cc6088d47cf8a6 Author: Bernard Cafarelli gentoo org> AuthorDate: Sat Mar 27 16:42:52 2021 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Sat Mar 27 16:43:05 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45d18c5b x11-themes/windowmaker-themes: fix USE=offensive Update list of themes filtered out by this flag Closes: https://bugs.gentoo.org/778287 Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Bernard Cafarelli gentoo.org> .../windowmaker-themes/windowmaker-themes-0.1-r1.ebuild | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/x11-themes/windowmaker-themes/windowmaker-themes-0.1-r1.ebuild b/x11-themes/windowmaker-themes/windowmaker-themes-0.1-r1.ebuild index 985047da31a..974c392ea86 100644 --- a/x11-themes/windowmaker-themes/windowmaker-themes-0.1-r1.ebuild +++ b/x11-themes/windowmaker-themes/windowmaker-themes-0.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -21,10 +21,19 @@ RDEPEND="x11-wm/windowmaker" BDEPEND="" src_prepare() { - MY_OFFENSIVE="3white Anguish" + MY_OFFENSIVE=( + 3White + Anguish + Crave + "Darwins iMac" + "Digital Girls" + "Imacgirl Grape" + "Red Slip" + WMSecksy + ) if ! use offensive ; then - for j in ${MY_OFFENSIVE} ; do - rm -rf ${MY_OFFENSIVE}.themed + for j in "${MY_OFFENSIVE[@]}" ; do + rm -rf "${j}".themed done fi