40 lines
910 B
Bash
40 lines
910 B
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-admin/ansible/ansible-1.8.4.ebuild,v 1.2 2015/04/08 15:18:14 ago Exp $
|
|
|
|
EAPI=5
|
|
|
|
PYTHON_COMPAT=( python2_7 )
|
|
|
|
inherit distutils-r1 readme.gentoo
|
|
|
|
DESCRIPTION="Radically simple deployment, model-driven configuration management, and command execution framework"
|
|
HOMEPAGE="http://ansible.com/"
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~x86 ~x64-macos"
|
|
|
|
RDEPEND="
|
|
dev-python/jinja[${PYTHON_USEDEP}]
|
|
dev-python/pyyaml[${PYTHON_USEDEP}]
|
|
net-misc/sshpass
|
|
virtual/ssh
|
|
"
|
|
|
|
python_install_all() {
|
|
distutils-r1_python_install_all
|
|
|
|
doman docs/man/man1/*.1
|
|
|
|
insinto /usr/share/${PN}
|
|
doins -r examples
|
|
|
|
newenvd "${FILESDIR}"/${PN}.env 95ansible
|
|
}
|
|
|
|
src_install() {
|
|
distutils-r1_src_install
|
|
readme.gentoo_create_doc
|
|
}
|