From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 44E401382C5 for ; Sun, 21 Feb 2021 20:54:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B8F1E08C8; Sun, 21 Feb 2021 20:54:21 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 56952E08C8 for ; Sun, 21 Feb 2021 20:54:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B239F340FC5 for ; Sun, 21 Feb 2021 20:54:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D7644EF for ; Sun, 21 Feb 2021 20:54:18 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1613940838.e437ac571211cd33c268dcd1b1f70e75f6a47b3a.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/ansible-modules-hashivault/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/ansible-modules-hashivault/Manifest app-admin/ansible-modules-hashivault/ansible-modules-hashivault-4.6.2.ebuild app-admin/ansible-modules-hashivault/metadata.xml X-VCS-Directories: app-admin/ansible-modules-hashivault/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: e437ac571211cd33c268dcd1b1f70e75f6a47b3a X-VCS-Branch: master Date: Sun, 21 Feb 2021 20:54:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 34dc7f8e-19db-43dd-a6ec-5ef904e46add X-Archives-Hash: eec9209bd6a2dd4f974f97ef80ba8f3e commit: e437ac571211cd33c268dcd1b1f70e75f6a47b3a Author: William Hubbs gentoo org> AuthorDate: Sun Feb 21 20:53:58 2021 +0000 Commit: William Hubbs gentoo org> CommitDate: Sun Feb 21 20:53:58 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e437ac57 app-admin/ansible-modules-hashivault: ansible module for hashicorp vault Signed-off-by: William Hubbs gentoo.org> app-admin/ansible-modules-hashivault/Manifest | 1 + .../ansible-modules-hashivault-4.6.2.ebuild | 29 ++++++++++++++++++++++ app-admin/ansible-modules-hashivault/metadata.xml | 12 +++++++++ 3 files changed, 42 insertions(+) diff --git a/app-admin/ansible-modules-hashivault/Manifest b/app-admin/ansible-modules-hashivault/Manifest new file mode 100644 index 00000000000..689772244be --- /dev/null +++ b/app-admin/ansible-modules-hashivault/Manifest @@ -0,0 +1 @@ +DIST ansible-modules-hashivault-4.6.2.tar.gz 71795 BLAKE2B 3a989123bb3ff6e9556291a828b678dc02ca068f0ffc893b289c90b77479b0da0243bcc94134aa911cb40bd91b37c816b41b730cd39492ad8fa8d557469dd99d SHA512 d9d2b9089a632d3f9ebeaa5554ad27eff4a3b7be8f9b119dbfa787b886fe113afb6ffc7f3219dcded1a05976f5247c33d1e235c1cb0a75619dffbbc0a93e0270 diff --git a/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-4.6.2.ebuild b/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-4.6.2.ebuild new file mode 100644 index 00000000000..a586324f0f0 --- /dev/null +++ b/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-4.6.2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_8 ) +inherit distutils-r1 + +DESCRIPTION="Ansible module for hashicorp vault" +HOMEPAGE="https://ansible.com/" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/TerryHowe/ansible-modules-hashivault.git" +else + SRC_URI="https://github.com/TerryHowe/ansible-modules-hashivault/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="MIT" +SLOT="0" + +RDEPEND=" + >=app-admin/ansible-2.0.0[${PYTHON_USEDEP}] + >=dev-python/hvac-0.9.5[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] +" + +# The tests require a private instance of vault +RESTRICT="test" diff --git a/app-admin/ansible-modules-hashivault/metadata.xml b/app-admin/ansible-modules-hashivault/metadata.xml new file mode 100644 index 00000000000..a2de45549ba --- /dev/null +++ b/app-admin/ansible-modules-hashivault/metadata.xml @@ -0,0 +1,12 @@ + + + + + williamh@gentoo.org + William Hubbs + + + chutzpah@gentoo.org + Patrick McLean + +