58 lines
1.5 KiB
Bash
58 lines
1.5 KiB
Bash
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=6
|
|
|
|
PYTHON_COMPAT=( python2_7 )
|
|
|
|
inherit distutils-r1 eutils versionator
|
|
|
|
DESCRIPTION="Model-driven deployment, config management, and command execution framework"
|
|
HOMEPAGE="http://ansible.com/"
|
|
BLAKE2B_HASH="48/da/5e51cf931e4c7849ba698654877e2951ade8f842f28f0c904453a1d317d7"
|
|
SRC_URI="https://pypi.python.org/packages/${BLAKE2B_HASH}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86 ~x64-macos"
|
|
IUSE="keyczar test"
|
|
|
|
RDEPEND="
|
|
keyczar? ( dev-python/keyczar[${PYTHON_USEDEP}] )
|
|
dev-python/paramiko[${PYTHON_USEDEP}]
|
|
dev-python/jinja[${PYTHON_USEDEP}]
|
|
dev-python/pyyaml[${PYTHON_USEDEP}]
|
|
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
>=dev-python/pycrypto-2.6[${PYTHON_USEDEP}]
|
|
dev-python/httplib2[${PYTHON_USEDEP}]
|
|
dev-python/six[${PYTHON_USEDEP}]
|
|
net-misc/sshpass
|
|
virtual/ssh
|
|
"
|
|
DEPEND="
|
|
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
>=dev-python/packaging-16.6[${PYTHON_USEDEP}]
|
|
test? (
|
|
${RDEPEND}
|
|
dev-python/nose[${PYTHON_USEDEP}]
|
|
>=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
|
|
<dev-python/mock-1.1[${PYTHON_USEDEP}]
|
|
dev-python/passlib[${PYTHON_USEDEP}]
|
|
dev-python/coverage[${PYTHON_USEDEP}]
|
|
dev-python/unittest2[${PYTHON_USEDEP}]
|
|
dev-vcs/git
|
|
)"
|
|
|
|
# not included in release tarball
|
|
RESTRICT="test"
|
|
|
|
python_test() {
|
|
nosetests -d -w test/units -v --with-coverage --cover-package=ansible --cover-branches || die
|
|
}
|
|
|
|
python_install_all() {
|
|
distutils-r1_python_install_all
|
|
|
|
doman docs/man/man1/*.1
|
|
}
|