diff options
author | Sam James <sam@gentoo.org> | 2021-07-25 04:04:11 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-07-31 01:17:06 +0100 |
commit | f6cfe4cff375e3baf2bbfe90e15b7046dab9e967 (patch) | |
tree | 557c7ab7514f5b7f3f831177d337030ce7b43918 /dev-util/uftrace | |
parent | gui-apps/swayidle: [QA] unconditionally install completion files (diff) | |
download | gentoo-f6cfe4cff375e3baf2bbfe90e15b7046dab9e967.tar.gz gentoo-f6cfe4cff375e3baf2bbfe90e15b7046dab9e967.tar.bz2 gentoo-f6cfe4cff375e3baf2bbfe90e15b7046dab9e967.zip |
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 <sam@gentoo.org>
Diffstat (limited to 'dev-util/uftrace')
-rw-r--r-- | dev-util/uftrace/uftrace-0.10-r1.ebuild (renamed from dev-util/uftrace/uftrace-0.10.ebuild) | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/dev-util/uftrace/uftrace-0.10.ebuild b/dev-util/uftrace/uftrace-0.10-r1.ebuild index 92c30228011d..2b39cc144648 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 } |