public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Matthew Thode" <prometheanfire@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/ansible-core/
Date: Tue, 26 Mar 2024 19:08:37 +0000 (UTC)	[thread overview]
Message-ID: <1711480113.5086abf54d3695fb95fc1a4a689c580cf57720a8.prometheanfire@gentoo> (raw)

commit:     5086abf54d3695fb95fc1a4a689c580cf57720a8
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 26 19:07:59 2024 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Tue Mar 26 19:08:33 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5086abf5

app-admin/ansible-core: add 2.16.5

Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 app-admin/ansible-core/Manifest                   |  1 +
 app-admin/ansible-core/ansible-core-2.16.5.ebuild | 54 +++++++++++++++++++++++
 2 files changed, 55 insertions(+)

diff --git a/app-admin/ansible-core/Manifest b/app-admin/ansible-core/Manifest
index 7c9344fb0d26..c721a898bd3f 100644
--- a/app-admin/ansible-core/Manifest
+++ b/app-admin/ansible-core/Manifest
@@ -2,3 +2,4 @@ DIST ansible-core-2.14.13.tar.gz 3145413 BLAKE2B 75b11feaaefa9a63c6f83f64c796cea
 DIST ansible-core-2.15.8.tar.gz 3160606 BLAKE2B 439a3f584940e5ab46b43b0b47395e0618a3ea52c67ebcd51667f31220cb038dda35506e7843d177d555b77a55a9d2c6245a916741ab1dcdf222c535afb5f83d SHA512 020191ef4b005abbf799204da68270bd4f13a85c7f23cb9dffe85b1c5c093c0ad86e061211ab9fcc8fd0be9367717fb0baadefb1ebecd3579471120fb2e8647f
 DIST ansible-core-2.16.2.tar.gz 3163899 BLAKE2B 6365dd573ae4a2f3ebfc870ae3ea399b268615333de2ddf7e21323189dfdd9bf61ae836b536c86d713f4a934468ed36835084e06e4b6d9b32c4b633f55353ad9 SHA512 6e2389fc6b34645c0f1566eca960da36616619a5ed5e35b46f3d659979fe519db20d89b4f598344a389f4b6ac33bb660ea91a1a6509002bbf4ac791ea3cb4cbd
 DIST ansible-core-2.16.4.tar.gz 3170397 BLAKE2B 8226641621ce4b2a8cd564f831cd21e36345b2db6680f8d9f3d3388a05ff66df74f4d286300dbb1b73601a0bf4a781d266e62e9fd0c894a79f89d545930c854a SHA512 d05737eec9a6a0e71891821acd4540576b3a993f59d88c12c2da8e7f075bc11c712e0eba850b3f7a2643e3c970f51938267fed6fa7f99f2c4c205b64f9b13259
+DIST ansible-core-2.16.5.tar.gz 3171617 BLAKE2B cb620cf9fc9fd509edb62bf75ab19b5ffe80f4d8520be76bbeb030c74953945295e0f4f30102f51d20247d2ce4a18b15e488e47b4346319f5442979593402821 SHA512 dbe5d68fbc3a0ef611791d6995297bca5bba6aed1f4871964136ea81810458646bc78c2146739f887de3c2e3017cf4e6d4d09652e41c2ca046c4bc88eca6c5d8

diff --git a/app-admin/ansible-core/ansible-core-2.16.5.ebuild b/app-admin/ansible-core/ansible-core-2.16.5.ebuild
new file mode 100644
index 000000000000..a9e25609de36
--- /dev/null
+++ b/app-admin/ansible-core/ansible-core-2.16.5.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+
+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"
+RESTRICT="test"
+
+RDEPEND="
+	dev-python/paramiko[${PYTHON_USEDEP}]
+	dev-python/jinja[${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}]
+	test? (
+		dev-python/botocore[${PYTHON_USEDEP}]
+		dev-python/pytz[${PYTHON_USEDEP}]
+	)"
+
+distutils_enable_tests pytest
+
+python_compile() {
+	export ANSIBLE_SKIP_CONFLICT_CHECK=1
+	distutils-r1_python_compile
+}


             reply	other threads:[~2024-03-26 19:08 UTC|newest]

Thread overview: 113+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-26 19:08 Matthew Thode [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-07-20 19:22 [gentoo-commits] repo/gentoo:master commit in: app-admin/ansible-core/ Matthew Thode
2024-06-20 17:39 Matthew Thode
2024-05-26 15:03 Matthew Thode
2024-05-20 18:01 Matthew Thode
2024-04-26 14:01 Matthew Thode
2024-04-20 14:19 Matthew Thode
2024-03-12  5:16 Sam James
2024-03-08  4:29 Matthew Thode
2024-02-28  1:01 Matthew Thode
2024-02-28  1:01 Matthew Thode
2024-02-28  1:01 Matthew Thode
2024-02-04 16:39 Matthew Thode
2024-02-04 16:39 Matthew Thode
2024-02-04 16:39 Matthew Thode
2024-01-13  0:17 Matthew Thode
2024-01-13  0:17 Matthew Thode
2024-01-13  0:17 Matthew Thode
2024-01-07 18:49 Matthew Thode
2024-01-07 18:49 Matthew Thode
2024-01-07 18:49 Matthew Thode
2024-01-04 20:58 Matthew Thode
2024-01-04 20:58 Matthew Thode
2024-01-04 20:58 Matthew Thode
2023-12-12 19:19 Matthew Thode
2023-12-12 19:19 Matthew Thode
2023-12-12 19:19 Matthew Thode
2023-12-10 16:24 Matthew Thode
2023-12-07 23:59 Matthew Thode
2023-12-07 23:59 Matthew Thode
2023-12-05  2:09 Matthew Thode
2023-12-05  2:09 Matthew Thode
2023-12-05  2:09 Matthew Thode
2023-11-13 21:42 Matthew Thode
2023-11-10 19:31 Matthew Thode
2023-11-10 19:31 Matthew Thode
2023-11-10 19:31 Matthew Thode
2023-11-10 19:31 Matthew Thode
2023-11-07 23:44 Matthew Thode
2023-10-13 19:51 Matthew Thode
2023-10-13 19:51 Matthew Thode
2023-10-13 19:51 Matthew Thode
2023-10-10  2:00 Matthew Thode
2023-10-10  2:00 Matthew Thode
2023-09-15 21:54 Matthew Thode
2023-09-15 21:54 Matthew Thode
2023-09-15 21:54 Matthew Thode
2023-09-15 21:54 Matthew Thode
2023-09-15 21:54 Matthew Thode
2023-09-13  2:12 Matthew Thode
2023-09-13  2:12 Matthew Thode
2023-08-18 18:02 Matthew Thode
2023-08-18 18:02 Matthew Thode
2023-08-15 16:25 Matthew Thode
2023-08-15 16:25 Matthew Thode
2023-07-24 12:49 Michał Górny
2023-07-18 18:11 Matthew Thode
2023-07-18 18:11 Matthew Thode
2023-07-16 15:54 Matthew Thode
2023-06-22  3:16 Matthew Thode
2023-06-22  3:16 Matthew Thode
2023-06-16 21:21 Matthew Thode
2023-05-29 20:27 Matthew Thode
2023-05-26  2:55 Matthew Thode
2023-05-23 18:13 Matthew Thode
2023-05-20  6:22 Michał Górny
2023-05-16 22:31 Matthew Thode
2023-04-28 17:11 Matthew Thode
2023-04-28 17:11 Matthew Thode
2023-04-25 18:24 Matthew Thode
2023-04-09  2:56 Matthew Thode
2023-04-08 12:29 Michał Górny
2023-03-28 21:17 Matthew Thode
2023-03-28 21:17 Matthew Thode
2023-03-28 21:15 Matthew Thode
2023-03-28 21:15 Matthew Thode
2023-03-28 21:15 Matthew Thode
2023-03-17 15:29 Michał Górny
2023-02-28 16:35 Matthew Thode
2023-02-07  9:29 Marek Szuba
2023-02-06 23:50 Matthew Thode
2023-02-06 22:50 Matthew Thode
2023-01-31 16:53 Matthew Thode
2023-01-10 14:50 Michał Górny
2023-01-10 14:50 Michał Górny
2023-01-07 19:34 Matthew Thode
2023-01-06 16:55 Matthew Thode
2023-01-06 16:38 Matthew Thode
2022-12-13 17:07 Matthew Thode
2022-12-07 19:19 Matthew Thode
2022-12-07 19:19 Matthew Thode
2022-12-07 19:17 Matthew Thode
2022-12-06 21:02 Matthew Thode
2022-11-18 21:58 Matthew Thode
2022-11-14 15:55 Matthew Thode
2022-11-14 15:55 Matthew Thode
2022-11-14 14:30 Matthew Thode
2022-11-14 14:30 Matthew Thode
2022-11-13 21:25 Matthew Thode
2022-11-13 21:25 Matthew Thode
2022-11-08 16:57 Matthew Thode
2022-11-08 16:57 Matthew Thode
2022-10-16 22:19 Matthew Thode
2022-10-16 22:19 Matthew Thode
2022-10-14 23:29 Matthew Thode
2022-10-14 23:29 Matthew Thode
2022-10-14 23:29 Matthew Thode
2022-09-23 19:19 Matthew Thode
2022-09-23 19:19 Matthew Thode
2022-09-16 16:22 Matthew Thode
2022-09-13 16:36 Matthew Thode
2022-09-02 10:52 Marek Szuba
2022-09-02 10:52 Marek Szuba

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1711480113.5086abf54d3695fb95fc1a4a689c580cf57720a8.prometheanfire@gentoo \
    --to=prometheanfire@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox