# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{10..12} ) EGIT_REPO_URI="https://github.com/vmware/${PN}.git" inherit distutils-r1 git-r3 DESCRIPTION="Utility to check AWS resource limits and usage" HOMEPAGE="https://github.com/vmware/vcd-cli" LICENSE="Apache-2.0" SLOT="0" RESTRICT="test" RDEPEND="dev-python/click[${PYTHON_USEDEP}] dev-python/colorama[${PYTHON_USEDEP}] dev-python/keyring[${PYTHON_USEDEP}] dev-python/pycryptodome[${PYTHON_USEDEP}] dev-python/pyvcloud[${PYTHON_USEDEP}] dev-python/tabulate[${PYTHON_USEDEP}] $(python_gen_impl_dep sqlite)" DEPEND="${RDEPEND}" BDEPEND="test? ( dev-python/unittest-xml-reporting[${PYTHON_USEDEP}] )" distutils_enable_tests unittest python_prepare_all() { # pbr is unable to detect version echo -e "Name: ${PN}\nVersion: ${PV}" > PKG-INFO \ || die "echo failed for PKG-INFO" # Relax requirements sed -i -e '/pycryptodome/s/==/>=/' \ -e '/keyring/s/10.6.0, <= //' \ -e '/pyvcloud/s/==/>=/' requirements.txt \ || die "sed failed for requirements.txt" distutils-r1_python_prepare_all } python_install_all() { distutils-r1_python_install_all # Don't install license find "${ED}" -type f -name "open_source_license_VMware_vCloud_Director_CLI_21.0.0_GA.txt" -exec rm -rv {} + \ || die "test removing failed" }