-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Alexey Zapparov <[email protected]>
- Loading branch information
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
DIST pulumi-v3.129.0-linux-x64.tar.gz 162054494 BLAKE2B b9d085b5d71da7f9cb36247dbc79deb2e4052365d2faa2c5b7e90b51d29c803489875fbdd718eb7610488a8cbca8674c56dca8bb71f4cc264c8bcbd5d59c1017 SHA512 f5613e7ca2c029954cd96239f1eebb277a872b6f0d5a089838320d26cd2764047f0ab87da45593004932cc5d771706f6387d69855915ede492ea2ef9c3ee7188 | ||
DIST pulumi-v3.130.0-linux-x64.tar.gz 162111404 BLAKE2B 6b4097a685290b5d1d9c3ad8be9f00590f3afb9946d98efd61afaf8b7d3e031bc5d588b07a64440f0e9b767bf950c37c4367ef7967e261159aef49ad3e074135 SHA512 64dfb7a7a7050f03a83e8413702cb166623769e9f5b3479948e545169cfd24940853431cfb2294642f3919f4b1344e0124408d512565bd1c73f57409f2debc58 | ||
DIST pulumi-v3.131.0-linux-x64.tar.gz 163482977 BLAKE2B ba94eb92e1e39a2ca50a85f26082e8051419d0e3c42e850ace411335b7f7008a8983c095071888614d81a4edc3e4c494dee6859a5aea827216332fdfe9adcbc6 SHA512 a72cc815065d4b20df0ec9960a84e0889d6cdb13f50bfcf65fcce2fbed01c56c2ec3cedc09798a010fd5251e6bda2c71b29ac36ac4195d130ee3d2e9a46738fc | ||
DIST pulumi-v3.133.0-linux-x64.tar.gz 164091436 BLAKE2B 8f1902bd3c48d4fe4e68ce7462976ec8107e38f3da6f087c7c8e3aa9939b906a9bf1c1a9c17ddc5b3e21b124fa0a051f7d64cfa7d060ba8aabfa89a9e4b84748 SHA512 512df1d1e424db0d3a33926e8857b75e231821eebe37eadb7e8911c1b329f2596f2277e6dd39126be9c8f7d08356c6f6992c2c2fe5f9f58a8a461f9e6f2322a2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Copyright 2023-2024 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 | ||
} |