public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-admin/ansible-modules-hashivault/
@ 2021-02-21 20:54 William Hubbs
  0 siblings, 0 replies; 12+ messages in thread
From: William Hubbs @ 2021-02-21 20:54 UTC (permalink / raw
  To: gentoo-commits

commit:     e437ac571211cd33c268dcd1b1f70e75f6a47b3a
Author:     William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 21 20:53:58 2021 +0000
Commit:     William Hubbs <williamh <AT> gentoo <DOT> 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 <williamh <AT> 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 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>williamh@gentoo.org</email>
+		<name>William Hubbs</name>
+	</maintainer>
+	<maintainer type="person">
+		<email>chutzpah@gentoo.org</email>
+		<name>Patrick McLean</name>
+	</maintainer>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-admin/ansible-modules-hashivault/
@ 2021-02-21 22:34 William Hubbs
  0 siblings, 0 replies; 12+ messages in thread
From: William Hubbs @ 2021-02-21 22:34 UTC (permalink / raw
  To: gentoo-commits

commit:     3eafe49b41f46956a5700fe483aea23ea365dc7a
Author:     William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 21 22:29:21 2021 +0000
Commit:     William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Sun Feb 21 22:34:21 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3eafe49b

app-admin/ansible-modules-hashivault: multiple fixes

- add python 3.9
- allow allarch stabilization

Signed-off-by: William Hubbs <williamh <AT> gentoo.org>

 .../ansible-modules-hashivault/ansible-modules-hashivault-4.6.2.ebuild  | 2 +-
 app-admin/ansible-modules-hashivault/metadata.xml                       | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

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
index a586324f0f0..f3efbc5c039 100644
--- 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
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_8 )
+PYTHON_COMPAT=( python3_8 python3_9 )
 inherit distutils-r1
 
 DESCRIPTION="Ansible module for hashicorp vault"

diff --git a/app-admin/ansible-modules-hashivault/metadata.xml b/app-admin/ansible-modules-hashivault/metadata.xml
index a2de45549ba..aeca96839a4 100644
--- a/app-admin/ansible-modules-hashivault/metadata.xml
+++ b/app-admin/ansible-modules-hashivault/metadata.xml
@@ -9,4 +9,5 @@
 		<email>chutzpah@gentoo.org</email>
 		<name>Patrick McLean</name>
 	</maintainer>
+	<stabilize-allarches/>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-admin/ansible-modules-hashivault/
@ 2021-03-05  2:41 William Hubbs
  0 siblings, 0 replies; 12+ messages in thread
From: William Hubbs @ 2021-03-05  2:41 UTC (permalink / raw
  To: gentoo-commits

commit:     9e475c90b6b04d713b2618ce360f34bb6741489b
Author:     William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Fri Mar  5 02:27:25 2021 +0000
Commit:     William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Fri Mar  5 02:27:25 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e475c90

app-admin/ansible-modules-hashivault: fix manifest

Closes: https://bugs.gentoo.org/772035
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>

 app-admin/ansible-modules-hashivault/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/ansible-modules-hashivault/Manifest b/app-admin/ansible-modules-hashivault/Manifest
index 689772244be..2989f15c4ef 100644
--- a/app-admin/ansible-modules-hashivault/Manifest
+++ b/app-admin/ansible-modules-hashivault/Manifest
@@ -1 +1 @@
-DIST ansible-modules-hashivault-4.6.2.tar.gz 71795 BLAKE2B 3a989123bb3ff6e9556291a828b678dc02ca068f0ffc893b289c90b77479b0da0243bcc94134aa911cb40bd91b37c816b41b730cd39492ad8fa8d557469dd99d SHA512 d9d2b9089a632d3f9ebeaa5554ad27eff4a3b7be8f9b119dbfa787b886fe113afb6ffc7f3219dcded1a05976f5247c33d1e235c1cb0a75619dffbbc0a93e0270
+DIST ansible-modules-hashivault-4.6.2.tar.gz 91244 BLAKE2B 475ecce4110d985876c556da7ec386b45feaa34e516ae9ac49b43b75f39a3ddb3c0969dc5c3dee4c31a9dea9c6f643c4bbfe9d6035d1c32f5d105c7c78bfd284 SHA512 4e4ff741c5652277f71cd211425404dad865838546d6c3dc4983333187201f9463ddaf819e5a675a962f5866fea4db3564c11dbe6a886739c2126a678607590f


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-admin/ansible-modules-hashivault/
@ 2021-12-19 20:25 William Hubbs
  0 siblings, 0 replies; 12+ messages in thread
From: William Hubbs @ 2021-12-19 20:25 UTC (permalink / raw
  To: gentoo-commits

commit:     6b7bda88ce3e0c06b66338729775e69c275da7e3
Author:     William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 19 20:22:55 2021 +0000
Commit:     William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Sun Dec 19 20:23:08 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b7bda88

app-admin/ansible-modules-hashivault: fix home page

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>

 .../ansible-modules-hashivault/ansible-modules-hashivault-4.6.2.ebuild  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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
index f3efbc5c0390..0b5551f59b44 100644
--- 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
@@ -6,7 +6,7 @@ PYTHON_COMPAT=( python3_8 python3_9 )
 inherit distutils-r1
 
 DESCRIPTION="Ansible module for hashicorp vault"
-HOMEPAGE="https://ansible.com/"
+HOMEPAGE="https://www.ansible.com/"
 
 if [[ ${PV} == 9999 ]]; then
 	inherit git-r3


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-admin/ansible-modules-hashivault/
@ 2022-06-17 23:10 William Hubbs
  0 siblings, 0 replies; 12+ messages in thread
From: William Hubbs @ 2022-06-17 23:10 UTC (permalink / raw
  To: gentoo-commits

commit:     988a0a277bf3ece5bb28c4a2221290473380ff7c
Author:     William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 17 23:00:39 2022 +0000
Commit:     William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Fri Jun 17 23:10:02 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=988a0a27

app-admin/ansible-modules-hashivault: add 4.6.8

Closes: https://bugs.gentoo.org/845420
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>

 app-admin/ansible-modules-hashivault/Manifest      |  1 +
 .../ansible-modules-hashivault-4.6.8.ebuild        | 29 ++++++++++++++++++++++
 2 files changed, 30 insertions(+)

diff --git a/app-admin/ansible-modules-hashivault/Manifest b/app-admin/ansible-modules-hashivault/Manifest
index 2989f15c4ef7..444113cd74a7 100644
--- a/app-admin/ansible-modules-hashivault/Manifest
+++ b/app-admin/ansible-modules-hashivault/Manifest
@@ -1 +1,2 @@
 DIST ansible-modules-hashivault-4.6.2.tar.gz 91244 BLAKE2B 475ecce4110d985876c556da7ec386b45feaa34e516ae9ac49b43b75f39a3ddb3c0969dc5c3dee4c31a9dea9c6f643c4bbfe9d6035d1c32f5d105c7c78bfd284 SHA512 4e4ff741c5652277f71cd211425404dad865838546d6c3dc4983333187201f9463ddaf819e5a675a962f5866fea4db3564c11dbe6a886739c2126a678607590f
+DIST ansible-modules-hashivault-4.6.8.tar.gz 94253 BLAKE2B 2b6a315cfd051a2e16d889a8784a9185b86b98b3d96ba19f6bdde8b628ce94622c360b60cb59dfcae790fc822f2c41eacd5428356b48324aa2704f0048821c2d SHA512 4b3487e553e6dea5fbefbb383ce22d018ed9f83378d601574badfb2be8dd3f98c54caf975690d3116df6cca970d8e2d3932f0d0ccb1f18f7145aee0beae79f96

diff --git a/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-4.6.8.ebuild b/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-4.6.8.ebuild
new file mode 100644
index 000000000000..e49655b5cde9
--- /dev/null
+++ b/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-4.6.8.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{8..11} )
+inherit distutils-r1
+
+DESCRIPTION="Ansible module for hashicorp vault"
+HOMEPAGE="https://www.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"


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-admin/ansible-modules-hashivault/
@ 2022-06-17 23:31 William Hubbs
  0 siblings, 0 replies; 12+ messages in thread
From: William Hubbs @ 2022-06-17 23:31 UTC (permalink / raw
  To: gentoo-commits

commit:     1639b90490242078f390e430e7573d8702a4d195
Author:     William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 17 23:30:41 2022 +0000
Commit:     William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Fri Jun 17 23:31:27 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1639b904

app-admin/ansible-modules-hashivault: disable py3.11

Signed-off-by: William Hubbs <williamh <AT> gentoo.org>

 .../ansible-modules-hashivault/ansible-modules-hashivault-4.6.8.ebuild  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-4.6.8.ebuild b/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-4.6.8.ebuild
index e49655b5cde9..860fd5bff8e9 100644
--- a/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-4.6.8.ebuild
+++ b/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-4.6.8.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{8..11} )
+PYTHON_COMPAT=( python3_{8..10} )
 inherit distutils-r1
 
 DESCRIPTION="Ansible module for hashicorp vault"


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-admin/ansible-modules-hashivault/
@ 2023-05-01 12:34 Michał Górny
  0 siblings, 0 replies; 12+ messages in thread
From: Michał Górny @ 2023-05-01 12:34 UTC (permalink / raw
  To: gentoo-commits

commit:     f518c12bb61a46ecc97f3f77abf37173fd455389
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon May  1 12:30:11 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon May  1 12:30:11 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f518c12b

app-admin/ansible-modules-hashivault: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-admin/ansible-modules-hashivault/Manifest      |  1 -
 .../ansible-modules-hashivault-4.6.2.ebuild        | 29 ----------------------
 2 files changed, 30 deletions(-)

diff --git a/app-admin/ansible-modules-hashivault/Manifest b/app-admin/ansible-modules-hashivault/Manifest
index 444113cd74a7..9c81fc6469bf 100644
--- a/app-admin/ansible-modules-hashivault/Manifest
+++ b/app-admin/ansible-modules-hashivault/Manifest
@@ -1,2 +1 @@
-DIST ansible-modules-hashivault-4.6.2.tar.gz 91244 BLAKE2B 475ecce4110d985876c556da7ec386b45feaa34e516ae9ac49b43b75f39a3ddb3c0969dc5c3dee4c31a9dea9c6f643c4bbfe9d6035d1c32f5d105c7c78bfd284 SHA512 4e4ff741c5652277f71cd211425404dad865838546d6c3dc4983333187201f9463ddaf819e5a675a962f5866fea4db3564c11dbe6a886739c2126a678607590f
 DIST ansible-modules-hashivault-4.6.8.tar.gz 94253 BLAKE2B 2b6a315cfd051a2e16d889a8784a9185b86b98b3d96ba19f6bdde8b628ce94622c360b60cb59dfcae790fc822f2c41eacd5428356b48324aa2704f0048821c2d SHA512 4b3487e553e6dea5fbefbb383ce22d018ed9f83378d601574badfb2be8dd3f98c54caf975690d3116df6cca970d8e2d3932f0d0ccb1f18f7145aee0beae79f96

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
deleted file mode 100644
index e0c9ec778f8e..000000000000
--- a/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-4.6.2.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_9 )
-inherit distutils-r1
-
-DESCRIPTION="Ansible module for hashicorp vault"
-HOMEPAGE="https://www.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"


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-admin/ansible-modules-hashivault/
@ 2023-05-03 18:29 Patrick McLean
  0 siblings, 0 replies; 12+ messages in thread
From: Patrick McLean @ 2023-05-03 18:29 UTC (permalink / raw
  To: gentoo-commits

commit:     6b7092f39da47ff789915ae264373ddd59a5b72a
Author:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
AuthorDate: Wed May  3 18:27:21 2023 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Wed May  3 18:27:21 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b7092f3

app-admin/ansible-modules-hashivault: add 5.1.0

Closes: https://bugs.gentoo.org/896458
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>

 app-admin/ansible-modules-hashivault/Manifest      |  1 +
 .../ansible-modules-hashivault-5.1.0.ebuild        | 35 ++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/app-admin/ansible-modules-hashivault/Manifest b/app-admin/ansible-modules-hashivault/Manifest
index 9c81fc6469bf..dd593c9ebb12 100644
--- a/app-admin/ansible-modules-hashivault/Manifest
+++ b/app-admin/ansible-modules-hashivault/Manifest
@@ -1 +1,2 @@
 DIST ansible-modules-hashivault-4.6.8.tar.gz 94253 BLAKE2B 2b6a315cfd051a2e16d889a8784a9185b86b98b3d96ba19f6bdde8b628ce94622c360b60cb59dfcae790fc822f2c41eacd5428356b48324aa2704f0048821c2d SHA512 4b3487e553e6dea5fbefbb383ce22d018ed9f83378d601574badfb2be8dd3f98c54caf975690d3116df6cca970d8e2d3932f0d0ccb1f18f7145aee0beae79f96
+DIST ansible-modules-hashivault-5.1.0.gh.tar.gz 100025 BLAKE2B 6bedb1269a5f39be777ab24e973a52a708d5871cf99f6e7018caa703bc4e8222fec9a40b6b5b980c67e2574034511fe810cba656278336dce0ca3b52f880bcb6 SHA512 cc442a80a4a15e013352202912af6db889afe793aa5baebd8056312eea42c7a819fdae32c9199ec297b9c4aa30719017bff964934d7f94571f368996328619ab

diff --git a/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-5.1.0.ebuild b/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-5.1.0.ebuild
new file mode 100644
index 000000000000..ac39347ecb46
--- /dev/null
+++ b/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-5.1.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{9..11} )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1
+
+DESCRIPTION="Ansible module for hashicorp vault"
+HOMEPAGE="https://www.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}.gh.tar.gz"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+
+RDEPEND="
+	>=app-admin/ansible-5.0.0[${PYTHON_USEDEP}]
+	>=dev-python/hvac-1.0.0[${PYTHON_USEDEP}]
+	dev-python/requests[${PYTHON_USEDEP}]
+"
+
+# The tests require a private instance of vault
+RESTRICT="test"
+
+python_prepare_all() {
+	sed -i 's:description-file:description_file:' setup.cfg || die
+	distutils-r1_python_prepare_all
+}


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-admin/ansible-modules-hashivault/
@ 2023-05-27 11:12 Sam James
  0 siblings, 0 replies; 12+ messages in thread
From: Sam James @ 2023-05-27 11:12 UTC (permalink / raw
  To: gentoo-commits

commit:     beec3833720dedfba38c59f9f04918c61e838a4d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat May 27 11:12:27 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat May 27 11:12:27 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=beec3833

app-admin/ansible-modules-hashivault: Keyword 5.1.0 arm64, #907166

Signed-off-by: Sam James <sam <AT> gentoo.org>

 .../ansible-modules-hashivault/ansible-modules-hashivault-5.1.0.ebuild  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-5.1.0.ebuild b/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-5.1.0.ebuild
index ac39347ecb46..054808151350 100644
--- a/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-5.1.0.ebuild
+++ b/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-5.1.0.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == 9999 ]]; then
 	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}.gh.tar.gz"
-	KEYWORDS="~amd64"
+	KEYWORDS="~amd64 ~arm64"
 fi
 
 LICENSE="MIT"


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-admin/ansible-modules-hashivault/
@ 2023-05-27 11:14 Sam James
  0 siblings, 0 replies; 12+ messages in thread
From: Sam James @ 2023-05-27 11:14 UTC (permalink / raw
  To: gentoo-commits

commit:     08989a924f3a3439eab7479f4628c28181df605c
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat May 27 11:13:02 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat May 27 11:13:02 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08989a92

app-admin/ansible-modules-hashivault: add github upstream metadata

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-admin/ansible-modules-hashivault/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/app-admin/ansible-modules-hashivault/metadata.xml b/app-admin/ansible-modules-hashivault/metadata.xml
index 7bb74a69d033..48548a10aa89 100644
--- a/app-admin/ansible-modules-hashivault/metadata.xml
+++ b/app-admin/ansible-modules-hashivault/metadata.xml
@@ -10,4 +10,7 @@
 		<name>Patrick McLean</name>
 	</maintainer>
 	<stabilize-allarches/>
+	<upstream>
+		<remote-id type="github">TerryHowe/ansible-modules-hashivault</remote-id>
+	</upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-admin/ansible-modules-hashivault/
@ 2024-04-30 17:37 Patrick McLean
  0 siblings, 0 replies; 12+ messages in thread
From: Patrick McLean @ 2024-04-30 17:37 UTC (permalink / raw
  To: gentoo-commits

commit:     dd22216d80551641fd19620410c76195e689887f
Author:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 30 17:36:31 2024 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Tue Apr 30 17:37:04 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd22216d

app-admin/ansible-modules-hashivault: add 5.2.1

Closes: https://bugs.gentoo.org/929270
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>

 app-admin/ansible-modules-hashivault/Manifest      |  1 +
 .../ansible-modules-hashivault-5.2.1.ebuild        | 35 ++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/app-admin/ansible-modules-hashivault/Manifest b/app-admin/ansible-modules-hashivault/Manifest
index dd593c9ebb12..c5d651fc237f 100644
--- a/app-admin/ansible-modules-hashivault/Manifest
+++ b/app-admin/ansible-modules-hashivault/Manifest
@@ -1,2 +1,3 @@
 DIST ansible-modules-hashivault-4.6.8.tar.gz 94253 BLAKE2B 2b6a315cfd051a2e16d889a8784a9185b86b98b3d96ba19f6bdde8b628ce94622c360b60cb59dfcae790fc822f2c41eacd5428356b48324aa2704f0048821c2d SHA512 4b3487e553e6dea5fbefbb383ce22d018ed9f83378d601574badfb2be8dd3f98c54caf975690d3116df6cca970d8e2d3932f0d0ccb1f18f7145aee0beae79f96
 DIST ansible-modules-hashivault-5.1.0.gh.tar.gz 100025 BLAKE2B 6bedb1269a5f39be777ab24e973a52a708d5871cf99f6e7018caa703bc4e8222fec9a40b6b5b980c67e2574034511fe810cba656278336dce0ca3b52f880bcb6 SHA512 cc442a80a4a15e013352202912af6db889afe793aa5baebd8056312eea42c7a819fdae32c9199ec297b9c4aa30719017bff964934d7f94571f368996328619ab
+DIST ansible-modules-hashivault-5.2.1.gh.tar.gz 101636 BLAKE2B 3395dc86917b8a35b6ff34f9c518969100fde0e0f760760cbf7c126f5f782e22a01bfe60e9dae89cef49839e80d4f5c0ff2731672cdd616c3eac545d6b507072 SHA512 374edef8c47a27c6a9cde55e8b9294b05c0f222a2ff21e68551558e197d6a938c17a88fa85f18e25f2123585ed0465507b2759036ac834a55ee68c13f54304b4

diff --git a/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-5.2.1.ebuild b/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-5.2.1.ebuild
new file mode 100644
index 000000000000..729da2c55e80
--- /dev/null
+++ b/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-5.2.1.ebuild
@@ -0,0 +1,35 @@
+# 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
+inherit distutils-r1
+
+DESCRIPTION="Ansible module for hashicorp vault"
+HOMEPAGE="https://www.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}.gh.tar.gz"
+	KEYWORDS="~amd64 ~arm64"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+
+RDEPEND="
+	>=app-admin/ansible-2.12.0[${PYTHON_USEDEP}]
+	>=dev-python/hvac-1.2.1[${PYTHON_USEDEP}]
+	dev-python/requests[${PYTHON_USEDEP}]
+"
+
+# The tests require a private instance of vault
+RESTRICT="test"
+
+python_prepare_all() {
+	sed -i 's:description-file:description_file:' setup.cfg || die
+	distutils-r1_python_prepare_all
+}


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-admin/ansible-modules-hashivault/
@ 2024-04-30 17:38 Patrick McLean
  0 siblings, 0 replies; 12+ messages in thread
From: Patrick McLean @ 2024-04-30 17:38 UTC (permalink / raw
  To: gentoo-commits

commit:     6a094131a7c31149d249af4fe8b408bfbce4e69b
Author:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 30 17:37:52 2024 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Tue Apr 30 17:37:52 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a094131

app-admin/ansible-modules-hashivault: drop 4.6.8, 5.1.0

Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>

 app-admin/ansible-modules-hashivault/Manifest      |  2 --
 .../ansible-modules-hashivault-4.6.8.ebuild        | 29 ------------------
 .../ansible-modules-hashivault-5.1.0.ebuild        | 35 ----------------------
 3 files changed, 66 deletions(-)

diff --git a/app-admin/ansible-modules-hashivault/Manifest b/app-admin/ansible-modules-hashivault/Manifest
index c5d651fc237f..2dbe0830c118 100644
--- a/app-admin/ansible-modules-hashivault/Manifest
+++ b/app-admin/ansible-modules-hashivault/Manifest
@@ -1,3 +1 @@
-DIST ansible-modules-hashivault-4.6.8.tar.gz 94253 BLAKE2B 2b6a315cfd051a2e16d889a8784a9185b86b98b3d96ba19f6bdde8b628ce94622c360b60cb59dfcae790fc822f2c41eacd5428356b48324aa2704f0048821c2d SHA512 4b3487e553e6dea5fbefbb383ce22d018ed9f83378d601574badfb2be8dd3f98c54caf975690d3116df6cca970d8e2d3932f0d0ccb1f18f7145aee0beae79f96
-DIST ansible-modules-hashivault-5.1.0.gh.tar.gz 100025 BLAKE2B 6bedb1269a5f39be777ab24e973a52a708d5871cf99f6e7018caa703bc4e8222fec9a40b6b5b980c67e2574034511fe810cba656278336dce0ca3b52f880bcb6 SHA512 cc442a80a4a15e013352202912af6db889afe793aa5baebd8056312eea42c7a819fdae32c9199ec297b9c4aa30719017bff964934d7f94571f368996328619ab
 DIST ansible-modules-hashivault-5.2.1.gh.tar.gz 101636 BLAKE2B 3395dc86917b8a35b6ff34f9c518969100fde0e0f760760cbf7c126f5f782e22a01bfe60e9dae89cef49839e80d4f5c0ff2731672cdd616c3eac545d6b507072 SHA512 374edef8c47a27c6a9cde55e8b9294b05c0f222a2ff21e68551558e197d6a938c17a88fa85f18e25f2123585ed0465507b2759036ac834a55ee68c13f54304b4

diff --git a/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-4.6.8.ebuild b/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-4.6.8.ebuild
deleted file mode 100644
index 657bfb2bda2b..000000000000
--- a/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-4.6.8.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{9..10} )
-inherit distutils-r1
-
-DESCRIPTION="Ansible module for hashicorp vault"
-HOMEPAGE="https://www.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/ansible-modules-hashivault-5.1.0.ebuild b/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-5.1.0.ebuild
deleted file mode 100644
index 054808151350..000000000000
--- a/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-5.1.0.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-PYTHON_COMPAT=( python3_{9..11} )
-DISTUTILS_USE_PEP517=setuptools
-inherit distutils-r1
-
-DESCRIPTION="Ansible module for hashicorp vault"
-HOMEPAGE="https://www.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}.gh.tar.gz"
-	KEYWORDS="~amd64 ~arm64"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-
-RDEPEND="
-	>=app-admin/ansible-5.0.0[${PYTHON_USEDEP}]
-	>=dev-python/hvac-1.0.0[${PYTHON_USEDEP}]
-	dev-python/requests[${PYTHON_USEDEP}]
-"
-
-# The tests require a private instance of vault
-RESTRICT="test"
-
-python_prepare_all() {
-	sed -i 's:description-file:description_file:' setup.cfg || die
-	distutils-r1_python_prepare_all
-}


^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2024-04-30 17:38 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-27 11:12 [gentoo-commits] repo/gentoo:master commit in: app-admin/ansible-modules-hashivault/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-04-30 17:38 Patrick McLean
2024-04-30 17:37 Patrick McLean
2023-05-27 11:14 Sam James
2023-05-03 18:29 Patrick McLean
2023-05-01 12:34 Michał Górny
2022-06-17 23:31 William Hubbs
2022-06-17 23:10 William Hubbs
2021-12-19 20:25 William Hubbs
2021-03-05  2:41 William Hubbs
2021-02-21 22:34 William Hubbs
2021-02-21 20:54 William Hubbs

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox