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, 16 Aug 2019 20:07:15
Message-Id: 1565986023.ff17ff97ca9cf293666c776400087950941cdaaf.prometheanfire@gentoo
1 commit: ff17ff97ca9cf293666c776400087950941cdaaf
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 16 19:57:41 2019 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 16 20:07:03 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff17ff97
7
8 app-admin/ansible: 2.7.13 and 2.8.4 bump
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.17
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 app-admin/ansible/Manifest | 2 +
14 app-admin/ansible/ansible-2.7.13.ebuild | 66 ++++++++++++++++++++++++++++++
15 app-admin/ansible/ansible-2.8.4.ebuild | 71 +++++++++++++++++++++++++++++++++
16 3 files changed, 139 insertions(+)
17
18 diff --git a/app-admin/ansible/Manifest b/app-admin/ansible/Manifest
19 index 271499869b7..756ff2d10fb 100644
20 --- a/app-admin/ansible/Manifest
21 +++ b/app-admin/ansible/Manifest
22 @@ -1,3 +1,5 @@
23 DIST ansible-2.7.12.tar.gz 11860944 BLAKE2B 52cc79a88bbff9dc009ead8ab9f9d299420ae060e211aab23fe3bbef8c8229cd9e526dc3df518a4285cc17c1448ab4892cc3059d70bfef2fd332a44c72b57019 SHA512 0ab68af8239f6d4d2a13bd38a09fe6f3c700231e7c83df0af77c70ea62faebd0d45e1ff316963c6c72931608d49a79b98e8d3ddc6f4c8b826aabe87dc71cc6f9
24 +DIST ansible-2.7.13.tar.gz 11861862 BLAKE2B 3123d84b9f45bb5e50a0d5db5d0b2ae10163e2818d30f29ad5a80c23979a347eb5e17806bd295df547b88a09191918443162cb25d7f339ae76df52e3960954b0 SHA512 8dc19e5c93a90d43ced6628699d2da42d522a020bb2cdd35ba73f6286998c605852c89250af8696e94aba0080b2fab12761a39c3e2eb86d39c212a198f970652
25 DIST ansible-2.8.2.tar.gz 14328267 BLAKE2B 9548af73914b68374f71ab83e5a68e86e75b8ccf86066831699b147091d067a3f1e0b59d94b22b42151d90779f6d3bb39856a3d205862c933aec6bbe76824e22 SHA512 02cd8fd214f61041914abeebf2395f16acf370e110bdef0181689f604f06504902f9a05a2413877a31680528af539f078e2cd7b7f2eebe2389c9aa441b063305
26 DIST ansible-2.8.3.tar.gz 14343746 BLAKE2B 3859d88d8462f7109ab23c169b4a91c7a03940b5a8aaff4bfc7ab430fb533898a44221dee18f481612abe1cce1270211a34c2bc1dc7603d89adeb11e50d2b242 SHA512 cee2c663577155269c4d762816590200224e87979411dc7486f5840783f23aaa688577a3f75e272c4875af30397bb383d11eaa7d122d5f304388d5b45ffb9b6f
27 +DIST ansible-2.8.4.tar.gz 14348300 BLAKE2B 8a9b5587411d2366a91643682c0ef82b0aa5b5cd5e6b882f3ffdfa100c4f3995472913bc12e1c2f7077efb69ec8ac3ad168a79fc3d8c127b34ce03c69588a4c7 SHA512 9efacbaf053acb8cf92ebe5bda982794ecbdbf55e33a4a292a68874b637eebe82406bfba129adf839354ee18aa809d45d77502f68b8e8d07358a48c9b5687b7e
28
29 diff --git a/app-admin/ansible/ansible-2.7.13.ebuild b/app-admin/ansible/ansible-2.7.13.ebuild
30 new file mode 100644
31 index 00000000000..63e11740ae9
32 --- /dev/null
33 +++ b/app-admin/ansible/ansible-2.7.13.ebuild
34 @@ -0,0 +1,66 @@
35 +# Copyright 1999-2019 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
41 +
42 +inherit distutils-r1 eutils
43 +
44 +DESCRIPTION="Model-driven deployment, config management, and command execution framework"
45 +HOMEPAGE="https://ansible.com/"
46 +SRC_URI="https://releases.ansible.com/${PN}/${P}.tar.gz"
47 +
48 +LICENSE="GPL-3"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~x64-macos"
51 +IUSE="doc 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/setuptools[${PYTHON_USEDEP}]
58 + dev-python/cryptography[${PYTHON_USEDEP}]
59 + dev-python/httplib2[${PYTHON_USEDEP}]
60 + dev-python/six[${PYTHON_USEDEP}]
61 + dev-python/netaddr[${PYTHON_USEDEP}]
62 + net-misc/sshpass
63 + virtual/ssh
64 +"
65 +DEPEND="
66 + dev-python/setuptools[${PYTHON_USEDEP}]
67 + >=dev-python/packaging-16.6[${PYTHON_USEDEP}]
68 + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
69 + test? (
70 + ${RDEPEND}
71 + dev-python/nose[${PYTHON_USEDEP}]
72 + >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
73 + dev-python/passlib[${PYTHON_USEDEP}]
74 + dev-python/coverage[${PYTHON_USEDEP}]
75 + dev-python/unittest2[${PYTHON_USEDEP}]
76 + dev-vcs/git
77 + )"
78 +
79 +# not included in release tarball
80 +RESTRICT="test"
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 + doman docs/man/man1/*.1
99 + dodoc -r examples
100 +}
101
102 diff --git a/app-admin/ansible/ansible-2.8.4.ebuild b/app-admin/ansible/ansible-2.8.4.ebuild
103 new file mode 100644
104 index 00000000000..851a6fa4e71
105 --- /dev/null
106 +++ b/app-admin/ansible/ansible-2.8.4.ebuild
107 @@ -0,0 +1,71 @@
108 +# Copyright 1999-2019 Gentoo Authors
109 +# Distributed under the terms of the GNU General Public License v2
110 +
111 +EAPI=7
112 +
113 +PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
114 +
115 +inherit distutils-r1 eutils
116 +
117 +DESCRIPTION="Model-driven deployment, config management, and command execution framework"
118 +HOMEPAGE="https://ansible.com/"
119 +SRC_URI="https://releases.ansible.com/${PN}/${P}.tar.gz"
120 +
121 +LICENSE="GPL-3"
122 +SLOT="0"
123 +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~x64-macos"
124 +IUSE="doc test"
125 +RESTRICT="test"
126 +
127 +RDEPEND="
128 + dev-python/paramiko[${PYTHON_USEDEP}]
129 + dev-python/jinja[${PYTHON_USEDEP}]
130 + dev-python/pyyaml[${PYTHON_USEDEP}]
131 + dev-python/setuptools[${PYTHON_USEDEP}]
132 + dev-python/cryptography[${PYTHON_USEDEP}]
133 + dev-python/httplib2[${PYTHON_USEDEP}]
134 + dev-python/six[${PYTHON_USEDEP}]
135 + dev-python/netaddr[${PYTHON_USEDEP}]
136 + net-misc/sshpass
137 + virtual/ssh
138 +"
139 +DEPEND="
140 + dev-python/setuptools[${PYTHON_USEDEP}]
141 + >=dev-python/packaging-16.6[${PYTHON_USEDEP}]
142 + doc? (
143 + dev-python/sphinx[${PYTHON_USEDEP}]
144 + dev-python/sphinx-notfound-page[${PYTHON_USEDEP}]
145 + )
146 + test? (
147 + ${RDEPEND}
148 + dev-python/nose[${PYTHON_USEDEP}]
149 + >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
150 + dev-python/passlib[${PYTHON_USEDEP}]
151 + dev-python/coverage[${PYTHON_USEDEP}]
152 + dev-python/unittest2[${PYTHON_USEDEP}]
153 + dev-vcs/git
154 + )"
155 +
156 +python_compile_all() {
157 + if use doc; then
158 + cd docs/docsite || die
159 + export CPUS=4
160 + emake -f Makefile.sphinx html
161 + fi
162 +}
163 +
164 +python_prepare_all() {
165 + rm -fv MANIFEST.in || die
166 + distutils-r1_python_prepare_all
167 +}
168 +
169 +python_test() {
170 + nosetests -d -w test/units -v --with-coverage --cover-package=ansible --cover-branches || die
171 +}
172 +
173 +python_install_all() {
174 + use doc && local HTML_DOCS=( docs/docsite/_build/html/. )
175 + distutils-r1_python_install_all
176 +
177 + dodoc -r examples
178 +}