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: Thu, 22 Jun 2023 03:16:39 +0000 (UTC)	[thread overview]
Message-ID: <1687403792.ac9def292f4b84717a53806b0f9f315ea287480e.prometheanfire@gentoo> (raw)

commit:     ac9def292f4b84717a53806b0f9f315ea287480e
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 22 03:11:46 2023 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Thu Jun 22 03:16:32 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac9def29

app-admin/ansible-core: add 2.15.1

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

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

diff --git a/app-admin/ansible-core/Manifest b/app-admin/ansible-core/Manifest
index 9db266817976..577dc9434f7b 100644
--- a/app-admin/ansible-core/Manifest
+++ b/app-admin/ansible-core/Manifest
@@ -2,3 +2,4 @@ DIST ansible-core-2.13.9.tar.gz 14025835 BLAKE2B 831f04f1d4872d2e7a9801e69e450ed
 DIST ansible-core-2.14.5.tar.gz 11620295 BLAKE2B d006f773e1c2b28582143a4f08f699e5744fba492130388fa5463053cdf8f0cc7056296daa213c72884ea0c0ba454a3e04ef118c184faba8c8d3c281ae65345a SHA512 130a0de925c7229dee350ddbf4382d87802d86aab4817ed595105db8ed5071153847dac0478f20a994670e59e53a07b77d0bf35855d309ebc222fbb61233b7db
 DIST ansible-core-2.14.6.tar.gz 11452549 BLAKE2B 123b2a87d92f8074b389a71c0ab91bf01a126b38e99f8af05b766c15ff1bf18e9a28d3d06b61f836df1a24f86c8586df6b8cfb48bfc1e4fde033ed499825a7d4 SHA512 a50f39f043e7a72fd7ec5239d30848cf663d80b37115a9d32086462f5c8689b08dc8007087b188686160c46a3aa63a661e702c79e69f35f086e214e2d315cbd4
 DIST ansible-core-2.15.0.tar.gz 10801327 BLAKE2B 58d92d3d8cbc87d9c2c606317bae3b6841c66b9600153b38be912b02dbc19069ff8e755daa574e394ac5d12c04859640f0e2af17ed0adeb8a12da76979c163d3 SHA512 aebb43840380854e7759656a0b08579a8fbdddbf2d204c47fb16cdb73ffd540df5ad56e5bf4a78a338804a3d40f9b042ea50b2b1853aaef6b7c2f0aab7a95432
+DIST ansible-core-2.15.1.tar.gz 10811279 BLAKE2B c369304014eb597a0acb14e4743ee1a1f74cf6d29052657d2357c80d9eb97a0e66a896b0a6b3653729a62336baa884868ff9ee7674632f460baa1bf6fc1d22ee SHA512 a0febdf13fbc70b8a4a5b670c8812fd8cbee7c02118f0087d453194d74f3b0c56b3659d9d763787c0d0e65bf82399f4ff00d355ec0243771986444f9880ee09e

diff --git a/app-admin/ansible-core/ansible-core-2.15.1.ebuild b/app-admin/ansible-core/ansible-core-2.15.1.ebuild
new file mode 100644
index 000000000000..1e33996c378b
--- /dev/null
+++ b/app-admin/ansible-core/ansible-core-2.15.1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..11} )
+DISTUTILS_USE_SETUPTOOLS=bdepend
+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:[~2023-06-22  3:16 UTC|newest]

Thread overview: 113+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-22  3:16 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-26 19:08 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-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=1687403792.ac9def292f4b84717a53806b0f9f315ea287480e.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