public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Thomas Deutschmann" <whissi@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/awscli/
Date: Sun, 17 Nov 2019 20:29:53 +0000 (UTC)	[thread overview]
Message-ID: <1574022584.03ba0dedf670906ab5cf94ecccf5a56e2806e8f9.whissi@gentoo> (raw)

commit:     03ba0dedf670906ab5cf94ecccf5a56e2806e8f9
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 17 20:29:44 2019 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Nov 17 20:29:44 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03ba0ded

dev-python/awscli: bump to v1.16.283

Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 dev-python/awscli/Manifest               |  1 +
 dev-python/awscli/awscli-1.16.283.ebuild | 56 ++++++++++++++++++++++++++++++++
 2 files changed, 57 insertions(+)

diff --git a/dev-python/awscli/Manifest b/dev-python/awscli/Manifest
index 4ba1e3e3f76..9639b88bc83 100644
--- a/dev-python/awscli/Manifest
+++ b/dev-python/awscli/Manifest
@@ -7,3 +7,4 @@ DIST awscli-1.16.220.tar.gz 1363235 BLAKE2B 9db063972092dee9d03cbd6567544df2c8c0
 DIST awscli-1.16.233.tar.gz 1395357 BLAKE2B 4ebd3e51439891464864a2c8a089da96d3f33a77fe78810b073f746fa6015608f8650eb51c1b148c2cae6030f736ea2e6c01f3f21b2fe73bdc0878fd0215fea5 SHA512 356433221e352437d4f4997dd3a66a8cb866388ca480ef9ef405d8eb1d5d034d6a018c6b303446c07ff5b52778035e6b0df5922ca2fbfbb19628de3f04c9a34e
 DIST awscli-1.16.261.tar.gz 1503153 BLAKE2B c507c37905e06d976b246f4636462d79184c62a8ee55cbda82d835cdc7294419e7cadd6c2209a9f0b6768cedb6ee6dd201d3baa7edc0a0a545bd7d5ca7913d45 SHA512 3245d4bdab98d8385a370385b4f0f3038007740c3c6c3a2e30d64e7e4e83230b0d016bc55072fbff10c6e4e533633bf02dc3fcd9b7ed45c248b1136ea62b9c3b
 DIST awscli-1.16.278.tar.gz 1509613 BLAKE2B 71799c760f9396d18c86c1fd7da79a115ad8618cc7c0a7e7a57627d026f109c15023d35c743be38da816f30937ed8f43328f31cc61d1644200156aeb55799d2a SHA512 f84ba50ba7707007fc6c8af0eed2b152d20806632cb2b32d59e1a69812051a03aa4fd60c5a982439995d9f1ef746e50350d0129045e9305365ff957e74808e36
+DIST awscli-1.16.283.tar.gz 1545412 BLAKE2B 98d72a103718def5d2678c36f7654bcb378a5e4df05d17bd545f8d981c571ae9c09412644e233848035041d3fc3fa7fff9dd5b2f98e92b1d1d0fe6897fb17c7e SHA512 5539a665c8997c1fa637bb9cc133888483becc9cd5fe424e8947a83d4448de376b0d7ee3a7a63d07f90c649c956a12f544646795cf4a8a12a09880a05da0d3d1

diff --git a/dev-python/awscli/awscli-1.16.283.ebuild b/dev-python/awscli/awscli-1.16.283.ebuild
new file mode 100644
index 00000000000..c60519f9315
--- /dev/null
+++ b/dev-python/awscli/awscli-1.16.283.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
+
+inherit bash-completion-r1 distutils-r1
+
+DESCRIPTION="Universal Command Line Environment for AWS"
+HOMEPAGE="https://pypi.org/project/awscli/"
+#SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+SRC_URI="https://github.com/aws/aws-cli/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+# requires network access
+RESTRICT="test"
+
+RDEPEND="
+	>=dev-python/botocore-1.13.19[${PYTHON_USEDEP}]
+	<dev-python/colorama-0.3.9.0[${PYTHON_USEDEP}]
+	dev-python/docutils[${PYTHON_USEDEP}]
+	<dev-python/rsa-3.5.0.0[${PYTHON_USEDEP}]
+	>=dev-python/s3transfer-0.2.0[${PYTHON_USEDEP}]
+	<dev-python/pyyaml-5.2.0[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+BDEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		dev-python/mock[${PYTHON_USEDEP}]
+		dev-python/nose[${PYTHON_USEDEP}]
+	)
+"
+
+S="${WORKDIR}/aws-cli-${PV}"
+
+python_test() {
+	nosetests -vv || die
+}
+
+python_install_all() {
+	newbashcomp bin/aws_bash_completer aws
+
+	insinto /usr/share/zsh/site-functions
+	newins bin/aws_zsh_completer.sh _aws
+
+	distutils-r1_python_install_all
+
+	rm "${ED}"/usr/bin/{aws.cmd,aws_bash_completer,aws_zsh_completer.sh} || die
+}


             reply	other threads:[~2019-11-17 20:29 UTC|newest]

Thread overview: 82+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-11-17 20:29 Thomas Deutschmann [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-05-27  6:40 [gentoo-commits] repo/gentoo:master commit in: dev-python/awscli/ Michał Górny
2021-05-26  8:19 Michał Górny
2021-05-25  5:13 Michał Górny
2021-05-22 18:18 Michał Górny
2021-05-22 18:18 Michał Górny
2021-05-22 18:18 Michał Górny
2021-05-19  7:11 Michał Górny
2021-05-19  0:19 Sam James
2021-04-08 21:02 Piotr Karbowski
2021-03-30 11:04 Michał Górny
2021-03-26  7:45 Agostino Sarubbo
2021-02-07 18:03 Piotr Karbowski
2021-01-30  2:44 Robin H. Johnson
2020-11-26  8:40 Michał Górny
2020-11-26  8:24 Sam James
2020-11-25  9:23 Michał Górny
2020-10-31 22:04 Piotr Karbowski
2020-10-21  7:33 Piotr Karbowski
2020-09-19 15:57 Piotr Karbowski
2020-08-11 21:09 Piotr Karbowski
2020-06-01 19:28 Thomas Deutschmann
2020-05-31 19:37 Piotr Karbowski
2020-05-31 19:37 Piotr Karbowski
2020-05-31 19:37 Piotr Karbowski
2020-05-19  9:49 Thomas Deutschmann
2020-05-11 18:34 Thomas Deutschmann
2020-05-09 16:11 Thomas Deutschmann
2020-04-29 20:08 Mart Raudsepp
2020-04-29  8:54 Mart Raudsepp
2020-04-28 22:08 Thomas Deutschmann
2020-03-31 11:53 Thomas Deutschmann
2020-03-26 11:48 Michał Górny
2020-03-09 15:01 Thomas Deutschmann
2020-02-24 17:28 Thomas Deutschmann
2020-02-14 15:15 Thomas Deutschmann
2020-01-22 23:40 Thomas Deutschmann
2020-01-22 22:00 Thomas Deutschmann
2020-01-22 22:00 Thomas Deutschmann
2020-01-18 18:48 Michał Górny
2020-01-05 23:20 Thomas Deutschmann
2019-12-22 22:16 Thomas Deutschmann
2019-12-11 15:05 Thomas Deutschmann
2019-11-29 19:42 Thomas Deutschmann
2019-11-10 16:35 Thomas Deutschmann
2019-10-17 16:52 Thomas Deutschmann
2019-09-06 16:39 Thomas Deutschmann
2019-09-06 15:09 Thomas Deutschmann
2019-08-16 20:42 Thomas Deutschmann
2019-08-09 22:01 Thomas Deutschmann
2019-08-09 21:47 Thomas Deutschmann
2019-06-29 14:47 Thomas Deutschmann
2019-04-30 10:26 Thomas Deutschmann
2019-03-15 23:17 Thomas Deutschmann
2019-03-15 23:17 Thomas Deutschmann
2019-03-15 17:06 Patrick Lauer
2019-02-14 18:45 Thomas Deutschmann
2019-01-26  1:03 Zac Medico
2019-01-25 23:00 Zac Medico
2019-01-18  1:49 Thomas Deutschmann
2018-12-22 19:22 Thomas Deutschmann
2018-12-10 16:45 Thomas Deutschmann
2018-11-27 20:14 Thomas Deutschmann
2018-11-27 20:14 Thomas Deutschmann
2018-11-21 20:05 Thomas Deutschmann
2018-06-27 20:32 Pacho Ramos
2018-04-30  6:06 Patrick Lauer
2018-03-05  7:10 Patrick Lauer
2017-12-28  7:25 Patrick Lauer
2017-12-24 15:23 Patrick Lauer
2017-09-24 19:45 Patrick Lauer
2017-09-16 18:27 Patrick Lauer
2017-08-22 21:41 Michał Górny
2017-05-02  5:50 Patrick Lauer
2017-04-25 18:05 Patrick Lauer
2016-10-01 20:15 Patrick Lauer
2016-08-30  9:36 Patrick Lauer
2016-08-09 10:48 Patrick Lauer
2016-07-31 18:13 Patrick Lauer
2016-07-17 15:44 Patrick Lauer
2016-06-28 12:29 Patrick Lauer
2016-06-20  9:43 Patrick Lauer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1574022584.03ba0dedf670906ab5cf94ecccf5a56e2806e8f9.whissi@gentoo \
    --to=whissi@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox