pentoo-overlay/app-forensics/s3tk/s3tk-9999.ebuild
2019-07-08 01:45:54 +03:00

32 lines
741 B
Bash

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
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
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}"