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-base/
Date: Tue, 15 Sep 2020 16:48:07 +0000 (UTC)	[thread overview]
Message-ID: <1600188478.e1e0f4b0d487bd191fd23f629544d71abd6131c8.prometheanfire@gentoo> (raw)

commit:     e1e0f4b0d487bd191fd23f629544d71abd6131c8
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 15 16:47:41 2020 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Tue Sep 15 16:47:58 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1e0f4b0

app-admin/ansible-base: add ansible-base package

Package-Manager: Portage-3.0.4, Repoman-3.0.1
RepoMan-Options: --force
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 app-admin/ansible-base/Manifest                   |  1 +
 app-admin/ansible-base/ansible-base-2.10.0.ebuild | 74 +++++++++++++++++++++++
 app-admin/ansible-base/metadata.xml               | 29 +++++++++
 3 files changed, 104 insertions(+)

diff --git a/app-admin/ansible-base/Manifest b/app-admin/ansible-base/Manifest
new file mode 100644
index 00000000000..4c96f4823ec
--- /dev/null
+++ b/app-admin/ansible-base/Manifest
@@ -0,0 +1 @@
+DIST ansible-base-2.10.0.tar.gz 5775091 BLAKE2B 2a087b1a9d675c5218e8700f5b455ff280a5dc6e66b575a47755b9936c54594300e3c22acadbe14acfd335c3be788e3d63f6ad3c5c51650cbc036c77ceec41ef SHA512 f9e9631f9ce77e55b06d01814422cbc0ca170e3fbbbd5886e4f87065b68b4d7eefe1c782f6dce14241cc548192c7b06ef778446636be02a342d4bd112000126e

diff --git a/app-admin/ansible-base/ansible-base-2.10.0.ebuild b/app-admin/ansible-base/ansible-base-2.10.0.ebuild
new file mode 100644
index 00000000000..3cc5cd35c7b
--- /dev/null
+++ b/app-admin/ansible-base/ansible-base-2.10.0.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7} )
+
+inherit distutils-r1 eutils
+
+DESCRIPTION="Model-driven deployment, config management, and command execution framework"
+HOMEPAGE="https://ansible.com/"
+SRC_URI="https://releases.ansible.com/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86 ~x64-macos"
+IUSE="doc test"
+RESTRICT="test"
+
+RDEPEND="
+	dev-python/paramiko[${PYTHON_USEDEP}]
+	dev-python/jinja[${PYTHON_USEDEP}]
+	dev-python/pyyaml[${PYTHON_USEDEP}]
+	dev-python/setuptools[${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}]
+	net-misc/sshpass
+	virtual/ssh
+"
+DEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	>=dev-python/packaging-16.6[${PYTHON_USEDEP}]
+	doc? (
+		dev-python/sphinx[${PYTHON_USEDEP}]
+		dev-python/sphinx-notfound-page[${PYTHON_USEDEP}]
+		>=dev-python/pygments-2.4.0[${PYTHON_USEDEP}]
+	)
+	test? (
+		${RDEPEND}
+		dev-python/nose[${PYTHON_USEDEP}]
+		>=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
+		dev-python/passlib[${PYTHON_USEDEP}]
+		dev-python/coverage[${PYTHON_USEDEP}]
+		dev-python/unittest2[${PYTHON_USEDEP}]
+		dev-vcs/git
+	)"
+
+python_compile() {
+	# disable version checks on upgrade
+	export ANSIBLE_SKIP_CONFLICT_CHECK=1
+	distutils-r1_python_compile
+}
+
+python_compile_all() {
+	if use doc; then
+		cd docs/docsite || die
+		export CPUS=4
+		emake -f Makefile.sphinx html
+	fi
+}
+
+python_test() {
+	nosetests -d -w test/units -v --with-coverage --cover-package=ansible --cover-branches || die
+}
+
+python_install_all() {
+	use doc && local HTML_DOCS=( docs/docsite/_build/html/. )
+	distutils-r1_python_install_all
+
+	dodoc -r examples
+}

diff --git a/app-admin/ansible-base/metadata.xml b/app-admin/ansible-base/metadata.xml
new file mode 100644
index 00000000000..e1e179d4620
--- /dev/null
+++ b/app-admin/ansible-base/metadata.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>chainsaw@gentoo.org</email>
+    <name>Tony Vroon</name>
+  </maintainer>
+  <maintainer type="person">
+    <email>prometheanfire@gentoo.org</email>
+    <name>Matthew Thode</name>
+  </maintainer>
+  <maintainer type="person">
+    <email>calchan@gentoo.org</email>
+    <name>Denis Dupeyron</name>
+  </maintainer>
+  <maintainer type="person">
+    <email>monsieurp@gentoo.org</email>
+    <name>Patrice Clement</name>
+  </maintainer>
+  <upstream>
+		<remote-id type="pypi">ansible-base</remote-id>
+    <remote-id type="github">ansible/ansible</remote-id>
+    <bugs-to>https://github.com/ansible/ansible/issues</bugs-to>
+  </upstream>
+  <longdescription lang="en">
+Radically simple deployment, model-driven configuration management, and 
+command execution framework.
+</longdescription>
+</pkgmetadata>


             reply	other threads:[~2020-09-15 16:48 UTC|newest]

Thread overview: 70+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-15 16:48 Matthew Thode [this message]
  -- strict thread matches above, loose matches on Subject: below --
2020-09-15 17:27 [gentoo-commits] repo/gentoo:master commit in: app-admin/ansible-base/ Marek Szuba
2020-09-15 20:04 Matthew Thode
2020-09-16 19:47 Matthew Thode
2020-10-06  5:42 Matthew Thode
2020-10-06  5:59 Matthew Thode
2020-10-07 19:06 Patrick McLean
2020-10-16  3:26 Matthew Thode
2020-10-27 21:55 Matthew Thode
2020-11-03  7:06 Matthew Thode
2020-12-03  7:13 Matthew Thode
2020-12-13  1:15 Matthew Thode
2020-12-15 20:12 Matthew Thode
2021-01-03 20:19 Matthew Thode
2021-01-19 17:14 Matthew Thode
2021-03-17  5:17 Matthew Thode
2021-04-14  2:22 Matthew Thode
2021-05-04 21:13 Matthew Thode
2021-05-14  2:19 Matthew Thode
2021-05-31 17:49 David Seifert
2021-06-06  3:19 Matthew Thode
2021-06-06  3:19 Matthew Thode
2021-06-15 12:05 Marek Szuba
2021-06-15 15:18 Matthew Thode
2021-06-24 15:01 Matthew Thode
2021-07-05 13:32 Michał Górny
2021-07-22 21:58 Matthew Thode
2021-07-24 20:26 Matthew Thode
2021-08-17 23:45 Matthew Thode
2021-08-23 19:25 Matthew Thode
2021-08-24 16:00 Matthew Thode
2021-09-09 13:10 Marek Szuba
2021-09-15 15:39 Matthew Thode
2021-09-24  2:25 Matthew Thode
2021-10-13  0:03 Matthew Thode
2021-10-29 15:30 Arthur Zamarin
2021-11-09 15:53 Matthew Thode
2021-11-11 21:59 Matthew Thode
2021-11-26 13:40 Marek Szuba
2021-12-07 17:39 Matthew Thode
2021-12-11 20:21 Matthew Thode
2022-01-08  6:41 Matthew Thode
2022-02-01 19:09 Matthew Thode
2022-02-08 21:13 Matthew Thode
2022-02-08 21:51 Matthew Thode
2022-03-01 19:01 Matthew Thode
2022-04-03  3:36 Matthew Thode
2022-04-30 23:52 Matthew Thode
2022-05-02 15:07 Matthew Thode
2022-05-17 17:34 Matthew Thode
2022-05-26  4:43 Matthew Thode
2022-05-31  2:05 Matthew Thode
2022-06-02 19:37 Matthew Thode
2022-06-03  2:58 Matthew Thode
2022-06-17 19:32 Matthew Thode
2022-06-21 18:52 Matthew Thode
2022-06-21 18:52 Matthew Thode
2022-06-21 18:52 Matthew Thode
2022-06-25 17:26 Matthew Thode
2022-06-25 17:26 Matthew Thode
2022-06-25 17:59 Matthew Thode
2022-06-30 21:16 Matthew Thode
2022-07-18  2:34 Matthew Thode
2022-07-18  2:53 Matthew Thode
2022-07-19 16:33 Matthew Thode
2022-07-22  4:26 Matthew Thode
2022-07-25 20:48 Matthew Thode
2022-08-16 16:46 Matthew Thode
2022-08-19 22:38 Matthew Thode
2022-08-21 15:12 Matthew Thode

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=1600188478.e1e0f4b0d487bd191fd23f629544d71abd6131c8.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