You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.1 KiB
46 lines
1.1 KiB
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python{2_7,3_{5,6,7}} )
|
|
|
|
inherit distutils-r1 eutils
|
|
|
|
DESCRIPTION="Filesystem abstraction layer"
|
|
HOMEPAGE="
|
|
https://pypi.org/project/fs/
|
|
https://docs.pyfilesystem.org
|
|
https://www.willmcgugan.com/tag/fs/"
|
|
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
|
|
IUSE="test"
|
|
|
|
RDEPEND="
|
|
>=dev-python/appdirs-1.4.3[${PYTHON_USEDEP}]
|
|
dev-python/pytz[${PYTHON_USEDEP}]
|
|
>=dev-python/six-1.10[${PYTHON_USEDEP}]
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
test? (
|
|
dev-python/nose[${PYTHON_USEDEP}]
|
|
dev-python/mock[${PYTHON_USEDEP}]
|
|
dev-python/pyftpdlib[${PYTHON_USEDEP}]
|
|
dev-python/psutil[${PYTHON_USEDEP}]
|
|
dev-python/unittest2[${PYTHON_USEDEP}]
|
|
)"
|
|
|
|
python_test() {
|
|
esetup.py test
|
|
}
|
|
|
|
pkg_postinst() {
|
|
optfeature "S3 support" dev-python/boto
|
|
optfeature "SFTP support" dev-python/paramiko
|
|
optfeature "Browser support" dev-python/wxpython
|
|
}
|