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 3EA24139000 for ; Sat, 31 Jul 2021 00:18:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3F8C9E08F2; Sat, 31 Jul 2021 00:18:41 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 286B1E08F0 for ; Sat, 31 Jul 2021 00:18:41 +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 C5A6F34394E for ; Sat, 31 Jul 2021 00:18:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 57A56851 for ; Sat, 31 Jul 2021 00:18:35 +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: <1627690626.f6cfe4cff375e3baf2bbfe90e15b7046dab9e967.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/uftrace/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/uftrace/uftrace-0.10-r1.ebuild dev-util/uftrace/uftrace-0.10.ebuild X-VCS-Directories: dev-util/uftrace/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f6cfe4cff375e3baf2bbfe90e15b7046dab9e967 X-VCS-Branch: master Date: Sat, 31 Jul 2021 00:18:35 +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: 5de92c51-d1f8-4185-bbc9-2fed74bb3956 X-Archives-Hash: 3caa4f9e6a3f4008662a218e05d9c9af commit: f6cfe4cff375e3baf2bbfe90e15b7046dab9e967 Author: Sam James gentoo org> AuthorDate: Sun Jul 25 03:04:11 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jul 31 00:17:06 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6cfe4cf dev-util/uftrace: [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> dev-util/uftrace/{uftrace-0.10.ebuild => uftrace-0.10-r1.ebuild} | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-util/uftrace/uftrace-0.10.ebuild b/dev-util/uftrace/uftrace-0.10-r1.ebuild similarity index 91% rename from dev-util/uftrace/uftrace-0.10.ebuild rename to dev-util/uftrace/uftrace-0.10-r1.ebuild index 92c30228011..2b39cc14464 100644 --- a/dev-util/uftrace/uftrace-0.10.ebuild +++ b/dev-util/uftrace/uftrace-0.10-r1.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://github.com/namhyung/uftrace/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~arm64" -IUSE="bash-completion capstone lua" +IUSE="capstone lua" REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} )" @@ -57,6 +57,7 @@ src_compile() { src_install() { default + dodoc doc/*.{md,gif,png} - use bash-completion && newbashcomp misc/bash-completion.sh uftrace + newbashcomp misc/bash-completion.sh uftrace }