diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2013-10-11 11:30:57 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2013-10-11 11:30:57 +0000 |
commit | 1430b74b5e76432d99d7a7daf84df80d1303ac9d (patch) | |
tree | d47479060a59a594e15c662efc81f2ea7c44d0ce /app-admin/ansible | |
parent | Version bump, wrt bug #487420 (diff) | |
download | gentoo-2-1430b74b5e76432d99d7a7daf84df80d1303ac9d.tar.gz gentoo-2-1430b74b5e76432d99d7a7daf84df80d1303ac9d.tar.bz2 gentoo-2-1430b74b5e76432d99d7a7daf84df80d1303ac9d.zip |
Version bump, wrt bug #486098. Sync live ebuild
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
Diffstat (limited to 'app-admin/ansible')
-rw-r--r-- | app-admin/ansible/ChangeLog | 8 | ||||
-rw-r--r-- | app-admin/ansible/ansible-1.3.3.ebuild | 62 | ||||
-rw-r--r-- | app-admin/ansible/ansible-9999.ebuild | 4 |
3 files changed, 71 insertions, 3 deletions
diff --git a/app-admin/ansible/ChangeLog b/app-admin/ansible/ChangeLog index f5d13893aabe..32fa38d978f0 100644 --- a/app-admin/ansible/ChangeLog +++ b/app-admin/ansible/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-admin/ansible # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/ansible/ChangeLog,v 1.26 2013/09/14 10:13:37 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/ansible/ChangeLog,v 1.27 2013/10/11 11:30:57 pinkbyte Exp $ + +*ansible-1.3.3 (11 Oct 2013) + + 11 Oct 2013; Sergey Popov <pinkbyte@gentoo.org> +ansible-1.3.3.ebuild, + ansible-9999.ebuild: + Version bump, wrt bug #486098. Sync live ebuild 14 Sep 2013; Agostino Sarubbo <ago@gentoo.org> ansible-1.2.3.ebuild: Stable for x86, wrt bug #482152 diff --git a/app-admin/ansible/ansible-1.3.3.ebuild b/app-admin/ansible/ansible-1.3.3.ebuild new file mode 100644 index 000000000000..12eebb5971a8 --- /dev/null +++ b/app-admin/ansible/ansible-1.3.3.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/ansible/ansible-1.3.3.ebuild,v 1.1 2013/10/11 11:30:57 pinkbyte Exp $ + +EAPI="5" + +PYTHON_COMPAT=( python{2_6,2_7} ) + +inherit distutils-r1 readme.gentoo + +DESCRIPTION="Radically simple deployment, model-driven configuration management, and command execution framework" +HOMEPAGE="http://ansible.cc/" +SRC_URI="https://github.com/ansible/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +KEYWORDS="~amd64 ~x86" +LICENSE="GPL-3" +SLOT="0" +IUSE="test" + +DEPEND="test? ( + dev-python/nose + dev-vcs/git + )" +RDEPEND=" + dev-python/jinja + dev-python/pyyaml + dev-python/paramiko + net-misc/sshpass + virtual/ssh +" + +DOC_CONTENTS="You can define parameters through shell variables OR use config files +Examples of config files installed in /usr/share/doc/${PF}/examples\n\n +You have to create ansible hosts file!\n +More info on http://ansible.cc/docs/gettingstarted.html" + +python_prepare_all() { + distutils-r1_python_prepare_all + # Skip tests which need ssh access + sed -i 's:$(NOSETESTS) -d -v:\0 -e \\(TestPlayBook.py\\|TestRunner.py\\):' Makefile || die "sed failed" +} + +python_test() { + make tests || die "tests failed" +} + +python_install_all() { + distutils-r1_python_install_all + + doman docs/man/man1/*.1 + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples + # Hint: do not install example config files into /etc + # let this choice to user + + newenvd "${FILESDIR}"/${PN}.env 95ansible +} + +src_install() { + distutils-r1_src_install + readme.gentoo_create_doc +} diff --git a/app-admin/ansible/ansible-9999.ebuild b/app-admin/ansible/ansible-9999.ebuild index b9bc3224f97a..0de5ff0ad0a9 100644 --- a/app-admin/ansible/ansible-9999.ebuild +++ b/app-admin/ansible/ansible-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/ansible/ansible-9999.ebuild,v 1.12 2013/09/03 15:11:13 pinkbyte Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/ansible/ansible-9999.ebuild,v 1.13 2013/10/11 11:30:57 pinkbyte Exp $ EAPI="5" @@ -33,7 +33,7 @@ RDEPEND=" " DOC_CONTENTS="You can define parameters through shell variables OR use config files -Examples of config files installed in /usr/share/doc/${P}/examples\n\n +Examples of config files installed in /usr/share/doc/${PF}/examples\n\n You have to create ansible hosts file!\n More info on http://ansible.cc/docs/gettingstarted.html" |