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: Sat, 03 Oct 2020 20:39:47
Message-Id: 1601757568.92e9bfcd6246ad11362eba82cc8318032b3589de.prometheanfire@gentoo
1 commit: 92e9bfcd6246ad11362eba82cc8318032b3589de
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 3 20:39:28 2020 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 3 20:39:28 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92e9bfcd
7
8 app-admin/ansible: 2.9.13 stable amd64/x86 with cleanup
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 app-admin/ansible/Manifest | 1 -
14 app-admin/ansible/ansible-2.9.12.ebuild | 69 ---------------------------------
15 app-admin/ansible/ansible-2.9.13.ebuild | 2 +-
16 3 files changed, 1 insertion(+), 71 deletions(-)
17
18 diff --git a/app-admin/ansible/Manifest b/app-admin/ansible/Manifest
19 index 547a03e7134..afeaf6678c4 100644
20 --- a/app-admin/ansible/Manifest
21 +++ b/app-admin/ansible/Manifest
22 @@ -1,3 +1,2 @@
23 DIST ansible-2.10.0.tar.gz 25454980 BLAKE2B 91f930518b90b36aa2c21f553092233059fada86fd1674c9c6e881484b1bd4e68a3eaa05d82e15115906e55da99c43394c3de36a898e26bb222f780b82f8a5bd SHA512 878036f06e1705e4392223bda210b2acae0232069d0cec02a47f13f6b3bc6c9538fb515a2d2dc6003695bcf0915fdd3dfc5b8dc59355e37e2ca8fa48bbd79657
24 -DIST ansible-2.9.12.tar.gz 14260349 BLAKE2B 6d7fdc82489df755196b890b39c166e9639c94e4238b4bf33686a3ab17fcc92c6b3a05f80e1276795b966aaa318ec7d9003099950102c014adb1a5d730928633 SHA512 6c05c49e363d4d68516dfea448cead3e2c281d1288c9467a0b6dd083504f303df694ed1c5957ae6582b28acc937d12d13333254328e13bac430b9b7fa4354f23
25 DIST ansible-2.9.13.tar.gz 14261322 BLAKE2B 5de939a99cd703eaf240f536a9a4b707e3931364647782dde2bbebd5b755253594cbb1cf8c4e9f22a14fca85c9f018ee6ea26bce1cbe2145ba72e5f5ec313670 SHA512 cb08adf62df0f3650425a5d960baadd7439c7c1e95b8f9df3d08e7504f9622b9e5f7104b8700b0f1e9fe318d349a6a5728e9178f0193fb4a190456e30a2f1eb2
26
27 diff --git a/app-admin/ansible/ansible-2.9.12.ebuild b/app-admin/ansible/ansible-2.9.12.ebuild
28 deleted file mode 100644
29 index 9d495e30b00..00000000000
30 --- a/app-admin/ansible/ansible-2.9.12.ebuild
31 +++ /dev/null
32 @@ -1,69 +0,0 @@
33 -# Copyright 1999-2020 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -PYTHON_COMPAT=( python3_{6,7} )
39 -DISTUTILS_USE_SETUPTOOLS=rdepend
40 -
41 -inherit distutils-r1 eutils
42 -
43 -DESCRIPTION="Model-driven deployment, config management, and command execution framework"
44 -HOMEPAGE="https://ansible.com/"
45 -SRC_URI="https://releases.ansible.com/${PN}/${P}.tar.gz"
46 -
47 -LICENSE="GPL-3"
48 -SLOT="0"
49 -KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86 ~x64-macos"
50 -IUSE="doc test"
51 -RESTRICT="test"
52 -
53 -RDEPEND="
54 - dev-python/paramiko[${PYTHON_USEDEP}]
55 - dev-python/jinja[${PYTHON_USEDEP}]
56 - dev-python/pyyaml[${PYTHON_USEDEP}]
57 - dev-python/cryptography[${PYTHON_USEDEP}]
58 - dev-python/httplib2[${PYTHON_USEDEP}]
59 - dev-python/six[${PYTHON_USEDEP}]
60 - dev-python/netaddr[${PYTHON_USEDEP}]
61 - dev-python/pexpect[${PYTHON_USEDEP}]
62 - net-misc/sshpass
63 - virtual/ssh
64 - !app-admin/ansible-base
65 -"
66 -DEPEND="
67 - !app-admin/ansible-base
68 - >=dev-python/packaging-16.6[${PYTHON_USEDEP}]
69 - doc? (
70 - dev-python/sphinx[${PYTHON_USEDEP}]
71 - dev-python/sphinx-notfound-page[${PYTHON_USEDEP}]
72 - >=dev-python/pygments-2.4.0[${PYTHON_USEDEP}]
73 - )
74 - test? (
75 - ${RDEPEND}
76 - dev-python/nose[${PYTHON_USEDEP}]
77 - >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
78 - dev-python/passlib[${PYTHON_USEDEP}]
79 - dev-python/coverage[${PYTHON_USEDEP}]
80 - dev-python/unittest2[${PYTHON_USEDEP}]
81 - dev-vcs/git
82 - )"
83 -
84 -python_compile_all() {
85 - if use doc; then
86 - cd docs/docsite || die
87 - export CPUS=4
88 - emake -f Makefile.sphinx html
89 - fi
90 -}
91 -
92 -python_test() {
93 - nosetests -d -w test/units -v --with-coverage --cover-package=ansible --cover-branches || die
94 -}
95 -
96 -python_install_all() {
97 - use doc && local HTML_DOCS=( docs/docsite/_build/html/. )
98 - distutils-r1_python_install_all
99 -
100 - dodoc -r examples
101 -}
102
103 diff --git a/app-admin/ansible/ansible-2.9.13.ebuild b/app-admin/ansible/ansible-2.9.13.ebuild
104 index 5641f4825a3..9d495e30b00 100644
105 --- a/app-admin/ansible/ansible-2.9.13.ebuild
106 +++ b/app-admin/ansible/ansible-2.9.13.ebuild
107 @@ -14,7 +14,7 @@ SRC_URI="https://releases.ansible.com/${PN}/${P}.tar.gz"
108
109 LICENSE="GPL-3"
110 SLOT="0"
111 -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~x64-macos"
112 +KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86 ~x64-macos"
113 IUSE="doc test"
114 RESTRICT="test"