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 7893F139000 for ; Sat, 31 Jul 2021 00:18:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C480E08A0; Sat, 31 Jul 2021 00:18:38 +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 42DCAE089A for ; Sat, 31 Jul 2021 00:18:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 BAD6C343943 for ; Sat, 31 Jul 2021 00:18:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E3ED17CB for ; Sat, 31 Jul 2021 00:18:34 +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: <1627690589.cb7d7630c115b32a8d1aa84f75b5dba9ffa11f32.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.2-r1.ebuild app-misc/tmux-xpanes/tmux-xpanes-4.1.2.ebuild app-misc/tmux-xpanes/tmux-xpanes-4.1.3-r1.ebuild 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: cb7d7630c115b32a8d1aa84f75b5dba9ffa11f32 X-VCS-Branch: master Date: Sat, 31 Jul 2021 00:18:34 +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: b592ff2a-0e02-47b8-9405-bf91785441ee X-Archives-Hash: 8389b5695e5afe4008d2977303bf753c commit: cb7d7630c115b32a8d1aa84f75b5dba9ffa11f32 Author: Sam James gentoo org> AuthorDate: Sun Jul 25 03:04:06 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jul 31 00:16:29 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb7d7630 app-misc/tmux-xpanes: [QA] unconditionally install completion files QA policy [0] says that we don't conditionalise installation of small files. It's a wasteful rebuild and inconsistent across packages for when users desire completions to be available. [0] https://projects.gentoo.org/qa/policy-guide/installed-files.html#pg0301 Signed-off-by: Sam James gentoo.org> ...panes-4.1.2.ebuild => tmux-xpanes-4.1.2-r1.ebuild} | 19 ++++++------------- ...panes-4.1.3.ebuild => tmux-xpanes-4.1.3-r1.ebuild} | 9 +++------ 2 files changed, 9 insertions(+), 19 deletions(-) diff --git a/app-misc/tmux-xpanes/tmux-xpanes-4.1.2.ebuild b/app-misc/tmux-xpanes/tmux-xpanes-4.1.2-r1.ebuild similarity index 67% rename from app-misc/tmux-xpanes/tmux-xpanes-4.1.2.ebuild rename to app-misc/tmux-xpanes/tmux-xpanes-4.1.2-r1.ebuild index ed4e2949a39..1fbee411365 100644 --- a/app-misc/tmux-xpanes/tmux-xpanes-4.1.2.ebuild +++ b/app-misc/tmux-xpanes/tmux-xpanes-4.1.2-r1.ebuild @@ -7,19 +7,13 @@ 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" +KEYWORDS="amd64 x86" -IUSE="zsh-completion" - -RDEPEND=" - app-misc/tmux +RDEPEND="app-misc/tmux dev-lang/perl - dev-libs/openssl:0= - zsh-completion? ( app-shells/zsh )" - -DEPEND="${RDEPEND}" + dev-libs/openssl:0" RESTRICT="test" @@ -29,8 +23,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 -r completion/zsh/. } diff --git a/app-misc/tmux-xpanes/tmux-xpanes-4.1.3.ebuild b/app-misc/tmux-xpanes/tmux-xpanes-4.1.3-r1.ebuild similarity index 84% rename from app-misc/tmux-xpanes/tmux-xpanes-4.1.3.ebuild rename to app-misc/tmux-xpanes/tmux-xpanes-4.1.3-r1.ebuild index 1f0e2733e1d..3d28ac557e8 100644 --- a/app-misc/tmux-xpanes/tmux-xpanes-4.1.3.ebuild +++ b/app-misc/tmux-xpanes/tmux-xpanes-4.1.3-r1.ebuild @@ -11,12 +11,9 @@ LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" -RDEPEND=" - app-misc/tmux +RDEPEND="app-misc/tmux dev-lang/perl - dev-libs/openssl:0= -" -DEPEND="${RDEPEND}" + dev-libs/openssl:0" RESTRICT="test" @@ -28,5 +25,5 @@ src_install() { einstalldocs insinto /usr/share/zsh/site-functions - doins completion/zsh/* + doins -r completion/zsh/. }