1
0
Fork 0

Remove app-admin/aws-cli

This commit is contained in:
Stefan Reimer 2016-09-09 16:07:54 -07:00
parent af32a6b13f
commit 1bdbdfc235
2 changed files with 0 additions and 42 deletions

View File

@ -1,2 +0,0 @@
DIST aws-cli-1.10.63.tar.gz 891351 SHA256 4b173b370d3c76091126736633369f028ad1c62287e65824b1d152fe40708689 SHA512 323e7edacbe2223ac561a813d9c47818cddb8bac2fab18198727b2df8055f2e4edb284de222407de8df721da8571c0e8d616dd333284653749755d1986b59b8e WHIRLPOOL f4e583a24ce91cefc7bbaa6b8162e48f02d74d09a9ff2a9a1e6b20ae00155edacf8dada27617ab843704d596e789116f3fba8359564b93727a7143b88be4fdc7
EBUILD aws-cli-1.10.63.ebuild 1101 SHA256 4749b4f77e6f848b9b59afd39f23b3d11d91b0ffa2ec2ad086ecef4f1c7bcd00 SHA512 c4d6452b6a5465b891ec5d5688906379b36fb36cb5c80dec8371c5ba6813831eb8b7d0481e288867e920ca372e6494deb8129aeea37d8789d7e0906293c925e4 WHIRLPOOL 6895eed8601fc1ebbbb6df6bf62ae4e81042d2bdd9e5e448ceee534bad3ce48abb86d911c10e68ab4957bcb0b7323ba4e73043777efed7ae7e58649c21d83c29

View File

@ -1,40 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} )
inherit distutils-r1
DESCRIPTION="Universal Command Line Interface for Amazon Web Services"
HOMEPAGE="https://github.com/aws/aws-cli"
SRC_URI="https://github.com/aws/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RDEPEND="dev-python/botocore[${PYTHON_USEDEP}]
dev-python/colorama[${PYTHON_USEDEP}]
dev-python/docutils[${PYTHON_USEDEP}]
dev-python/rsa[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
test? ( dev-python/nose[${PYTHON_USEDEP}] )"
src_prepare() {
# Unbundled in dev-python/botocore
grep -rl 'botocore.vendored' | xargs \
sed -i -e "/import requests/s/from botocore.vendored //" \
-e "/^from/s/botocore\.vendored\.//" \
-e "s/^from botocore\.vendored //" \
-e "s/'botocore\.vendored\./'/" \
|| die "sed failed"
}
python_test() {
# Only run unit tests
nosetests tests/unit || die "Tests fail with ${EPYTHON}"
}