Install this version:
emerge -a =dev-python/pyvcloud-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-python/pyvcloud-9999
Or alternatively:
emerge --autounmask-write -a =dev-python/pyvcloud-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | 0 |
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{12,13} )
inherit distutils-r1 edo git-r3
DESCRIPTION="VMware vCloud Director Python SDK"
HOMEPAGE="https://github.com/vmware/pyvcloud"
EGIT_REPO_URI="https://github.com/vmware/${PN}.git"
LICENSE="Apache-2.0"
SLOT="0"
RESTRICT="test" # no DNS RR anymore
PROPERTIES="test_network"
RDEPEND="dev-python/humanfriendly[${PYTHON_USEDEP}]
dev-python/lxml[${PYTHON_USEDEP}]
dev-python/python-dateutil[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dev-python/vcd-api-schemas-type[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}"
BDEPEND="test? ( dev-python/pygments[${PYTHON_USEDEP}]
dev-python/unittest-xml-reporting[${PYTHON_USEDEP}] )"
distutils_enable_tests unittest
python_test() {
edo pushd tests
edo ./run-tests.sh "${PYTHON}" -m unittest discover -v test
edo popd
}
python_install_all() {
distutils-r1_python_install_all
# Don't install license
find "${ED}" -type f -name "open_source_license_pyvCloud_20.0.0_GA.txt" -exec rm -rv {} + \
|| die "test removing failed"
}
dev-python/humanfriendly[] dev-python/lxml[] dev-python/python-dateutil[] dev-python/pyyaml[] dev-python/requests[] dev-python/vcd-api-schemas-type[]
dev-python/humanfriendly[] dev-python/lxml[] dev-python/python-dateutil[] dev-python/pyyaml[] dev-python/requests[] dev-python/vcd-api-schemas-type[]
test? ( dev-python/pygments[] dev-python/unittest-xml-reporting[] )