commit: ca2202751557fd4fbcdca9d69814ead2def89b4f
Author: idealseal <realidealseal <AT> protonmail <DOT> com>
AuthorDate: Wed Jan 29 11:10:07 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 25 04:30:42 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca220275
app-admin/ansible-core: add 2.18.3
Signed-off-by: idealseal <realidealseal <AT> protonmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/ansible-core/Manifest | 1 +
app-admin/ansible-core/ansible-core-2.18.3.ebuild | 47 +++++++++++++++++++++++
2 files changed, 48 insertions(+)
diff --git a/app-admin/ansible-core/Manifest b/app-admin/ansible-core/Manifest
index ae86d2a981fe..cc560c579b30 100644
--- a/app-admin/ansible-core/Manifest
+++ b/app-admin/ansible-core/Manifest
@@ -1 +1,2 @@
DIST ansible_core-2.18.1.tar.gz 3069965 BLAKE2B
0c21c36754b32c115eaae452583fd0a51aeed8bbdb3da39464ece24954c1d453e2dd8821be525946211478f1b102dd211994e6c49820574e579bf5cceb67c520
SHA512
acd93e96349bae4a41f9eeed37e810a786103f7826f26bdc8bd98cffdc7ff21b208fa0e916fe3ce6100819373cba7a827488101f33b915ed0e0fdfebe50fab5e
+DIST ansible_core-2.18.3.tar.gz 3077314 BLAKE2B
1e899d9d503b64b4ecf6fcab2777a55149c8547def694865503890b586f0ec9b92806d61c1a05cab79df2900c0b51022bb31eacc04308b98e8c0dd05c2d5d6c8
SHA512
e4229cd5de46e7ee35922b91e520711b2fd7f17490ea1f08b6e535b0522e54d8b5178212df1010c3a3a4e212fabbb9d6437069ee11eb0588c519d1fb145875ba
diff --git a/app-admin/ansible-core/ansible-core-2.18.3.ebuild
b/app-admin/ansible-core/ansible-core-2.18.3.ebuild
new file mode 100644
index 000000000000..4e20d891adf3
--- /dev/null
+++ b/app-admin/ansible-core/ansible-core-2.18.3.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517="setuptools"
+PYTHON_COMPAT=( python3_{11..13} )
+
+inherit distutils-r1
+
+DESCRIPTION="Model-driven deployment, config management, and command execution
framework"
+HOMEPAGE="https://www.ansible.com/"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/ansible/ansible.git"
+ EGIT_BRANCH="devel"
+else
+ inherit pypi
+ KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~x64-macos"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+# Upstream runs tests via the ansible-test command, which requires the package
+# to be installed prior to testing. Running the test via pytest in non-trivial
+# due to the amount of flags that need to be passed.
+RESTRICT="test"
+
+RDEPEND="
+ dev-python/paramiko[${PYTHON_USEDEP}]
+ dev-python/jinja2[${PYTHON_USEDEP}]
+ dev-python/pyyaml[${PYTHON_USEDEP}]
+ dev-python/cryptography[${PYTHON_USEDEP}]
+ dev-python/httplib2[${PYTHON_USEDEP}]
+ dev-python/six[${PYTHON_USEDEP}]
+ dev-python/netaddr[${PYTHON_USEDEP}]
+ dev-python/pexpect[${PYTHON_USEDEP}]
+ >=dev-python/resolvelib-0.5.3[${PYTHON_USEDEP}]
+ <dev-python/resolvelib-1.1.0[${PYTHON_USEDEP}]
+ net-misc/sshpass
+ virtual/ssh
+"
+BDEPEND="
+ >=dev-python/packaging-16.6[${PYTHON_USEDEP}]
+"