aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Zapparov <alexey@zapparov.com>2024-03-15 06:21:26 +0100
committerAlexey Zapparov <alexey@zapparov.com>2024-03-15 06:21:26 +0100
commitfe04bfe51f7088eb444829bcb9640707cb5906c1 (patch)
treeccbdee8a36c4b1939b78642439faaf9dfef4234a /app-admin
parentgui-apps/xremap: add 0.8.15, drop 0.8.14 (diff)
downloadguru-fe04bfe51f7088eb444829bcb9640707cb5906c1.tar.gz
guru-fe04bfe51f7088eb444829bcb9640707cb5906c1.tar.bz2
guru-fe04bfe51f7088eb444829bcb9640707cb5906c1.zip
app-admin/pulumi-bin: drop 3.107.0
Signed-off-by: Alexey Zapparov <alexey@zapparov.com>
Diffstat (limited to 'app-admin')
-rw-r--r--app-admin/pulumi-bin/Manifest2
-rw-r--r--app-admin/pulumi-bin/pulumi-bin-3.107.0.ebuild34
2 files changed, 1 insertions, 35 deletions
diff --git a/app-admin/pulumi-bin/Manifest b/app-admin/pulumi-bin/Manifest
index 21e4c649d..0e9ff2939 100644
--- a/app-admin/pulumi-bin/Manifest
+++ b/app-admin/pulumi-bin/Manifest
@@ -1,3 +1,3 @@
-DIST pulumi-v3.107.0-linux-x64.tar.gz 157901430 BLAKE2B 70df3bd37659a2de9dcc1c6d2b9e752c6e123a0e8a8ea6e578e2b1a825e64ece28418097a3abb58f944bd33480948cf5431a0e9f6ad23ff0a1a27c0762bc3736 SHA512 cf6c683640bd327749bcce08f98cc4e4f95dfd64452fc7e216c19aa9713aeb65f0ba51d4ab74d8bd69c0fac94dae62cd49883958dc88f98c4c250558c6834fde
DIST pulumi-v3.108.0-linux-x64.tar.gz 157919986 BLAKE2B 970a368ba9888c87ff5bbb895708d93f18ecda4dc4f6979d3f5b4904d801c24dcc85b6245951ed09172d0f3cc746fdbea430f4def70c4e9e4ccdbb9368a3d428 SHA512 912ec0d3d1d0b15cab1314a6f429dc0744cc6da8cc9ff48db6502c123f764c2e292dfe698bfc21a049761e09acd798c218c0176e0caa95d91e3d224fd00889ac
DIST pulumi-v3.109.0-linux-x64.tar.gz 157925128 BLAKE2B 7288b1df31e6a1b73b4c6d827f3771c21c949c6bb01bf7de81011ecc59a60f66f48255dc65704cc4e54d7b162d9374865a9376e3a3f7a2e2f7512017bccff459 SHA512 027c0de16c02f04676639d1b5b1db0646d553fc80fe170f0df50a1d07bcf1582bf3a5f434338babe7b19ad8f58816d920c1afe0efd51624823bfdfe669b986d0
+DIST pulumi-v3.110.0-linux-x64.tar.gz 157562576 BLAKE2B 0f0af81794d0f72f48b954971037bce98ca65c7af60f45697484b3b45304c0aa5b12f0cd6f703274c88efb51a0eb98b224c4e5fd7465fb8438758eb26bb8f56f SHA512 131b085422933f428d4626fc094900e934c24b417c5d4d379a8f8ef56dc14b7b45c42876c639d01c29b83fecfa8cecb3ae83d42f6c4c8e5b4b93049a0cf8c65b
diff --git a/app-admin/pulumi-bin/pulumi-bin-3.107.0.ebuild b/app-admin/pulumi-bin/pulumi-bin-3.107.0.ebuild
deleted file mode 100644
index febb59ec1..000000000
--- a/app-admin/pulumi-bin/pulumi-bin-3.107.0.ebuild
+++ /dev/null
@@ -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
-}