commit: eabb393343519fb32630ceb0b31afa45cf614df7 Author: Alexey Zapparov <alexey <AT> zapparov <DOT> com> AuthorDate: Wed Nov 3 14:15:37 2021 +0000 Commit: Alexey Zapparov <alexey <AT> zapparov <DOT> com> CommitDate: Wed Nov 3 14:16:25 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=eabb3933
app-admin/awscli-bin: add 2.3.2-r1 Address ebuild review: https://github.com/gentoo/guru/commit/9ddcbb5d75a169ed92d2eb519d4ea55d76437805#commitcomment-59265080 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Alexey Zapparov <alexey <AT> zapparov.com> app-admin/awscli-bin/awscli-bin-2.3.2-r1.ebuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/app-admin/awscli-bin/awscli-bin-2.3.2-r1.ebuild b/app-admin/awscli-bin/awscli-bin-2.3.2-r1.ebuild new file mode 100644 index 000000000..0708f50f4 --- /dev/null +++ b/app-admin/awscli-bin/awscli-bin-2.3.2-r1.ebuild @@ -0,0 +1,22 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Universal Command Line Interface for Amazon Web Services version 2" +HOMEPAGE="https://docs.aws.amazon.com/cli/latest/userguide/install-cliv2.html" +SRC_URI="https://awscli.amazonaws.com/awscli-exe-linux-x86_64-${PV}.zip -> ${P}.zip" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND="!app-admin/awscli" +BDEPEND="app-arch/unzip" + +S="${WORKDIR}/aws" + +src_install() { + ./install --install-dir "${D}/opt/awscli" --bin-dir "${D}/usr/bin" \ + || die "install failed" +}
