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 41E5F1382C5 for ; Fri, 11 Jun 2021 06:57:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D488E0882; Fri, 11 Jun 2021 06:57:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 1F76EE0882 for ; Fri, 11 Jun 2021 06:57:02 +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 94F3233D3C1 for ; Fri, 11 Jun 2021 06:57:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0CDA67A7 for ; Fri, 11 Jun 2021 06:56:59 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1623394611.3a9c84aa9622b84d10fe4b9b947fbeba6ea64bba.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/tmux-xpanes/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/tmux-xpanes/tmux-xpanes-4.1.3.ebuild X-VCS-Directories: app-misc/tmux-xpanes/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3a9c84aa9622b84d10fe4b9b947fbeba6ea64bba X-VCS-Branch: master Date: Fri, 11 Jun 2021 06:56:59 +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: c6330ba2-5e8e-4777-8cad-8f3363aabcc7 X-Archives-Hash: 1b73f1909bbf7a9aa2d047014e7e0b21 commit: 3a9c84aa9622b84d10fe4b9b947fbeba6ea64bba Author: Sam James gentoo org> AuthorDate: Fri Jun 11 06:55:36 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jun 11 06:56:51 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a9c84aa app-misc/tmux-xpanes: drop IUSE=zsh-completion Signed-off-by: Sam James gentoo.org> app-misc/tmux-xpanes/tmux-xpanes-4.1.3.ebuild | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/app-misc/tmux-xpanes/tmux-xpanes-4.1.3.ebuild b/app-misc/tmux-xpanes/tmux-xpanes-4.1.3.ebuild index 2b3315319df..1f0e2733e1d 100644 --- a/app-misc/tmux-xpanes/tmux-xpanes-4.1.3.ebuild +++ b/app-misc/tmux-xpanes/tmux-xpanes-4.1.3.ebuild @@ -7,18 +7,15 @@ DESCRIPTION="tmux-based terminal divider" HOMEPAGE="https://github.com/greymd/tmux-xpanes" SRC_URI="https://github.com/greymd/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" -KEYWORDS="~amd64 ~x86" LICENSE="MIT" SLOT="0" - -IUSE="zsh-completion" +KEYWORDS="~amd64 ~x86" RDEPEND=" app-misc/tmux dev-lang/perl dev-libs/openssl:0= - zsh-completion? ( app-shells/zsh )" - +" DEPEND="${RDEPEND}" RESTRICT="test" @@ -29,8 +26,7 @@ src_install() { dobin bin/* doman man/*.1 einstalldocs - if use zsh-completion; then - insinto /usr/share/zsh/site-functions - doins completion/zsh/* - fi + + insinto /usr/share/zsh/site-functions + doins completion/zsh/* }