25 lines
571 B
Bash
25 lines
571 B
Bash
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=6
|
|
|
|
PYTHON_COMPAT=( python2_7 )
|
|
PYTHON_REQ_USE="xml"
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Command line client for Amazon S3"
|
|
HOMEPAGE="http://s3tools.org/s3cmd"
|
|
SRC_URI="mirror://sourceforge/s3tools/${P/_/-}.tar.gz"
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
|
|
KEYWORDS="amd64 x86 ~x64-macos"
|
|
IUSE=""
|
|
|
|
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
|
RDEPEND="dev-python/python-dateutil[${PYTHON_USEDEP}]
|
|
dev-python/python-magic[${PYTHON_USEDEP}]"
|
|
|
|
S="$WORKDIR/${P/_/-}"
|