commit: 819e594be6cdcd28c8e989ad7e8eb0b323605529 Author: idealseal <realidealseal <AT> protonmail <DOT> com> AuthorDate: Wed Jan 29 11:10:51 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Mar 25 04:30:43 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=819e594b
app-admin/ansible: add 11.2.0 Signed-off-by: idealseal <realidealseal <AT> protonmail.com> Closes: https://github.com/gentoo/gentoo/pull/40360 Signed-off-by: Sam James <sam <AT> gentoo.org> app-admin/ansible/Manifest | 1 + app-admin/ansible/ansible-11.2.0.ebuild | 31 +++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/app-admin/ansible/Manifest b/app-admin/ansible/Manifest index 098d5766e923..c17f4ac533d0 100644 --- a/app-admin/ansible/Manifest +++ b/app-admin/ansible/Manifest @@ -1 +1,2 @@ DIST ansible-11.1.0.tar.gz 41299850 BLAKE2B a7bd1b40800ee8a407c7b0ef88a01b526d3b51b8fdb02197e616a5fd53621824b889970c9f1a5038e7b65cc9532988421b38792704350b2c37ed61f32c08924c SHA512 d78f7c6f7a0a1563b270408268dc84dc1796fe7ec8355da3eb9489ffda44328a9836b05d3067516452790fe1cdf2c2ad67b285a5a97444d6403aaf79491d42c0 +DIST ansible-11.2.0.tar.gz 42242963 BLAKE2B 3559b2dcb0a6dabb0121b2912343b275071039f2f99b44bca9f3e78be68c766c86115789e38412c6b403d25261c147dcb687d3855e77e8abc67ea30b789a886d SHA512 d1598f96f3f6caba0591a6c75405d5ef3b0e382d4140300fd34ccd14fd07e6ec4a765f3908423508a2dd7c4ff77f58208b35c91b8621bcef981470462070654a diff --git a/app-admin/ansible/ansible-11.2.0.ebuild b/app-admin/ansible/ansible-11.2.0.ebuild new file mode 100644 index 000000000000..8930dae9dee1 --- /dev/null +++ b/app-admin/ansible/ansible-11.2.0.ebuild @@ -0,0 +1,31 @@ +# 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 pypi + +DESCRIPTION="Model-driven deployment, config management, and command execution framework" +HOMEPAGE="https://www.ansible.com/" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~x64-macos" +RESTRICT="test" + +RDEPEND=" + >=app-admin/ansible-core-2.18.2 + <app-admin/ansible-core-2.19 +" + +python_compile() { + local -x ANSIBLE_SKIP_CONFLICT_CHECK=1 + distutils-r1_python_compile +} +python_install() { + local -x ANSIBLE_SKIP_CONFLICT_CHECK=1 + distutils-r1_python_install +}