| Summary: | app-admin/ansible - add support for external libraries | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | Tomáš Mózes <hydrapolic> |
| Component: | Current packages | Assignee: | Gentoo Linux bug wranglers <bug-wranglers> |
| Status: | RESOLVED INVALID | ||
| Severity: | normal | ||
| Priority: | Normal | ||
| Version: | unspecified | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
|
Description
Tomáš Mózes
2015-03-13 10:49:48 UTC
--- /usr/portage/app-admin/ansible/ansible-1.8.4.ebuild 2015-02-20 08:46:57.000000000 +0100
+++ ansible-1.8.4-r1.ebuild 2015-03-13 11:59:16.517301179 +0100
@@ -15,12 +15,15 @@
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~x64-macos"
+IUSE="postgres redis"
RDEPEND="
dev-python/jinja[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
net-misc/sshpass
virtual/ssh
+ postgres? ( dev-python/psycopg[${PYTHON_USEDEP}] )
+ redis? ( dev-python/redis-py[${PYTHON_USEDEP}] )
"
python_install_all() {
The libs are needed on the client side, so this would only help locally deployed stuff, can be ommited. |