Gentoo Archives: gentoo-commits

From: "Sergey Popov (pinkbyte)" <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/ansible: ChangeLog ansible-1.8.1-r1.ebuild ansible-1.8.1.ebuild
Date: Tue, 02 Dec 2014 07:57:31
Message-Id: 20141202075726.5AB43B579@oystercatcher.gentoo.org
1 pinkbyte 14/12/02 07:57:26
2
3 Modified: ChangeLog
4 Added: ansible-1.8.1-r1.ebuild
5 Removed: ansible-1.8.1.ebuild
6 Log:
7 Revision bump: use proper tarball with all modules, fix bug #531380, thanks to Vadim Kuznetsov for discovering this issue. Drop old revision
8
9 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
10
11 Revision Changes Path
12 1.54 app-admin/ansible/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/ansible/ChangeLog?rev=1.54&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/ansible/ChangeLog?rev=1.54&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/ansible/ChangeLog?r1=1.53&r2=1.54
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-admin/ansible/ChangeLog,v
21 retrieving revision 1.53
22 retrieving revision 1.54
23 diff -u -r1.53 -r1.54
24 --- ChangeLog 30 Nov 2014 13:32:33 -0000 1.53
25 +++ ChangeLog 2 Dec 2014 07:57:26 -0000 1.54
26 @@ -1,6 +1,13 @@
27 # ChangeLog for app-admin/ansible
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-admin/ansible/ChangeLog,v 1.53 2014/11/30 13:32:33 jlec Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-admin/ansible/ChangeLog,v 1.54 2014/12/02 07:57:26 pinkbyte Exp $
31 +
32 +*ansible-1.8.1-r1 (02 Dec 2014)
33 +
34 + 02 Dec 2014; Sergey Popov <pinkbyte@g.o> -ansible-1.8.1.ebuild,
35 + +ansible-1.8.1-r1.ebuild:
36 + Revision bump: use proper tarball with all modules, fix bug #531380, thanks
37 + to Vadim Kuznetsov for discovering this issue. Drop old revision
38
39 *ansible-1.8.1 (30 Nov 2014)
40
41
42
43
44 1.1 app-admin/ansible/ansible-1.8.1-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/ansible/ansible-1.8.1-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/ansible/ansible-1.8.1-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: ansible-1.8.1-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-admin/ansible/ansible-1.8.1-r1.ebuild,v 1.1 2014/12/02 07:57:26 pinkbyte Exp $
54
55 EAPI=5
56
57 PYTHON_COMPAT=( python2_7 )
58
59 inherit distutils-r1 readme.gentoo
60
61 DESCRIPTION="Radically simple deployment, model-driven configuration management, and command execution framework"
62 HOMEPAGE="http://ansible.com/"
63 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
64
65 LICENSE="GPL-3"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE="test"
69
70 DEPEND="
71 test? (
72 dev-python/nose[${PYTHON_USEDEP}]
73 dev-python/passlib[${PYTHON_USEDEP}]
74 dev-vcs/git
75 )"
76 RDEPEND="
77 dev-python/jinja[${PYTHON_USEDEP}]
78 dev-python/pyyaml[${PYTHON_USEDEP}]
79 net-misc/sshpass
80 virtual/ssh
81 "
82
83 python_test() {
84 make tests || die "tests failed"
85 }
86
87 python_install_all() {
88 distutils-r1_python_install_all
89
90 doman docs/man/man1/*.1
91
92 insinto /usr/share/${PN}
93 doins -r examples
94
95 newenvd "${FILESDIR}"/${PN}.env 95ansible
96 }
97
98 src_install() {
99 distutils-r1_src_install
100 readme.gentoo_create_doc
101 }