From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1526109-garchives=archives.gentoo.org@lists.gentoo.org> 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 6DDD515806E for <garchives@archives.gentoo.org>; Wed, 7 Jun 2023 06:06:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9917AE07D3; Wed, 7 Jun 2023 06:06:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 64CB8E07D3 for <gentoo-commits@lists.gentoo.org>; Wed, 7 Jun 2023 06:06:39 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 36F79335D55 for <gentoo-commits@lists.gentoo.org>; Wed, 7 Jun 2023 06:06:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6EB81A7A for <gentoo-commits@lists.gentoo.org>; Wed, 7 Jun 2023 06:06:36 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1686117987.d8045f1b913e0acb3db928ffe7f3585a86c86232.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/emlop/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/emlop/emlop-0.5.0.ebuild X-VCS-Directories: app-portage/emlop/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d8045f1b913e0acb3db928ffe7f3585a86c86232 X-VCS-Branch: master Date: Wed, 7 Jun 2023 06:06:36 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1d4d951e-5d4d-420a-9cc5-fa89bb7be1f5 X-Archives-Hash: 376ce99ccc69754a8ebe20ab33225f50 commit: d8045f1b913e0acb3db928ffe7f3585a86c86232 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Wed Jun 7 06:06:19 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Jun 7 06:06:27 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8045f1b app-portage/emlop: handle USE=debug Closes: https://bugs.gentoo.org/907970 Signed-off-by: Sam James <sam <AT> gentoo.org> app-portage/emlop/emlop-0.5.0.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app-portage/emlop/emlop-0.5.0.ebuild b/app-portage/emlop/emlop-0.5.0.ebuild index e93f0623af38..1455f7cf3d09 100644 --- a/app-portage/emlop/emlop-0.5.0.ebuild +++ b/app-portage/emlop/emlop-0.5.0.ebuild @@ -93,14 +93,14 @@ src_install() { cargo_src_install dodoc README.md CHANGELOG.md # bash - ./target/release/emlop complete bash > emlop || die + ./target/$(usex debug debug release)/emlop complete bash > emlop || die dobashcomp emlop # zsh - ./target/release/emlop complete zsh > _emlop || die + ./target/$(usex debug debug release)/emlop complete zsh > _emlop || die insinto /usr/share/zsh/site-functions doins _emlop # fish - ./target/release/emlop complete fish > emlop.fish || die + ./target/$(usex debug debug release)/emlop complete fish > emlop.fish || die insinto /usr/share/fish/vendor_completions.d doins emlop.fish }