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-base/
Date: Tue, 01 Mar 2022 19:02:00
Message-Id: 1646161310.cd4ae3f1c3ef7e3d7690de661731084a626fab29.prometheanfire@gentoo
1 commit: cd4ae3f1c3ef7e3d7690de661731084a626fab29
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 1 18:59:49 2022 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 1 19:01:50 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd4ae3f1
7
8 app-admin/ansible-base: 2.12.3 bump
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 app-admin/ansible-base/Manifest | 1 +
14 app-admin/ansible-base/ansible-base-2.12.3.ebuild | 64 +++++++++++++++++++++++
15 2 files changed, 65 insertions(+)
16
17 diff --git a/app-admin/ansible-base/Manifest b/app-admin/ansible-base/Manifest
18 index 847aa0e09b0f..bcb5baa9fffa 100644
19 --- a/app-admin/ansible-base/Manifest
20 +++ b/app-admin/ansible-base/Manifest
21 @@ -1,2 +1,3 @@
22 DIST ansible-core-2.11.7.tar.gz 7108269 BLAKE2B c5080161bfffc34382db86f3940dbbf1c8194a4413b20ef28b3c15503aec905acfffc864041496b4f6b4b77966fee3221b80e90d4b952e38513ba9ce506ee1ae SHA512 f37c925c5302eff30d17f52a04d4a5311e38ee5c1d6db4fbdb32970afa362e0522d6ec3d07bddf40137b2f5ec5fa03a2b72e7e1ed313c28c207f65490e49af92
23 DIST ansible-core-2.12.2.tar.gz 7750306 BLAKE2B 629ff38ad98eebdf6b8d7f47355f065589c511fb66b19543ad696b973f6a776b420158ce157c0af5f14b85574808bd5bf3f285607e588949f6cd2e232941e508 SHA512 a9afc3768d27a7049c275da8780e6dcd7da42263fc9065a1df1aabd0d8c54020313e9065349a6f52138e11eafb176348bf2ec33c0c1b08dc9837b7ac832542af
24 +DIST ansible-core-2.12.3.tar.gz 7757271 BLAKE2B 02c8c2c09b778de9775384471f0b485237a8074468d437d41a6879e85769444c91ed4571e17de9aa4024fb2b6c29b4e90b4c31b6714d633ef7028e9711f5ecf3 SHA512 dedac2546881442f5e904c485bdc464d0ced847520879fd10c2454a2055ada4d051416d450f01ae5a1e2f5073f1633cb4db5265855199bb32c0acb41092d6f05
25
26 diff --git a/app-admin/ansible-base/ansible-base-2.12.3.ebuild b/app-admin/ansible-base/ansible-base-2.12.3.ebuild
27 new file mode 100644
28 index 000000000000..06d9ba54c027
29 --- /dev/null
30 +++ b/app-admin/ansible-base/ansible-base-2.12.3.ebuild
31 @@ -0,0 +1,64 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +PYTHON_COMPAT=( python3_{8..10} )
38 +DISTUTILS_USE_SETUPTOOLS=bdepend
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="Model-driven deployment, config management, and command execution framework"
43 +HOMEPAGE="https://www.ansible.com/"
44 +
45 +if [[ ${PV} == 9999 ]]; then
46 + inherit git-r3
47 + EGIT_REPO_URI="https://github.com/ansible/ansible.git"
48 + EGIT_BRANCH="devel"
49 +else
50 + MY_PN="${PN/-base/-core}"
51 + MY_P="${MY_PN}-${PV}"
52 + SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
53 + KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~x64-macos"
54 + S="${WORKDIR}"/${MY_P}
55 +fi
56 +
57 +LICENSE="GPL-3"
58 +SLOT="0"
59 +IUSE="test"
60 +RESTRICT="test"
61 +
62 +RDEPEND="
63 + dev-python/paramiko[${PYTHON_USEDEP}]
64 + dev-python/jinja[${PYTHON_USEDEP}]
65 + dev-python/pyyaml[${PYTHON_USEDEP}]
66 + dev-python/cryptography[${PYTHON_USEDEP}]
67 + dev-python/httplib2[${PYTHON_USEDEP}]
68 + dev-python/six[${PYTHON_USEDEP}]
69 + dev-python/netaddr[${PYTHON_USEDEP}]
70 + dev-python/pexpect[${PYTHON_USEDEP}]
71 + >=dev-python/resolvelib-0.5.3[${PYTHON_USEDEP}]
72 + <dev-python/resolvelib-0.6.0[${PYTHON_USEDEP}]
73 + net-misc/sshpass
74 + virtual/ssh
75 +"
76 +DEPEND="
77 + >=dev-python/packaging-16.6[${PYTHON_USEDEP}]
78 + test? (
79 + ${RDEPEND}
80 + dev-python/bcrypt[${PYTHON_USEDEP}]
81 + dev-python/nose[${PYTHON_USEDEP}]
82 + >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
83 + dev-python/passlib[${PYTHON_USEDEP}]
84 + dev-python/coverage[${PYTHON_USEDEP}]
85 + dev-vcs/git
86 + )"
87 +
88 +python_compile() {
89 + export ANSIBLE_SKIP_CONFLICT_CHECK=1
90 + distutils-r1_python_compile
91 +}
92 +
93 +python_test() {
94 + nosetests -d -w test/units -v --with-coverage --cover-package=ansible --cover-branches || die
95 +}