Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/ansible/
Date: Sat, 28 Jul 2018 19:42:32
Message-Id: 1532806753.506cbb2e700e09c92f18f97656348fac0d114419.prometheanfire@gentoo
1 commit: 506cbb2e700e09c92f18f97656348fac0d114419
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 28 19:39:13 2018 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 28 19:39:13 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=506cbb2e
7
8 app-admin/ansible: 2.6.2 bump
9
10 Package-Manager: Portage-2.3.43, Repoman-2.3.10
11
12 app-admin/ansible/Manifest | 1 +
13 app-admin/ansible/ansible-2.6.2.ebuild | 66 ++++++++++++++++++++++++++++++++++
14 2 files changed, 67 insertions(+)
15
16 diff --git a/app-admin/ansible/Manifest b/app-admin/ansible/Manifest
17 index 10f66cc248b..6f32f14cb96 100644
18 --- a/app-admin/ansible/Manifest
19 +++ b/app-admin/ansible/Manifest
20 @@ -1,3 +1,4 @@
21 DIST ansible-2.5.6.tar.gz 10157989 BLAKE2B 07341ab7a087e3139442d5420b461ca332f3a9e550874a746f43904763660ef12c9a2041bb991eeb315abdc7f6e31e3615d9283f407003eddddf2b661331c59a SHA512 169badaa6a94d1ea2d16cb97c7e5eb0b8c225a455edfa95f3ad9e4ec968d5b9525dec4732b60e5ba5f92412f87d8aacc0b2299f2595f3bb820ad8604be8e76d6
22 DIST ansible-2.5.7.tar.gz 10162406 BLAKE2B 1374b0fba39f0cb263a24425d9ebcd9087c0dbad869ddaa1491465db60a80a1a3b82858c80d2d4fc1d03db05d94840f2eeddd4c5a13632426fac178663b7baca SHA512 1be274b080dcc4aba40c884ba45b1403788aadb1f14bd00fd52283bc6e691ec7863f061cb4b7d70965d48cdb49c6b849e9b2e49dd7dd6dd5d8788f2d637960b1
23 DIST ansible-2.6.1.tar.gz 10724749 BLAKE2B af4523ab904660fa3369bdae2839ab4b2f386235be5a004e1f9a9a5f7c555a2e6fe82319abe20ecbf7e74152f8e2ad5060fda2c2af0f5d62fdd9416901c9072c SHA512 1235e12a510317665956bfae9e0d03814083a24ba6e5c98072437e50b4a596437a173b32d9d5af37b4b9e168e35045fdb65e65276fdc830f473ab1f42dcba2d2
24 +DIST ansible-2.6.2.tar.gz 10738149 BLAKE2B ac46fe99da9aba55702c578c6d177b7cb1bcd17fb73f08f160afbbcb6a868de721202492e8198e8cb8c68a1ce771572ce0bb598cd310f2ce35d08b0aeeee3f8d SHA512 2283d69be267474e839af44e0e7a14a5532cadef7d65baa2af4045cb93d88b76890b735a78cce348916c04f5dc3c2ed78deb22bb8d94d0c0c0306180d79b1a9b
25
26 diff --git a/app-admin/ansible/ansible-2.6.2.ebuild b/app-admin/ansible/ansible-2.6.2.ebuild
27 new file mode 100644
28 index 00000000000..6ca07021a91
29 --- /dev/null
30 +++ b/app-admin/ansible/ansible-2.6.2.ebuild
31 @@ -0,0 +1,66 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python2_7 python3_{5,6} )
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 ~x86 ~x64-macos"
48 +IUSE="doc test"
49 +
50 +RDEPEND="
51 + dev-python/paramiko[${PYTHON_USEDEP}]
52 + dev-python/jinja[${PYTHON_USEDEP}]
53 + dev-python/pyyaml[${PYTHON_USEDEP}]
54 + dev-python/setuptools[${PYTHON_USEDEP}]
55 + dev-python/cryptography[${PYTHON_USEDEP}]
56 + dev-python/httplib2[${PYTHON_USEDEP}]
57 + dev-python/six[${PYTHON_USEDEP}]
58 + dev-python/netaddr[${PYTHON_USEDEP}]
59 + net-misc/sshpass
60 + virtual/ssh
61 +"
62 +DEPEND="
63 + dev-python/setuptools[${PYTHON_USEDEP}]
64 + >=dev-python/packaging-16.6[${PYTHON_USEDEP}]
65 + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
66 + test? (
67 + ${RDEPEND}
68 + dev-python/nose[${PYTHON_USEDEP}]
69 + >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
70 + dev-python/passlib[${PYTHON_USEDEP}]
71 + dev-python/coverage[${PYTHON_USEDEP}]
72 + dev-python/unittest2[${PYTHON_USEDEP}]
73 + dev-vcs/git
74 + )"
75 +
76 +# not included in release tarball
77 +RESTRICT="test"
78 +
79 +python_compile_all() {
80 + if use doc; then
81 + cd docs/docsite || die
82 + export CPUS=4
83 + emake -f Makefile.sphinx html
84 + fi
85 +}
86 +
87 +python_test() {
88 + nosetests -d -w test/units -v --with-coverage --cover-package=ansible --cover-branches || die
89 +}
90 +
91 +python_install_all() {
92 + use doc && local HTML_DOCS=( docs/docsite/_build/html/. )
93 + distutils-r1_python_install_all
94 +
95 + doman docs/man/man1/*.1
96 + dodoc -r examples
97 +}