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 1063A158041 for ; Fri, 15 Mar 2024 07:10:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AD1B1E29E3; Fri, 15 Mar 2024 07:10:28 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 79FFDE29E1 for ; Fri, 15 Mar 2024 07:10:26 +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 6E45A33BEEE for ; Fri, 15 Mar 2024 07:10:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C388D1519 for ; Fri, 15 Mar 2024 07:10:23 +0000 (UTC) From: "Rui Huang" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Rui Huang" Message-ID: <1710480115.2599e6604ad3ad845e812bcaab8ec9891c9174d8.vowstar@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.110.0.ebuild X-VCS-Directories: app-admin/pulumi-bin/ X-VCS-Committer: vowstar X-VCS-Committer-Name: Rui Huang X-VCS-Revision: 2599e6604ad3ad845e812bcaab8ec9891c9174d8 X-VCS-Branch: master Date: Fri, 15 Mar 2024 07:10:23 +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: 5403692d-b25d-4c31-8d71-30d0e5944303 X-Archives-Hash: 3a5e75b985ec9fe4cc2db5ee1d93c783 commit: 2599e6604ad3ad845e812bcaab8ec9891c9174d8 Author: Alexey Zapparov zapparov com> AuthorDate: Fri Mar 15 05:21:55 2024 +0000 Commit: Rui Huang gmail com> CommitDate: Fri Mar 15 05:21:55 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2599e660 app-admin/pulumi-bin: add 3.110.0 Signed-off-by: Alexey Zapparov zapparov.com> app-admin/pulumi-bin/pulumi-bin-3.110.0.ebuild | 34 ++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/app-admin/pulumi-bin/pulumi-bin-3.110.0.ebuild b/app-admin/pulumi-bin/pulumi-bin-3.110.0.ebuild new file mode 100644 index 0000000000..febb59ec18 --- /dev/null +++ b/app-admin/pulumi-bin/pulumi-bin-3.110.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit bash-completion-r1 + +DESCRIPTION="Infrastructure as code in any programming language" +HOMEPAGE=" + https://www.pulumi.com/ + https://github.com/pulumi/pulumi +" +SRC_URI=" + amd64? ( https://github.com/pulumi/pulumi/releases/download/v${PV}/pulumi-v${PV}-linux-x64.tar.gz ) +" + +S="${WORKDIR}/pulumi" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +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" + insinto /usr/share/zsh/site-functions + newins pulumi.zsh-completion _pulumi +}