commit: 77d5e7b5760f6a52e475aab28fb1722b8ab7db68 Author: Norbert Norbiros <norbiros <AT> protonmail <DOT> com> AuthorDate: Thu May 15 16:08:29 2025 +0000 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org> CommitDate: Fri May 16 02:12:33 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77d5e7b5
app-containers/podman-compose: add 1.4.0 Signed-off-by: Norbert Norbiros <norbiros <AT> protonmail.com> Closes: https://github.com/gentoo/gentoo/pull/42094 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org> app-containers/podman-compose/Manifest | 1 + .../podman-compose/podman-compose-1.4.0.ebuild | 41 ++++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/app-containers/podman-compose/Manifest b/app-containers/podman-compose/Manifest index d0382f962bb3..75fadcd90900 100644 --- a/app-containers/podman-compose/Manifest +++ b/app-containers/podman-compose/Manifest @@ -1,2 +1,3 @@ DIST podman-compose-1.2.0.gh.tar.gz 84708 BLAKE2B ab1f458cef6db99c5727a6676cd1a15ccc58108a14763b9bf8e1093bc674e1adbee21c81744a0cb7798be6134e7b566a4ed9222be71bda0d8f7e4568b3d2fcb7 SHA512 2b45bcb331e334d362a0906563377e1514aca95f50c575e4b53039e58394b39af1ceeb606d90c652ef6d8cc5e8764a27edf11fc9782a89b186812a474b583579 DIST podman-compose-1.3.0.gh.tar.gz 103006 BLAKE2B aa3202e23728d71cb7685ceeac5ba67d638477666ae5863d67ed36d404a84e897ffbf60c4188aedf5fda06b43db697baff338f43c8637981ffa3c4e62872f140 SHA512 7f7be6d0d230554f766aa9d7d2e4a8b16155780706859f6f0ee94b7e73bd6b095f20948ff168f5492690ee7e8f5acd7dd8d88219d8721c483214eba74575a582 +DIST podman-compose-1.4.0.gh.tar.gz 119300 BLAKE2B 12bcedb04fc4d4566e21b555d561e142b38a81c12fbeb3a573c7ddc6aa906ad20c8586558a43b14ca607cfd6c33dc9e3284bf623db14d2b8f81e09e524ab5a9c SHA512 f687f150538aa73acdbcd6f3473c0d254a94f207d0ed20461b53211457958349bb43a289783b9742fe9023d97abcf996f4c16b95e74d32ae919f5404085b4897 diff --git a/app-containers/podman-compose/podman-compose-1.4.0.ebuild b/app-containers/podman-compose/podman-compose-1.4.0.ebuild new file mode 100644 index 000000000000..e7a9f3de437e --- /dev/null +++ b/app-containers/podman-compose/podman-compose-1.4.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 2023-2025 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}] + dev-python/pytest[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +python_test() { + epytest tests/unit +}
