commit: 53720af67ed064cff2721d493e30609f96f138f1 Author: idealseal <realidealseal <AT> protonmail <DOT> com> AuthorDate: Thu Jun 19 09:19:02 2025 +0000 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org> CommitDate: Thu Jun 19 12:39:44 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53720af6
app-admin/ansible: add 12.0.0_alpha6 Bug: https://bugs.gentoo.org/848486 Signed-off-by: idealseal <realidealseal <AT> protonmail.com> Part-of: https://github.com/gentoo/gentoo/pull/42662 Closes: https://github.com/gentoo/gentoo/pull/42662 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org> app-admin/ansible/Manifest | 1 + app-admin/ansible/ansible-12.0.0_alpha6.ebuild | 29 ++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/app-admin/ansible/Manifest b/app-admin/ansible/Manifest index 194e45b618ee..ceced81f65e0 100644 --- a/app-admin/ansible/Manifest +++ b/app-admin/ansible/Manifest @@ -1,2 +1,3 @@ DIST ansible-11.2.0.tar.gz 42242963 BLAKE2B 3559b2dcb0a6dabb0121b2912343b275071039f2f99b44bca9f3e78be68c766c86115789e38412c6b403d25261c147dcb687d3855e77e8abc67ea30b789a886d SHA512 d1598f96f3f6caba0591a6c75405d5ef3b0e382d4140300fd34ccd14fd07e6ec4a765f3908423508a2dd7c4ff77f58208b35c91b8621bcef981470462070654a DIST ansible-11.6.0.tar.gz 44015165 BLAKE2B fc7818d0cf93bce0d3bb64157d2f271cd895513f549b19c2d376cecf9d51e68c7b75cdf2ce7627b1a977741a7366bb762bdf295ccadea9ceaa7e01340171b2bf SHA512 2c3d87b75dfc5f81683e019df6e001c633505c4312cb4bbd90e3678f2fdd634fd7a31305b0f22be616ccae7510d61e8d1a319c407f7a315cc331e56a37fd8d15 +DIST ansible-12.0.0a6.tar.gz 41329946 BLAKE2B 1482f1032fb4be8a472714d3d1d9aa6274cb2a5b73000345abf8020efc696e92a0a2e2b81004f05d327f27ecc9842e34f815938a4e3ab794f6e87625fba40c4b SHA512 58fa19533909591279b5e808daf7343f06a636b6fae5ce457f1de1feeb06d0de528e365535725cbd41d82fc0f804985aa97d2c285fa6abad6fcc38d2e1671b20 diff --git a/app-admin/ansible/ansible-12.0.0_alpha6.ebuild b/app-admin/ansible/ansible-12.0.0_alpha6.ebuild new file mode 100644 index 000000000000..3f0ca9096b60 --- /dev/null +++ b/app-admin/ansible/ansible-12.0.0_alpha6.ebuild @@ -0,0 +1,29 @@ +# 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..14} ) + +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.19.0_beta6" + +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 +}
