Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/ansible/
Date: Fri, 06 Mar 2020 17:07:24
Message-Id: 1583514436.9e0d66696f5f1e2430250c65b36e902155dc1506.prometheanfire@gentoo
1 commit: 9e0d66696f5f1e2430250c65b36e902155dc1506
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 6 17:06:55 2020 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 6 17:07:16 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e0d6669
7
8 app-admin/ansible: 2.9.6 bump
9
10 Package-Manager: Portage-2.3.89, Repoman-2.3.20
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 app-admin/ansible/Manifest | 1 +
14 app-admin/ansible/ansible-2.9.6.ebuild | 68 ++++++++++++++++++++++++++++++++++
15 2 files changed, 69 insertions(+)
16
17 diff --git a/app-admin/ansible/Manifest b/app-admin/ansible/Manifest
18 index 435d4681672..c47eae9ba64 100644
19 --- a/app-admin/ansible/Manifest
20 +++ b/app-admin/ansible/Manifest
21 @@ -1,2 +1,3 @@
22 DIST ansible-2.9.4.tar.gz 14170264 BLAKE2B e230837360d29df460906d118b3c2ebb9a9dc1ac2a4427809a16716e67a79db8e737ed1beca757bd8a75b631c8cb6c26e58b1caeaaeb613731d63031f1e4e34e SHA512 21020548100fc31b59d4ee1b461f2a14359f2f18752d431cd041eb987c8c8b308f1aa1687461a9b3f5a086485b77b3a38c8f006b942cc24cb2157b45e6582822
23 DIST ansible-2.9.5.tar.gz 14186885 BLAKE2B c64fb384ab55c5b9cca753319fba911b8a40d634b59998f2e4c65ccafaa536788f3ac8c18a45a4b0d322ecca9b7fa2c580311a35a202ad70c2de2157ab04bfaf SHA512 cd2ce807b3136e2c02856339ea910b0a5cae8ca946da804ed7d3ec5725d3eff0fe5b4bd8527b2a17d6f3109e16859d52045b50f2ffd21169b30768e65b813407
24 +DIST ansible-2.9.6.tar.gz 14201258 BLAKE2B 29da78035291a252f215a49945e82d9f3598a91c9c8993c69623668e9f8a667882330d51c75e1ae27ee5242f4a6320ee947af338c4c38e23f4f9d04cf19364ca SHA512 7111fd72b4e029b2f661bfb849b4323b69ea796f8a069ad3120e8de390effa670180c69ca0fd5e0a1c2e444db6d574a52d530a2b0343c76cd81ba963b3c3a7cb
25
26 diff --git a/app-admin/ansible/ansible-2.9.6.ebuild b/app-admin/ansible/ansible-2.9.6.ebuild
27 new file mode 100644
28 index 00000000000..73f6fb55df5
29 --- /dev/null
30 +++ b/app-admin/ansible/ansible-2.9.6.ebuild
31 @@ -0,0 +1,68 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python3_{6,7} )
38 +
39 +inherit distutils-r1 eutils
40 +
41 +DESCRIPTION="Model-driven deployment, config management, and command execution framework"
42 +HOMEPAGE="https://ansible.com/"
43 +SRC_URI="https://releases.ansible.com/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="GPL-3"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~x64-macos"
48 +IUSE="doc test"
49 +RESTRICT="test"
50 +
51 +RDEPEND="
52 + dev-python/paramiko[${PYTHON_USEDEP}]
53 + dev-python/jinja[${PYTHON_USEDEP}]
54 + dev-python/pyyaml[${PYTHON_USEDEP}]
55 + dev-python/setuptools[${PYTHON_USEDEP}]
56 + dev-python/cryptography[${PYTHON_USEDEP}]
57 + dev-python/httplib2[${PYTHON_USEDEP}]
58 + dev-python/six[${PYTHON_USEDEP}]
59 + dev-python/netaddr[${PYTHON_USEDEP}]
60 + dev-python/pexpect[${PYTHON_USEDEP}]
61 + net-misc/sshpass
62 + virtual/ssh
63 +"
64 +DEPEND="
65 + dev-python/setuptools[${PYTHON_USEDEP}]
66 + >=dev-python/packaging-16.6[${PYTHON_USEDEP}]
67 + doc? (
68 + dev-python/sphinx[${PYTHON_USEDEP}]
69 + dev-python/sphinx-notfound-page[${PYTHON_USEDEP}]
70 + >=dev-python/pygments-2.4.0[${PYTHON_USEDEP}]
71 + )
72 + test? (
73 + ${RDEPEND}
74 + dev-python/nose[${PYTHON_USEDEP}]
75 + >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
76 + dev-python/passlib[${PYTHON_USEDEP}]
77 + dev-python/coverage[${PYTHON_USEDEP}]
78 + dev-python/unittest2[${PYTHON_USEDEP}]
79 + dev-vcs/git
80 + )"
81 +
82 +python_compile_all() {
83 + if use doc; then
84 + cd docs/docsite || die
85 + export CPUS=4
86 + emake -f Makefile.sphinx html
87 + fi
88 +}
89 +
90 +python_test() {
91 + nosetests -d -w test/units -v --with-coverage --cover-package=ansible --cover-branches || die
92 +}
93 +
94 +python_install_all() {
95 + use doc && local HTML_DOCS=( docs/docsite/_build/html/. )
96 + distutils-r1_python_install_all
97 +
98 + dodoc -r examples
99 +}