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 F0D9915817D for ; Sun, 9 Jun 2024 18:28:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 25856E2A91; Sun, 9 Jun 2024 18:28:45 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 0AB84E2A91 for ; Sun, 9 Jun 2024 18:28:45 +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 C12DD342F94 for ; Sun, 9 Jun 2024 18:28:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F3C0E1C8C for ; Sun, 9 Jun 2024 18:28:40 +0000 (UTC) From: "Julien Roy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julien Roy" Message-ID: <1717949220.c346c9b42525ac871f4c9c5e25dfcf43931e3a35.julien@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-build/just/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-build/just/just-1.28.0.ebuild X-VCS-Directories: dev-build/just/ X-VCS-Committer: julien X-VCS-Committer-Name: Julien Roy X-VCS-Revision: c346c9b42525ac871f4c9c5e25dfcf43931e3a35 X-VCS-Branch: master Date: Sun, 9 Jun 2024 18:28:40 +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: 36a3a9f7-9089-49d2-9116-fb90bc773c95 X-Archives-Hash: 199ca9fd26fc8af5718c090b4eab5e4f commit: c346c9b42525ac871f4c9c5e25dfcf43931e3a35 Author: Joe Kappus wt gd> AuthorDate: Sun Jun 9 16:04:32 2024 +0000 Commit: Julien Roy jroy ca> CommitDate: Sun Jun 9 16:07:00 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c346c9b4 dev-build/just-1.28.0: fixups Add GH code review fixups from antecrescent. https://github.com/gentoo/guru/commit/56a211875e7decddc116b10194464fb62ad8c4e8 Signed-off-by: Joe Kappus wt.gd> dev-build/just/just-1.28.0.ebuild | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/dev-build/just/just-1.28.0.ebuild b/dev-build/just/just-1.28.0.ebuild index 104387bb4..9dabe06bb 100644 --- a/dev-build/just/just-1.28.0.ebuild +++ b/dev-build/just/just-1.28.0.ebuild @@ -208,23 +208,22 @@ src_install() { cargo_src_install - mkdir -p man - ./target/release/just --man > man/just.1 - ./target/release/just --completions $shell > completions/just.$shell + mkdir -p man || die + ./target/$(usex debug debug release)/just --man > man/just.1 doman man/* einstalldocs # bash-completion - ./target/release/just --completions bash > completions/just.bash + ./target/$(usex debug debug release)/just --completions bash > completions/just.bash newbashcomp "completions/${PN}.bash" "${PN}" # zsh-completion - ./target/release/just --completions zsh > completions/just.zsh + ./target/$(usex debug debug release)/just --completions zsh > completions/just.zsh newzshcomp "completions/${PN}.zsh" "_${PN}" # fish-completion - ./target/release/just --completions fish > completions/just.fish + ./target/$(usex debug debug release)/just --completions fish > completions/just.fish dofishcomp "completions/${PN}.fish" }