dev-python/podman: Bump to 5.8.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2026-03-26 05:30:17 +01:00
parent 2fbc58099a
commit f71e7c2808
2 changed files with 52 additions and 0 deletions

View File

@@ -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

View File

@@ -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_{11..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
}