From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 373CD158086 for ; Wed, 3 Nov 2021 14:28:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EEB2DE085A; Wed, 3 Nov 2021 14:28:27 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C97D6E085A for ; Wed, 3 Nov 2021 14:28:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5CD42342F4E for ; Wed, 3 Nov 2021 14:28:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D45B163 for ; Wed, 3 Nov 2021 14:28:24 +0000 (UTC) From: "Alexey Zapparov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexey Zapparov" Message-ID: <1635948985.eabb393343519fb32630ceb0b31afa45cf614df7.alexey@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-admin/awscli-bin/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-admin/awscli-bin/awscli-bin-2.3.2-r1.ebuild X-VCS-Directories: app-admin/awscli-bin/ X-VCS-Committer: alexey X-VCS-Committer-Name: Alexey Zapparov X-VCS-Revision: eabb393343519fb32630ceb0b31afa45cf614df7 X-VCS-Branch: dev Date: Wed, 3 Nov 2021 14:28:24 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ac7e1636-e416-4c99-a087-b2bdd5c0709a X-Archives-Hash: cc879ed52ee4c8bb66b5595897a0fa7b commit: eabb393343519fb32630ceb0b31afa45cf614df7 Author: Alexey Zapparov zapparov com> AuthorDate: Wed Nov 3 14:15:37 2021 +0000 Commit: Alexey Zapparov zapparov 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 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" +}