app-admin/pulumi-bin: add 3.207.0

Signed-off-by: Alexey Zapparov <alexey@zapparov.com>
This commit is contained in:
Alexey Zapparov
2025-11-17 17:01:56 +01:00
parent f384f4760e
commit 40197e1e2c
2 changed files with 34 additions and 0 deletions

View File

@@ -2,3 +2,4 @@ DIST pulumi-v3.191.0-linux-x64.tar.gz 92852960 BLAKE2B ab5601a7bbd6db9071144483e
DIST pulumi-v3.198.0-linux-x64.tar.gz 93850453 BLAKE2B 059555a1b33fa4cef179908d578fd77f217bede804ad66020d3c0af7d71b32705a289bd438cc47a357854e18b841df2e8951d5ccb486c125d814bc51b018dcea SHA512 a5317ad0518d0d9ef531052fe620493cf1d7d4b86b1cae54a77eac6056e2f198dd659906dcb657a510f5790d1b8adc8f716ee17e6f688da8854e3d9618a6ed2a
DIST pulumi-v3.201.0-linux-x64.tar.gz 93945968 BLAKE2B 7f36ca7acd9cc0507eb191e9be3a8a5b9f00a8b2cc87678a803fe001b70cfb3710504154b9ac44db4aa697789e6c8f0f7e006caebc1d6ca32db6b9869ad569af SHA512 b1599fc6fff9043ca1b65a40c98e4a72e4f289b64aba0fa492967b6e19a794bb3477725bbb85d94e9019faf647710ddd2a09396b8b7b6372838fe97c674fd38a
DIST pulumi-v3.204.0-linux-x64.tar.gz 94478287 BLAKE2B f14aec6de8ed94a5ed83a1f49a6a4e132e1b84ad11601ad17126d514246236aee6ceea320a4a7b1ff7bb1816855ad502ff5ac9b7bcc07990a2be329ba32fd460 SHA512 7d7cb6736f66831d46b3d44f3a2f638b29806a6ba99ac2ecce0a8e2f25e96019e24212748b6a556b908ab3b61d8e2bf90866018b78d3f27b516f0fdaf68c3ce1
DIST pulumi-v3.207.0-linux-x64.tar.gz 94603881 BLAKE2B 933ec363e3b2a73138e9aee94a2d9c979c6898b6282c76758946fd289041c14171f7fe0209255a521eab1144605c6db3fad3ab0e5f18288931d4f91c9076c993 SHA512 451408cda0bfe313ab753cbddc7e970b5198a3e6ed448e2c74299909330b06b92580a1b6da971f5cd3549341d81538ad0db8d074c9b4e7d80d18f456ae62e2cb

View File

@@ -0,0 +1,33 @@
# Copyright 2023-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit shell-completion
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"
newzshcomp pulumi.zsh-completion _pulumi
}