From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1521429-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 AD25115806E
	for <garchives@archives.gentoo.org>; Thu, 25 May 2023 20:23:44 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id E6E76E0837;
	Thu, 25 May 2023 20:23:43 +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 C4870E0837
	for <gentoo-commits@lists.gentoo.org>; Thu, 25 May 2023 20:23:43 +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 92674335D8A
	for <gentoo-commits@lists.gentoo.org>; Thu, 25 May 2023 20:23:42 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 2C5EBA67
	for <gentoo-commits@lists.gentoo.org>; Thu, 25 May 2023 20:23:41 +0000 (UTC)
From: "Alexey Zapparov" <alexey@zapparov.com>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Alexey Zapparov" <alexey@zapparov.com>
Message-ID: <1685046167.8ef7524649b5e730f76be686c1f8ae9cf2edbc52.alexey@gentoo>
Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-admin/pulumi-bin/
X-VCS-Repository: repo/proj/guru
X-VCS-Files: app-admin/pulumi-bin/pulumi-bin-3.67.1-r1.ebuild app-admin/pulumi-bin/pulumi-bin-3.67.1.ebuild
X-VCS-Directories: app-admin/pulumi-bin/
X-VCS-Committer: alexey
X-VCS-Committer-Name: Alexey Zapparov
X-VCS-Revision: 8ef7524649b5e730f76be686c1f8ae9cf2edbc52
X-VCS-Branch: dev
Date: Thu, 25 May 2023 20:23:41 +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: 798512b3-bb1a-47a8-865e-cf6b79dd655a
X-Archives-Hash: b1c096954eb3d0ed5e5445ec5a199371

commit:     8ef7524649b5e730f76be686c1f8ae9cf2edbc52
Author:     Alexey Zapparov <alexey <AT> zapparov <DOT> com>
AuthorDate: Thu May 25 20:22:47 2023 +0000
Commit:     Alexey Zapparov <alexey <AT> zapparov <DOT> com>
CommitDate: Thu May 25 20:22:47 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8ef75246

app-admin/pulumi-bin: fix completion generation

Bug: 906827
Signed-off-by: Alexey Zapparov <alexey <AT> zapparov.com>

 .../{pulumi-bin-3.67.1.ebuild => pulumi-bin-3.67.1-r1.ebuild}         | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/pulumi-bin/pulumi-bin-3.67.1.ebuild b/app-admin/pulumi-bin/pulumi-bin-3.67.1-r1.ebuild
similarity index 77%
rename from app-admin/pulumi-bin/pulumi-bin-3.67.1.ebuild
rename to app-admin/pulumi-bin/pulumi-bin-3.67.1-r1.ebuild
index 7df1eca54..886d0e992 100644
--- a/app-admin/pulumi-bin/pulumi-bin-3.67.1.ebuild
+++ b/app-admin/pulumi-bin/pulumi-bin-3.67.1-r1.ebuild
@@ -27,10 +27,10 @@ S="${WORKDIR}/pulumi"
 src_install() {
 	dobin pulumi*
 
-	pulumi gen-completion bash > pulumi.bash-completion || die "Cannot generate bash completions"
+	./pulumi gen-completion bash > pulumi.bash-completion || die "Cannot generate bash completions"
 	newbashcomp pulumi.bash-completion pulumi
 
-	pulumi gen-completion zsh > pulumi.zsh-completion || die "Cannot generate zsh completions"
+	./pulumi gen-completion zsh > pulumi.zsh-completion || die "Cannot generate zsh completions"
 	insinto /usr/share/zsh/site-functions
 	newins pulumi.zsh-completion _pulumi
 }