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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 06FBE15ACFB for ; Thu, 13 Apr 2023 07:02:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 49436E0848; Thu, 13 Apr 2023 07:02:23 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 30C24E0843 for ; Thu, 13 Apr 2023 07:02:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6FD2C340F1D for ; Thu, 13 Apr 2023 07:02:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 74AF3A51 for ; Thu, 13 Apr 2023 07:02:18 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1681364108.5e25c825e7ed26da30d9d056d64285bf38617618.flow@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-portage/emlop/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-portage/emlop/emlop-0.5.0.ebuild X-VCS-Directories: app-portage/emlop/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 5e25c825e7ed26da30d9d056d64285bf38617618 X-VCS-Branch: master Date: Thu, 13 Apr 2023 07:02:18 +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: 4c68b57c-5b2a-4f5a-9cbf-f9812c713487 X-Archives-Hash: 713a24ee04b8b3d7e6ecd0a364a70c8c commit: 5e25c825e7ed26da30d9d056d64285bf38617618 Author: Jonas Frei pm me> AuthorDate: Thu Apr 13 05:35:08 2023 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Thu Apr 13 05:35:08 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5e25c825 app-portage/emlop: Using eclass 'shell-completion', fixed 'debug' USE Signed-off-by: Jonas Frei pm.me> app-portage/emlop/emlop-0.5.0.ebuild | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/app-portage/emlop/emlop-0.5.0.ebuild b/app-portage/emlop/emlop-0.5.0.ebuild index 122039c7f..6871fd48d 100644 --- a/app-portage/emlop/emlop-0.5.0.ebuild +++ b/app-portage/emlop/emlop-0.5.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 2017-2022 Gentoo Authors +# Copyright 2017-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -65,7 +65,7 @@ CRATES=" winapi-x86_64-pc-windows-gnu-0.4.0 " -inherit cargo bash-completion-r1 +inherit cargo shell-completion DESCRIPTION="A fast, accurate, ergonomic emerge.log parser" HOMEPAGE="https://github.com/vincentdephily/emlop" @@ -86,17 +86,15 @@ src_install() { cargo_src_install einstalldocs if use bash-completion; then - ./target/release/emlop complete bash > emlop + ./target/$(usex debug debug release)/emlop complete bash > "${PN}" dobashcomp emlop fi if use zsh-completion; then - ./target/release/emlop complete zsh > _emlop - insinto /usr/share/zsh/site-functions - doins _emlop + ./target/$(usex debug debug release)/emlop complete zsh > "_${PN}" + dozshcomp "_${PN}" fi if use fish-completion; then - ./target/release/emlop complete fish > emlop.fish - insinto /usr/share/fish/vendor_completions.d - doins emlop.fish + ./target/$(usex debug debug release)/emlop complete fish > "${PN}.fish" + dofishcomp "${PN}.fish" fi }