diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2026-03-26 07:16:23 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2026-03-26 07:16:23 +0000 |
| commit | 76d18693c80d8cf0f77f1393b55115db5a2e1f1a (patch) | |
| tree | 5404e20a9080d01c0d687927a763f5c2de506492 /dev-python/podman | |
| parent | a6c077a14ab69684019380246b01943bdbe4d7a1 (diff) | |
| download | baldeagleos-repo-76d18693c80d8cf0f77f1393b55115db5a2e1f1a.tar.gz baldeagleos-repo-76d18693c80d8cf0f77f1393b55115db5a2e1f1a.tar.xz baldeagleos-repo-76d18693c80d8cf0f77f1393b55115db5a2e1f1a.zip | |
Adding metadata
Diffstat (limited to 'dev-python/podman')
| -rw-r--r-- | dev-python/podman/Manifest | 1 | ||||
| -rw-r--r-- | dev-python/podman/podman-5.8.0.ebuild | 51 |
2 files changed, 52 insertions, 0 deletions
diff --git a/dev-python/podman/Manifest b/dev-python/podman/Manifest index dd7e8c112d53..907e546a855d 100644 --- a/dev-python/podman/Manifest +++ b/dev-python/podman/Manifest @@ -1 +1,2 @@ DIST podman-py-5.7.0.gh.tar.gz 186239 BLAKE2B 40e0ed15bbee559d89cf63389246a1b3e01da64e25d5cfaed72dc7f9f5098bcf5f1ab92b5d2d1c07ac283cf3c1ffb2bfaccb5372137a67151c2eb901deaadcaa SHA512 4e6d761f8ee2dd4b08062773a0986f44ea52aac2478c97a56f2dfdb60fe561029ecffd5fcf51b067f8730efc51a6e57254a77554169e298a9c61c27a3aa456cb +DIST podman-py-5.8.0.gh.tar.gz 197092 BLAKE2B bb8b506f3fc4e3d86cb99b30ab1858f31b7ba03861ff2f368beaf89c7325b0548efd91a7838052b78f57383293ec2399e4af98ad949051bf35f5b4a2baf151df SHA512 a0d9014ba8d44a91c9c1dbb7afccf9b3ad3badfb05e44f780069bf0117cad08d753ebe19b05c2395f7112a0b36bd100bd1dd96c7d9c5ba1181c6d5d3a2d73c79 diff --git a/dev-python/podman/podman-5.8.0.ebuild b/dev-python/podman/podman-5.8.0.ebuild new file mode 100644 index 000000000000..779a66382d62 --- /dev/null +++ b/dev-python/podman/podman-5.8.0.ebuild @@ -0,0 +1,51 @@ +# 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} ) + +inherit distutils-r1 + +MY_P=podman-py-${PV/_p/.post} +DESCRIPTION="A library to interact with a Podman server" +HOMEPAGE=" + https://github.com/containers/podman-py/ + https://pypi.org/project/podman/ +" +SRC_URI=" + https://github.com/containers/podman-py/archive/v${PV/_p/.post}.tar.gz + -> ${MY_P}.gh.tar.gz +" +S=${WORKDIR}/${MY_P} + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + >=dev-python/requests-2.24[${PYTHON_USEDEP}] + >=dev-python/rich-12.5.1[${PYTHON_USEDEP}] + dev-python/urllib3[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + >=dev-python/requests-mock-1.11.0[${PYTHON_USEDEP}] + ) +" + +EPYTEST_PLUGINS=() +distutils_enable_tests pytest + +python_test() { + local EPYTEST_DESELECT=( + # TODO + podman/tests/unit/test_quadletsmanager.py::QuadletsManagerTestCase::test_get_404 + podman/tests/unit/test_volumesmanager.py::VolumesManagerTestCase::test_get_404 + ) + + # integration tests require a workable podman server, + # and it doesn't seem to work in ebuild env + epytest podman/tests/unit +} |
