mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 15:13:31 -04:00
app-admin/pulumi-bin: add 3.94.2
Signed-off-by: Alexey Zapparov <alexey@zapparov.com>
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST pulumi-v3.91.1-linux-x64.tar.gz 154427644 BLAKE2B 95d6ff946d6a1b74d293f6774329cc1f770f68f78e2f166320ffb2c2146fbda30521704cd32f4b8e1fc8d193aa9a6006c46819b53e2e123a2546435bf8008f0e SHA512 b954c2d627f67043b9e39227f7da9392afdb1621ac6c44fb0d7a58e3c6653b5e2bff0b858a40ebb7adabc4181f6aeaae81fc2284966906f24dbb531065b4dd5e
|
||||
DIST pulumi-v3.92.0-linux-x64.tar.gz 154831161 BLAKE2B 105f6d814b2832ec0cec7592e67fc9daf60302179bdc150f3387c07750433e7c24b7e68e1925649907b45fb7496bf056622b080d2f300188559cd08a12235656 SHA512 c42071df519559515acdc18318bc4cfbe38ef99935cad5ffae3b4c17fe1ca77bd23181762e7a00186f296c2ff107e3d42f63053d23db8391b50b5e605f083fda
|
||||
DIST pulumi-v3.94.2-linux-x64.tar.gz 154811460 BLAKE2B 0250c9c9606e12fe28abca61417796c47075b3991c426dac6eff3e8b13904e9fa487e7ccd994680a5b400692cd3259b63093e6f27f45f7dd1c6ccc1b597f5b05 SHA512 42886c8ea8c3f0ffeed62bb853b6130ac57de6ef66fafccd766277acea88f4edea3f5bff4f93f1887b5da28bbfa6d7b08e27bdf9102333b94d3faae7fab776ab
|
||||
|
||||
34
app-admin/pulumi-bin/pulumi-bin-3.94.2.ebuild
Normal file
34
app-admin/pulumi-bin/pulumi-bin-3.94.2.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