summaryrefslogtreecommitdiff
path: root/dev-python/apache-libcloud/apache-libcloud-3.9.0.ebuild
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-05-31 17:23:40 -0500
committerroot <root@alpha.trunkmasters.com>2026-05-31 17:23:40 -0500
commitf953dc70343485250b836ad157649aaad47ac5bc (patch)
treee3634b454cf48f10ce9f8d12f10e60ad0a749239 /dev-python/apache-libcloud/apache-libcloud-3.9.0.ebuild
parent5e07081cf4f5afaef79409b430a018b1daec073e (diff)
downloadbaldeagleos-repo-f953dc70343485250b836ad157649aaad47ac5bc.tar.gz
baldeagleos-repo-f953dc70343485250b836ad157649aaad47ac5bc.tar.xz
baldeagleos-repo-f953dc70343485250b836ad157649aaad47ac5bc.zip
Adding metadata
Diffstat (limited to 'dev-python/apache-libcloud/apache-libcloud-3.9.0.ebuild')
-rw-r--r--dev-python/apache-libcloud/apache-libcloud-3.9.0.ebuild72
1 files changed, 0 insertions, 72 deletions
diff --git a/dev-python/apache-libcloud/apache-libcloud-3.9.0.ebuild b/dev-python/apache-libcloud/apache-libcloud-3.9.0.ebuild
deleted file mode 100644
index 8007c7ba2d77..000000000000
--- a/dev-python/apache-libcloud/apache-libcloud-3.9.0.ebuild
+++ /dev/null
@@ -1,72 +0,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_{10..14} )
-PYTHON_REQ_USE="ssl(+)"
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Unified Interface to the Cloud - python support libs"
-HOMEPAGE="
- https://libcloud.apache.org/
- https://github.com/apache/libcloud/
- https://pypi.org/project/apache-libcloud/
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~riscv x86"
-IUSE="examples"
-
-# Includes optional driver dependencies that are also test dependencies.
-RDEPEND="
- >=dev-python/cryptography-44.0.2[${PYTHON_USEDEP}]
- dev-python/fasteners[${PYTHON_USEDEP}]
- >=dev-python/pyopenssl-25.0.0[${PYTHON_USEDEP}]
- >=dev-python/requests-2.26.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
- test? (
- dev-python/requests-mock[${PYTHON_USEDEP}]
- )
-"
-
-EPYTEST_PLUGINS=()
-EPYTEST_XDIST=1
-distutils_enable_tests pytest
-
-src_prepare() {
- distutils-r1_src_prepare
-
- if use examples; then
- mkdir examples || die
- mv example_*.py examples || die
- fi
-
- # needed for tests
- cp libcloud/test/secrets.py-dist libcloud/test/secrets.py || die
-}
-
-python_test() {
- local EPYTEST_DESELECT=(
- # TODO
- libcloud/test/test_init.py::TestUtils::test_init_once_and_debug_mode
- libcloud/test/common/test_openstack_identity.py::OpenStackIdentityConnectionTestCase::test_token_expiration_and_force_reauthenti
- )
- local EPYTEST_IGNORE=(
- libcloud/test/benchmarks
- # broken by modern paramiko
- libcloud/test/compute/test_ssh_client.py
- )
-
- local -x NO_INTERNET=1
- epytest
-}
-
-src_install() {
- use examples && dodoc -r examples
- distutils-r1_src_install
-}