mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 15:13:31 -04:00
app-admin/pulumi-bin: add 3.101.0
Signed-off-by: Alexey Zapparov <alexey@zapparov.com>
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST pulumi-v3.100.0-linux-x64.tar.gz 154992145 BLAKE2B f075796f9deeec8dd7bc57247f07631005b25cf537e67cf538577e0e5ec229bf3269dacd6a35dfbc2e1370b4e41edaa8231e170178694767b714626b729ad400 SHA512 aeac482b0863ff0499cd2ad619073d8189cb90a0d35df0bf5d715920f8286b008f73a3ff5f7b65457496b21cb8fccd32321cbfddc022065109d6337b8bcc9904
|
||||
DIST pulumi-v3.101.0-linux-x64.tar.gz 154756478 BLAKE2B b38af0d4cb9016305b29f134290d670494a113f336098502b031db75e59faacd6940a467e481c77eac895bdf3244604edb4046fafcb334bbb33b731881531541 SHA512 89df1e03b669aaa57575da33a3cd05f7c89d51897a173430b488826daf64e6e2bc7c6c9c072cd7b469fbd5b74596560979a24b8c02c8c052647e1758a81c7b21
|
||||
DIST pulumi-v3.99.0-linux-x64.tar.gz 154602565 BLAKE2B 5df405da6aa7d6ccf7137e91cca3c32cbe0cfd34f45256a422962c31371d5b0b8dfdf537163113095528a39ff0beb41bbee84ff5ef2e206eac47cd7d7c11b419 SHA512 3d94c42de637574e8b68062fbe34c07ee45cb1072af140f6b9eec288b577df6028d09d4c4bc3f08e6eebba9cbf7c59346aeee6dbbe298b0f1d8f28b3cf6075f4
|
||||
|
||||
34
app-admin/pulumi-bin/pulumi-bin-3.101.0.ebuild
Normal file
34
app-admin/pulumi-bin/pulumi-bin-3.101.0.ebuild
Normal file
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user