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, 04 Sep 2020 02:35:18
Message-Id: 1599186908.212c3355f0e5e9dcf091bd986760bd3813c28634.prometheanfire@gentoo
1 commit: 212c3355f0e5e9dcf091bd986760bd3813c28634
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 4 01:34:44 2020 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 4 02:35:08 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=212c3355
7
8 app-admin/ansible: 2.9.13 bump
9
10 Package-Manager: Portage-3.0.4, Repoman-2.3.23
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 app-admin/ansible/Manifest | 1 +
14 app-admin/ansible/ansible-2.9.13.ebuild | 68 +++++++++++++++++++++++++++++++++
15 2 files changed, 69 insertions(+)
16
17 diff --git a/app-admin/ansible/Manifest b/app-admin/ansible/Manifest
18 index 527f906aeb6..312a4365afc 100644
19 --- a/app-admin/ansible/Manifest
20 +++ b/app-admin/ansible/Manifest
21 @@ -1,2 +1,3 @@
22 DIST ansible-2.9.12.tar.gz 14260349 BLAKE2B 6d7fdc82489df755196b890b39c166e9639c94e4238b4bf33686a3ab17fcc92c6b3a05f80e1276795b966aaa318ec7d9003099950102c014adb1a5d730928633 SHA512 6c05c49e363d4d68516dfea448cead3e2c281d1288c9467a0b6dd083504f303df694ed1c5957ae6582b28acc937d12d13333254328e13bac430b9b7fa4354f23
23 +DIST ansible-2.9.13.tar.gz 14261322 BLAKE2B 5de939a99cd703eaf240f536a9a4b707e3931364647782dde2bbebd5b755253594cbb1cf8c4e9f22a14fca85c9f018ee6ea26bce1cbe2145ba72e5f5ec313670 SHA512 cb08adf62df0f3650425a5d960baadd7439c7c1e95b8f9df3d08e7504f9622b9e5f7104b8700b0f1e9fe318d349a6a5728e9178f0193fb4a190456e30a2f1eb2
24 DIST ansible-base-2.10.0.tar.gz 5775091 BLAKE2B 2a087b1a9d675c5218e8700f5b455ff280a5dc6e66b575a47755b9936c54594300e3c22acadbe14acfd335c3be788e3d63f6ad3c5c51650cbc036c77ceec41ef SHA512 f9e9631f9ce77e55b06d01814422cbc0ca170e3fbbbd5886e4f87065b68b4d7eefe1c782f6dce14241cc548192c7b06ef778446636be02a342d4bd112000126e
25
26 diff --git a/app-admin/ansible/ansible-2.9.13.ebuild b/app-admin/ansible/ansible-2.9.13.ebuild
27 new file mode 100644
28 index 00000000000..8c8b3a94804
29 --- /dev/null
30 +++ b/app-admin/ansible/ansible-2.9.13.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 ~ppc64 ~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 +}