Diff ansible-modules-hashivault-4.6.8 with a ansible-modules-hashivault-5.1.0
/usr/portage/app-admin/ansible-modules-hashivault/ansible-modules-hashivault-5.1.0.ebuild 2023-10-09 14:52:28.136368316 +0300 | ||
---|---|---|
1 | 1 |
# Copyright 1999-2023 Gentoo Authors |
2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
3 | 3 | |
4 |
EAPI=7 |
|
5 |
PYTHON_COMPAT=( python3_{9..10} ) |
|
4 |
EAPI=8 |
|
5 |
PYTHON_COMPAT=( python3_{9..11} ) |
|
6 |
DISTUTILS_USE_PEP517=setuptools |
|
6 | 7 |
inherit distutils-r1 |
7 | 8 | |
8 | 9 |
DESCRIPTION="Ansible module for hashicorp vault" |
... | ... | |
12 | 13 |
inherit git-r3 |
13 | 14 |
EGIT_REPO_URI="https://github.com/TerryHowe/ansible-modules-hashivault.git" |
14 | 15 |
else |
15 |
SRC_URI="https://github.com/TerryHowe/ansible-modules-hashivault/archive/${PV}.tar.gz -> ${P}.tar.gz" |
|
16 |
KEYWORDS="~amd64" |
|
16 |
SRC_URI="https://github.com/TerryHowe/ansible-modules-hashivault/archive/${PV}.tar.gz -> ${P}.gh.tar.gz" |
|
17 |
KEYWORDS="~amd64 ~arm64" |
|
17 | 18 |
fi |
18 | 19 | |
19 | 20 |
LICENSE="MIT" |
20 | 21 |
SLOT="0" |
21 | 22 | |
22 | 23 |
RDEPEND=" |
23 |
>=app-admin/ansible-2.0.0[${PYTHON_USEDEP}] |
|
24 |
>=dev-python/hvac-0.9.5[${PYTHON_USEDEP}] |
|
24 |
>=app-admin/ansible-5.0.0[${PYTHON_USEDEP}] |
|
25 |
>=dev-python/hvac-1.0.0[${PYTHON_USEDEP}] |
|
25 | 26 |
dev-python/requests[${PYTHON_USEDEP}] |
26 | 27 |
" |
27 | 28 | |
28 | 29 |
# The tests require a private instance of vault |
29 | 30 |
RESTRICT="test" |
31 | ||
32 |
python_prepare_all() { |
|
33 |
sed -i 's:description-file:description_file:' setup.cfg || die |
|
34 |
distutils-r1_python_prepare_all |
|
35 |
} |