commit: eed6e10770ba599475d757930610a4349f483b91 Author: Zac Medico <zmedico <AT> gentoo <DOT> org> AuthorDate: Thu Dec 5 22:20:34 2024 +0000 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org> CommitDate: Thu Dec 5 22:26:54 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eed6e107
app-containers/podman-compose: new package, add 1.2.0 Import latest ebuild from guru repo. Closes: https://bugs.gentoo.org/717748 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org> app-containers/podman-compose/Manifest | 1 + app-containers/podman-compose/metadata.xml | 12 +++++++ .../podman-compose/podman-compose-1.2.0.ebuild | 40 ++++++++++++++++++++++ 3 files changed, 53 insertions(+) diff --git a/app-containers/podman-compose/Manifest b/app-containers/podman-compose/Manifest new file mode 100644 index 000000000000..9b60d9686f04 --- /dev/null +++ b/app-containers/podman-compose/Manifest @@ -0,0 +1 @@ +DIST podman-compose-1.2.0.gh.tar.gz 84708 BLAKE2B ab1f458cef6db99c5727a6676cd1a15ccc58108a14763b9bf8e1093bc674e1adbee21c81744a0cb7798be6134e7b566a4ed9222be71bda0d8f7e4568b3d2fcb7 SHA512 2b45bcb331e334d362a0906563377e1514aca95f50c575e4b53039e58394b39af1ceeb606d90c652ef6d8cc5e8764a27edf11fc9782a89b186812a474b583579 diff --git a/app-containers/podman-compose/metadata.xml b/app-containers/podman-compose/metadata.xml new file mode 100644 index 000000000000..993b06717a6d --- /dev/null +++ b/app-containers/podman-compose/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>[email protected]</email> + <name>Zac Medico</name> + </maintainer> + <upstream> + <remote-id type="pypi">podman-compose</remote-id> + <remote-id type="github">containers/podman-compose</remote-id> + </upstream> +</pkgmetadata> diff --git a/app-containers/podman-compose/podman-compose-1.2.0.ebuild b/app-containers/podman-compose/podman-compose-1.2.0.ebuild new file mode 100644 index 000000000000..e0cc4093d423 --- /dev/null +++ b/app-containers/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 +}
