mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-19 03:53:22 -04:00
app-admin/pulumi-bin: new package, add 3.67.1
Signed-off-by: Alexey Zapparov <alexey@zapparov.com>
This commit is contained in:
1
app-admin/pulumi-bin/Manifest
Normal file
1
app-admin/pulumi-bin/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST pulumi-v3.67.1-linux-x64.tar.gz 130093581 BLAKE2B 812310702e92dc9a75bb686fc175ae1dad8a9a4b548b2c89b6f4e1d3a911455b4d8e1d0ec71971103412be5ab170c94044afe7bb881ef665bdf94ec4ccadfd11 SHA512 a4b031b44039cd8f653acbc84ea67755ec2dfa67ec152b45fcf31f1a4c71cc46339d6a7ae0b09daa883175e8ffe8edfdd59a08771573d0d99720725281a80850
|
||||
11
app-admin/pulumi-bin/metadata.xml
Normal file
11
app-admin/pulumi-bin/metadata.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>alexey@zapparov.com</email>
|
||||
<name>Alexey Zapparov</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="github">pulumi/pulumi</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
36
app-admin/pulumi-bin/pulumi-bin-3.67.1.ebuild
Normal file
36
app-admin/pulumi-bin/pulumi-bin-3.67.1.ebuild
Normal file
@@ -0,0 +1,36 @@
|
||||
# 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 )
|
||||
"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND=""
|
||||
|
||||
S="${WORKDIR}/pulumi"
|
||||
|
||||
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