Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: app-admin/awscli-bin/
Date: Thu, 04 Nov 2021 11:38:41
Message-Id: 1635948985.eabb393343519fb32630ceb0b31afa45cf614df7.andrewammerlaan@gentoo
1 commit: eabb393343519fb32630ceb0b31afa45cf614df7
2 Author: Alexey Zapparov <alexey <AT> zapparov <DOT> com>
3 AuthorDate: Wed Nov 3 14:15:37 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 3 14:16:25 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=eabb3933
7
8 app-admin/awscli-bin: add 2.3.2-r1
9
10 Address ebuild review:
11 https://github.com/gentoo/guru/commit/9ddcbb5d75a169ed92d2eb519d4ea55d76437805#commitcomment-59265080
12
13 Package-Manager: Portage-3.0.28, Repoman-3.0.3
14 Signed-off-by: Alexey Zapparov <alexey <AT> zapparov.com>
15
16 app-admin/awscli-bin/awscli-bin-2.3.2-r1.ebuild | 22 ++++++++++++++++++++++
17 1 file changed, 22 insertions(+)
18
19 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
20 new file mode 100644
21 index 000000000..0708f50f4
22 --- /dev/null
23 +++ b/app-admin/awscli-bin/awscli-bin-2.3.2-r1.ebuild
24 @@ -0,0 +1,22 @@
25 +# Copyright 2021 Gentoo Authors
26 +# Distributed under the terms of the GNU General Public License v2
27 +
28 +EAPI=8
29 +
30 +DESCRIPTION="Universal Command Line Interface for Amazon Web Services version 2"
31 +HOMEPAGE="https://docs.aws.amazon.com/cli/latest/userguide/install-cliv2.html"
32 +SRC_URI="https://awscli.amazonaws.com/awscli-exe-linux-x86_64-${PV}.zip -> ${P}.zip"
33 +
34 +LICENSE="Apache-2.0"
35 +SLOT="0"
36 +KEYWORDS="~amd64"
37 +
38 +RDEPEND="!app-admin/awscli"
39 +BDEPEND="app-arch/unzip"
40 +
41 +S="${WORKDIR}/aws"
42 +
43 +src_install() {
44 + ./install --install-dir "${D}/opt/awscli" --bin-dir "${D}/usr/bin" \
45 + || die "install failed"
46 +}