diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2013-08-24 05:22:39 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2013-08-24 05:22:39 +0000 |
commit | 605be70552e88fdb2d0ee1074cc26c8d4b832ee4 (patch) | |
tree | 58eae96c3bcc83d0e5a36ddf0f50adff57478765 /app-admin/ansible | |
parent | Bump (diff) | |
download | gentoo-2-605be70552e88fdb2d0ee1074cc26c8d4b832ee4.tar.gz gentoo-2-605be70552e88fdb2d0ee1074cc26c8d4b832ee4.tar.bz2 gentoo-2-605be70552e88fdb2d0ee1074cc26c8d4b832ee4.zip |
Drop vulnerable versions, wrt bug #475602
(Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
Diffstat (limited to 'app-admin/ansible')
-rw-r--r-- | app-admin/ansible/ChangeLog | 6 | ||||
-rw-r--r-- | app-admin/ansible/ansible-1.0.ebuild | 66 | ||||
-rw-r--r-- | app-admin/ansible/ansible-1.1.ebuild | 60 |
3 files changed, 5 insertions, 127 deletions
diff --git a/app-admin/ansible/ChangeLog b/app-admin/ansible/ChangeLog index 7321a238c1b9..c62048f370f4 100644 --- a/app-admin/ansible/ChangeLog +++ b/app-admin/ansible/ChangeLog @@ -1,6 +1,10 @@ # 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.22 2013/07/20 10:17:05 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/ansible/ChangeLog,v 1.23 2013/08/24 05:22:39 pinkbyte Exp $ + + 24 Aug 2013; Sergey Popov <pinkbyte@gentoo.org> -ansible-1.0.ebuild, + -ansible-1.1.ebuild: + Drop vulnerable versions, wrt bug #475602 20 Jul 2013; Agostino Sarubbo <ago@gentoo.org> ansible-1.2.1.ebuild: Stable for x86, wrt bug #475602 diff --git a/app-admin/ansible/ansible-1.0.ebuild b/app-admin/ansible/ansible-1.0.ebuild deleted file mode 100644 index c66635eb81da..000000000000 --- a/app-admin/ansible/ansible-1.0.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# 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.0.ebuild,v 1.3 2013/05/25 11:11:52 ago Exp $ - -EAPI="5" - -PYTHON_COMPAT=( python{2_6,2_7} ) - -inherit distutils-r1 - -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="examples test" - -DEPEND="test? ( - dev-python/nose - dev-vcs/git - )" -RDEPEND=" - dev-python/jinja - dev-python/pyyaml - dev-python/paramiko - net-misc/sshpass - virtual/ssh -" - -src_prepare() { - distutils-r1_src_prepare - # Skip tests which need ssh access - sed -i 's:PYTHONPATH=./lib nosetests.*:\0 -e \\(TestPlayBook.py\\|TestRunner.py\\):' Makefile || die "sed failed" -} - -src_test() { - make tests -} - -src_install() { - distutils-r1_src_install - - insinto /usr/share/ansible - doins library/* - - doman docs/man/man1/*.1 - if use examples; then - dodoc -r examples - docompress -x /usr/share/doc/${PF}/examples - fi - # Hint: do not install example config files into /etc - # let this choice to user - - newenvd "${FILESDIR}"/${PN}.env 95ansible -} - -pkg_postinst() { - if [[ -z ${REPLACING_VERSIONS} ]] ; then - elog "You can define parameters through shell variables OR use config files" - elog "Examples of config files installed in /usr/share/doc/${P}/examples" - elog "You have to create ansible hosts file!" - elog "More info on http://ansible.cc/docs/gettingstarted.html" - fi -} diff --git a/app-admin/ansible/ansible-1.1.ebuild b/app-admin/ansible/ansible-1.1.ebuild deleted file mode 100644 index 8b93dc827250..000000000000 --- a/app-admin/ansible/ansible-1.1.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# 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.1.ebuild,v 1.1 2013/05/25 08:03:41 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="examples 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/${P}/examples\n\n -You have to create ansible hosts file!\n -More info on http://ansible.cc/docs/gettingstarted.html" - -src_prepare() { - distutils-r1_src_prepare - # Skip tests which need ssh access - sed -i 's:PYTHONPATH=./lib nosetests.*:\0 -e \\(TestPlayBook.py\\|TestRunner.py\\):' Makefile || die "sed failed" -} - -src_test() { - make tests || die "tests failed" -} - -src_install() { - distutils-r1_src_install - readme.gentoo_create_doc - - doman docs/man/man1/*.1 - if use examples; then - dodoc -r examples - docompress -x /usr/share/doc/${PF}/examples - fi - # Hint: do not install example config files into /etc - # let this choice to user - - newenvd "${FILESDIR}"/${PN}.env 95ansible -} |