app-admin/pulumi-bin: add 3.104.2, drop 3.101.*

Signed-off-by: Alexey Zapparov <alexey@zapparov.com>
This commit is contained in:
Alexey Zapparov 2024-02-02 05:02:46 +01:00
parent ec3789ba64
commit b939dbe6c5
No known key found for this signature in database
GPG Key ID: 1FA54F86EB189F3C
3 changed files with 1 additions and 36 deletions

View File

@ -1,4 +1,3 @@
DIST pulumi-v3.101.0-linux-x64.tar.gz 154756478 BLAKE2B b38af0d4cb9016305b29f134290d670494a113f336098502b031db75e59faacd6940a467e481c77eac895bdf3244604edb4046fafcb334bbb33b731881531541 SHA512 89df1e03b669aaa57575da33a3cd05f7c89d51897a173430b488826daf64e6e2bc7c6c9c072cd7b469fbd5b74596560979a24b8c02c8c052647e1758a81c7b21
DIST pulumi-v3.101.1-linux-x64.tar.gz 154992917 BLAKE2B ef96ce6ab8f47c9feb4d0b95ad2a56bcbddb855e4e929e3ce03308d3f999c0cda7ddc0d48d6ff372805b70ab7c2236789a2456fd1968318fcfdbb37464b0068b SHA512 879a0824b836797db23fb8b1e0a1c7fe64636a99d87ad76c503d862edcb69425efa0dfae7cd6a1aedb9e4ff5b8f594022f1a828f7b6060edad7752167b0b71f4
DIST pulumi-v3.102.0-linux-x64.tar.gz 154970812 BLAKE2B e5aa0fed9961de13aa22c866881fc4baa3065928c1c52ff57a2504bb6f2f081752d4a25fd02c67b6260d06585b1d8f87ff059e2dffdfd07593fbb66fcbbd05df SHA512 140a2e7f4728790e1abb6f97602e3b2f7c812ceb1ba07f1678b688691a047d640ed0710e1b7d9197aea3e61d6cac9ef529f5843487b960b91f7c5d22b9dfca48
DIST pulumi-v3.103.1-linux-x64.tar.gz 155023148 BLAKE2B adac83d1b00a116de7c170f2db81136932fe268d1051ae8439af0daa2b77910278f2f4e6078fccd0b005cfee72bccc3b2171e08ba74ffcd6873aaca52ca16cf5 SHA512 310ffe08b6b32f5e5c1387018f667bad3bbfd1325b085d1e3d22eca501625f5c031037e4c0da0637b7f679d9032b82868eb8713f86dd0905f8c4049ae4de3841
DIST pulumi-v3.104.2-linux-x64.tar.gz 155082196 BLAKE2B f446ae9311b9afa8ff123fa787bd2131c656acc5499eb068eb71d4ff9d6672c6919c4fdd56675a5e11b0ec8244bd6891cdc3e76504a69ed12a90a974b3a8e402 SHA512 fccc0cb2011f49ef29aabc9992d9b9993fa41c54eeacc8771d77ff3ba058d7993d1771af70c4c189bfecbc344f311824d88dc93625c94d13afe8f054ddb8eb19

View File

@ -1,34 +0,0 @@
# 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
}