# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 PYTHON_COMPAT=( python2_7 ) inherit distutils-r1 DESCRIPTION="A security toolkit for Amazon S3" HOMEPAGE="https://github.com/ankane/s3tk" LICENSE="MIT" if [[ ${PV} == *9999 ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/ankane/s3tk" else SRC_URI="https://github.com/ankane/s3tk/archive/v${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64 ~x86" fi RESTRICT="mirror" SLOT="0" DOCS=( CHANGELOG.md README.md ) DEPEND="${PYTHON_DEPS} dev-python/boto3[${PYTHON_USEDEP}] dev-python/clint[${PYTHON_USEDEP}] dev-python/click[${PYTHON_USEDEP}] dev-python/joblib[${PYTHON_USEDEP}] dev-python/pytest[${PYTHON_USEDEP}]" RDEPEND="${DEPEND}"