forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-admin/ansible: bup to 1.x release
Package-Manager: portage-2.2.26
- Loading branch information
1 parent
a4a87f6
commit 57c30d7
Showing
2 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
DIST ansible-1.9.4.tar.gz 937120 SHA256 972c2face49f1577bd0ff7989440bfe2820e66fb10d7579915cc536bccfa6fe3 SHA512 53ef5b3390be620cedc92687c7c9853c42f38547494f9b77056d5ea48ccd8f43d193648a7f4569fcba5afad343a9202b123296ab47c8cd02eecfe455d83b9586 WHIRLPOOL 0b88a27f690ff940eae1969ff163d8f8c26df038d2e9aa76694bdba1448ac9cbe8123795d0787e528c6d22cf66cc01d6b89add8e3e97bbb107a3f1a96860fd8e | ||
DIST ansible-1.9.5.tar.gz 941331 SHA256 6ba3539d98d993089bea0eb4ee83a04608aff900086040f11a77f2124dccbd8e SHA512 ad576db40c779c8465f19e10cd540771d4bac530c9822bd33ea0989e95b69cee0b057df0071a45dcb1c17d315a2bc88b2d546a220b8952621b1af60d20e09e1b WHIRLPOOL 5b5cf9e85204b873b64e3e7d571b1ae6a29d924e4dcb22cd63b1a116d5497cc7896c896deb281fcc3fefdcd4fcb59824a7b1d8aac8f4ba24822c02c308dfdd12 | ||
DIST ansible-2.0.0.1.tar.gz 1524249 SHA256 1085c1fae3b59f8e55a64b949489f1ddcd811a0c32d9df8ac18abf44a430f3b5 SHA512 2823252a7922c417d8495709c53db85d33ae925120c3572acafe4e11c4d5ba5b9acdec72414606eb9ef4f66ca15db8fe52e0f14623ceef5165a30eb4e249d136 WHIRLPOOL 0b4ba3a632d40413c61b7bd14315f14b64e459cdebd450230ed75711f97bec04ee8a8cc4c4a79e42dfd62654e0f8ae5ffa0fdea40d3874f199a16e45d60c0937 | ||
DIST ansible-2.0.0.2.tar.gz 1497944 SHA256 27db0b99113fab85b1430c361c7790a0aa7f5c614c9af13362e2adbba07e5828 SHA512 bf034384849d3f065ff77982e2e47a94727fc2982f0dac8d67efda2646dcdbd52ba9cc3ddfcdb9cd8210af0935f6f42946cc8ddc659d62cccd670e5d55c7dfa0 WHIRLPOOL bbf15cbdc50bfe2c33e22a4c9139663c9a622d70f59450953f85c088daa6fed88fbe4f46933c8998abdec20fed44846838a0e5a2ada76710c438f3c9769e15be | ||
DIST ansible-2.0.1.0.tar.gz 1510155 SHA256 cddc4fa6af4c1be6cd1d6634de1bd0397abad921c76b32cab6722c042744ee5d SHA512 ed126341ddae2be8f55984d7bc8b6232239f59a56f8028f19f8e2ee25096b3bba934b88b2ee72b53bbbdd245ec51a10dfbc3ffed9e0bc9f13444557ff490d6df WHIRLPOOL e5fbe9326ff34a03f6189b50a7d7984e11c0ef32538e73364da06311e587e85f1a0d8fd681f1bddd7155459270ea4f8b2ade255f9bb963e65d99cf55734d58bb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
PYTHON_COMPAT=( python2_7 ) | ||
|
||
inherit distutils-r1 eutils readme.gentoo | ||
|
||
DESCRIPTION="Simple 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" | ||
IUSE="test" | ||
|
||
RDEPEND=" | ||
dev-python/httplib2[${PYTHON_USEDEP}] | ||
dev-python/jinja[${PYTHON_USEDEP}] | ||
dev-python/keyczar[${PYTHON_USEDEP}] | ||
>=dev-python/pycrypto-2.6[${PYTHON_USEDEP}] | ||
dev-python/pyyaml[${PYTHON_USEDEP}] | ||
dev-python/setuptools[${PYTHON_USEDEP}] | ||
net-misc/sshpass | ||
virtual/ssh | ||
" | ||
DEPEND=" | ||
dev-python/setuptools[${PYTHON_USEDEP}] | ||
test? ( | ||
${RDEPEND} | ||
dev-python/mock[${PYTHON_USEDEP}] | ||
dev-python/nose[${PYTHON_USEDEP}] | ||
dev-python/passlib[${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() { | ||
EXAMPLES=( examples ) | ||
distutils-r1_python_install_all | ||
|
||
doman docs/man/man1/*.1 | ||
|
||
newenvd "${FILESDIR}"/${PN}.env 95ansible | ||
} | ||
|
||
src_install() { | ||
distutils-r1_src_install | ||
readme.gentoo_create_doc | ||
} | ||
|
||
pkg_postinst() { | ||
optfeature "Alternative ssh transport" dev-python/paramiko | ||
} |