forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST awscli-1.10.38.tar.gz 471647 SHA256 56fc0d938aa1ee6ec71c9e7f6f0d7b96614419ccd7c7edf99a8dc071ad26a105 SHA512 bb4dd3547083ef80bac4461a96daad254a70754611336233be3111ff32897c6197966ba17e4f623eeabd18abe78723a0b50abd89caab341faffe7d2e3c57aab4 WHIRLPOOL eb17ed85e6ece0b0628e6cd0f5722b0c97e25ad54518289316da96f650d4474a466bbc08577bc5232529f6ddfd82cb536bf5d76e079c9cec5b25dc948de13d74 | ||
DIST awscli-1.10.42.tar.gz 474475 SHA256 32198bc80438f11f239ac12ce727b21b32e00cfddc6a7e065de8fbfcdd593866 SHA512 d122c322706e7efc30b9db77db9a92f3426d2dab08fb852a1283f7da57d5235a5dbc740d4732bdada1351d4322f04e919290f7f696ae5417cd66b0bf90172c23 WHIRLPOOL 38a9c2b5e46fdc29ae5dc1e054072ebf7f3635d05751e9239b73697999725c536bac34f63e7d61351f833f4847dc63537d24fd85e0d14177be41caa1979e4932 | ||
DIST awscli-1.10.47.tar.gz 474746 SHA256 176ec3e5783ed3e9291da5e9b6fc100cb4550b843bb0bb7201e780e4174cbf70 SHA512 9869435462d8b6e48558bee87872fde0e432ce9d7e30cd3fe638cb11ab82b7f9cb49f36e355dd674c62395a314f32ee960617aa2b6d527be5ea1c17bb7deef0c WHIRLPOOL 9e42da9b74cffa5995e96ef8d02439b1243c87d54f0559ba72d721e367e291b484a3db05733bd4c674a9a0a34bbf47387e539f1959f29197513b5b8df00f80ab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
PYTHON_COMPAT=( python{2_7,3_4,3_5} ) | ||
|
||
inherit distutils-r1 | ||
|
||
DESCRIPTION="Universal Command Line Environment for AWS" | ||
HOMEPAGE="http://pypi.python.org/pypi/awscli" | ||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
IUSE="" | ||
|
||
RDEPEND=" | ||
dev-python/botocore[${PYTHON_USEDEP}] | ||
<=dev-python/colorama-0.3.3[${PYTHON_USEDEP}] | ||
dev-python/docutils[${PYTHON_USEDEP}] | ||
<=dev-python/rsa-3.5.0[${PYTHON_USEDEP}] | ||
dev-python/s3transfer[${PYTHON_USEDEP}] | ||
" | ||
DEPEND="${RDEPEND} | ||
dev-python/setuptools[${PYTHON_USEDEP}] | ||
" |