commit: d3feb4e30200a318ce3098423fe1fc947a60c993 Author: Viorel Munteanu <ceamac <AT> gentoo <DOT> org> AuthorDate: Thu Dec 5 08:08:02 2024 +0000 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org> CommitDate: Thu Dec 5 08:16:28 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d3feb4e3
dev-python/podman-compose: add 1.2.0 Closes: https://bugs.gentoo.org/945869 Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org> dev-python/podman-compose/Manifest | 1 + .../podman-compose/podman-compose-1.2.0.ebuild | 40 ++++++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/dev-python/podman-compose/Manifest b/dev-python/podman-compose/Manifest index fa25ab103..3a20e7bc3 100644 --- a/dev-python/podman-compose/Manifest +++ b/dev-python/podman-compose/Manifest @@ -1 +1,2 @@ DIST podman-compose-1.0.6.gh.tar.gz 58426 BLAKE2B 4a200d7abb77535d631704e96f600c360cd03a70274c5ed763a6f21a309f9be1225749e4f34b1df00973e9c1de191ec3d43bf35588d912faac25de52e4dd85be SHA512 eb6972c51fd02c7a7dec364d18417c4f093f12ab90ba7061be189de7130c8eb0becb5a1653ebf7db0611470b52257a4a1eaae52891f434ca73fbc6dd30da5f56 +DIST podman-compose-1.2.0.gh.tar.gz 84708 BLAKE2B ab1f458cef6db99c5727a6676cd1a15ccc58108a14763b9bf8e1093bc674e1adbee21c81744a0cb7798be6134e7b566a4ed9222be71bda0d8f7e4568b3d2fcb7 SHA512 2b45bcb331e334d362a0906563377e1514aca95f50c575e4b53039e58394b39af1ceeb606d90c652ef6d8cc5e8764a27edf11fc9782a89b186812a474b583579 diff --git a/dev-python/podman-compose/podman-compose-1.2.0.ebuild b/dev-python/podman-compose/podman-compose-1.2.0.ebuild new file mode 100644 index 000000000..e0cc4093d --- /dev/null +++ b/dev-python/podman-compose/podman-compose-1.2.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 2023-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..13} ) +inherit distutils-r1 + +DESCRIPTION="A script to run docker-compose.yml using Podman" +HOMEPAGE="https://github.com/containers/podman-compose" +SRC_URI="https://github.com/containers/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=" + app-containers/aardvark-dns + app-containers/netavark + app-containers/podman +" + +RDEPEND=" + ${DEPEND} + dev-python/pyaml[${PYTHON_USEDEP}] + dev-python/python-dotenv[${PYTHON_USEDEP}] +" + +BDEPEND=" + test? ( + dev-python/parameterized[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +python_test() { + epytest pytests +}
