From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7F9B915808A for ; Tue, 22 Jul 2025 22:02:00 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 67A493417F2 for ; Tue, 22 Jul 2025 22:02:00 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 6B8A3110560; Tue, 22 Jul 2025 22:01:55 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 62D49110560 for ; Tue, 22 Jul 2025 22:01:55 +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 F00DB3415CB for ; Tue, 22 Jul 2025 22:01:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 30779327B for ; Tue, 22 Jul 2025 22:01:53 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1753201597.ac2d9afb246fc7e9b2b5219f9858009e20b49c78.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-admin/pulumi-bin/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-admin/pulumi-bin/pulumi-bin-3.185.0-r1.ebuild app-admin/pulumi-bin/pulumi-bin-3.185.0.ebuild X-VCS-Directories: app-admin/pulumi-bin/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: ac2d9afb246fc7e9b2b5219f9858009e20b49c78 X-VCS-Branch: master Date: Tue, 22 Jul 2025 22:01:53 +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: 53cd574b-ca8a-482e-8cdf-24b781763a5f X-Archives-Hash: bc81e6628ca25d0275b0665e4a1fdf1b commit: ac2d9afb246fc7e9b2b5219f9858009e20b49c78 Author: Alexey Zapparov zapparov com> AuthorDate: Tue Jul 22 16:26:37 2025 +0000 Commit: David Roman gmail com> CommitDate: Tue Jul 22 16:26:37 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ac2d9afb app-admin/pulumi-bin: add 3.185.0-r1, drop 3.185.0 Remove shell completions installation, as new version of Pulumi does network calls upon execution. Signed-off-by: Alexey Zapparov zapparov.com> .../{pulumi-bin-3.185.0.ebuild => pulumi-bin-3.185.0-r1.ebuild} | 8 -------- 1 file changed, 8 deletions(-) diff --git a/app-admin/pulumi-bin/pulumi-bin-3.185.0.ebuild b/app-admin/pulumi-bin/pulumi-bin-3.185.0-r1.ebuild similarity index 61% rename from app-admin/pulumi-bin/pulumi-bin-3.185.0.ebuild rename to app-admin/pulumi-bin/pulumi-bin-3.185.0-r1.ebuild index 6506e51bbc..f5c9b2f44d 100644 --- a/app-admin/pulumi-bin/pulumi-bin-3.185.0.ebuild +++ b/app-admin/pulumi-bin/pulumi-bin-3.185.0-r1.ebuild @@ -3,8 +3,6 @@ EAPI=8 -inherit shell-completion - DESCRIPTION="Infrastructure as code in any programming language" HOMEPAGE=" https://www.pulumi.com/ @@ -24,10 +22,4 @@ QA_PREBUILT="*" src_install() { dobin pulumi* - - ./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" - newzshcomp pulumi.zsh-completion _pulumi }