commit: 3266ed6dcd190b41b19c9cf068bcd8f11ede2a03 Author: Alexey Zapparov <alexey <AT> zapparov <DOT> com> AuthorDate: Sat Jun 10 22:55:08 2023 +0000 Commit: Alexey Zapparov <alexey <AT> zapparov <DOT> com> CommitDate: Sat Jun 10 22:55:08 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3266ed6d
app-admin/pulumi-bin: drop 3.68.0-r1 Signed-off-by: Alexey Zapparov <alexey <AT> zapparov.com> app-admin/pulumi-bin/Manifest | 1 - app-admin/pulumi-bin/pulumi-bin-3.68.0-r1.ebuild | 38 ------------------------ 2 files changed, 39 deletions(-) diff --git a/app-admin/pulumi-bin/Manifest b/app-admin/pulumi-bin/Manifest index 78d4f520e..dcf9d87ca 100644 --- a/app-admin/pulumi-bin/Manifest +++ b/app-admin/pulumi-bin/Manifest @@ -1,3 +1,2 @@ -DIST pulumi-v3.68.0-linux-x64.tar.gz 129684338 BLAKE2B 2cf7cd405fb99184af34d96eb87bd0ed82c802cf71ae3ccfef4d4bd50c9c493a3cacf43e509af0feedfea7d97b0addc050a0070c8559eed8e3898d7f715d8739 SHA512 4b8c6e64c61eef312639e94cff3b4866ce47e555a4ebd14e1e4d8b296beddf66f0d5edffa60e07475339adfb23c5545b2a0141557750da29c9707bee70cf93b9 DIST pulumi-v3.69.0-linux-x64.tar.gz 145252618 BLAKE2B 990dc7b1ed8885a20844302200e149aa036ae7bb6f18db72642bbc0dddfb132eca4343010319d8364e110f67f9cca51e95686d5775719aa15bedd940be402ce7 SHA512 4391be2c2b638e32b3902596f95972be70d7cff9e4c102a5e8f08aadc61bc9115366b63bec3a3dcd8a4edc2607e1d394c2b15210a9918650545f586ca7286590 DIST pulumi-v3.70.0-linux-x64.tar.gz 143271395 BLAKE2B 2e3a26056e6b61010db2737fe43ca28433e4dccef1c1e97d22382d87fc00da25ebd3c111ddbe04b79a58a2cb1f82e76fc41c8354d93c56cd4a4c65c2c232ca0f SHA512 27d4aa9b5be9b25ab9830fbceffa5038b9012b3876079980453251b49d5bfac884e9666da3485f6ed541896d8291220a3b51479d579b5ffc55fc59f59e4a5543 diff --git a/app-admin/pulumi-bin/pulumi-bin-3.68.0-r1.ebuild b/app-admin/pulumi-bin/pulumi-bin-3.68.0-r1.ebuild deleted file mode 100644 index 8e5eb8e90..000000000 --- a/app-admin/pulumi-bin/pulumi-bin-3.68.0-r1.ebuild +++ /dev/null @@ -1,38 +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 ) -" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64" - -DEPEND="" -RDEPEND="${DEPEND}" -BDEPEND="" - -S="${WORKDIR}/pulumi" - -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 -}