From 9c3e742f588f9bc155040bcaa31ba123cd9f8d7a Mon Sep 17 00:00:00 2001 From: Anton Schubert Date: Sun, 25 Oct 2020 22:03:26 +0100 Subject: [PATCH] app-emulation/podman-compose: add script Package-Manager: Portage-3.0.8, Repoman-3.0.1 --- app-emulation/podman-compose/Manifest | 2 ++ app-emulation/podman-compose/metadata.xml | 7 +++++ .../podman-compose-0.20201012.ebuild | 28 +++++++++++++++++++ 3 files changed, 37 insertions(+) create mode 100644 app-emulation/podman-compose/Manifest create mode 100644 app-emulation/podman-compose/metadata.xml create mode 100644 app-emulation/podman-compose/podman-compose-0.20201012.ebuild diff --git a/app-emulation/podman-compose/Manifest b/app-emulation/podman-compose/Manifest new file mode 100644 index 0000000..ba20591 --- /dev/null +++ b/app-emulation/podman-compose/Manifest @@ -0,0 +1,2 @@ +EBUILD podman-compose-0.20201012.ebuild 621 BLAKE2B 93aff5406689b47e5db960db715d1dfb3f5991c1a9d0bc985fcece22ccb928f1d6a3d6f67c6e599643a41cc8f6de924c7fb3506d4bc7ca1cea472935d303c0ca SHA512 acae887b525a831c3625566e94c9db48e51a912c69298101d0962e19678b1db1c96044dbe844066608c88f6c857e5b3050111fcb03bb086024f2d825f43e414b +MISC metadata.xml 216 BLAKE2B 98b55d77f4255ca20a41fef0a66299cf6baec1df788810e210ecad6a6352c642ca652c2d404e24ff181f3c34cee7ef750d7985d7826e9c6ee7765dd657dc765c SHA512 6eacf7815e19e9e770cad73069181bdd082df3996c1cba2c1eead43fff8d001390152049f0f50d8bab7b3554873918f2ffeb972bbd2698243e5a0ffd33a6af1b diff --git a/app-emulation/podman-compose/metadata.xml b/app-emulation/podman-compose/metadata.xml new file mode 100644 index 0000000..5277f6f --- /dev/null +++ b/app-emulation/podman-compose/metadata.xml @@ -0,0 +1,7 @@ + + + + +ischluff@mailbox.org + + diff --git a/app-emulation/podman-compose/podman-compose-0.20201012.ebuild b/app-emulation/podman-compose/podman-compose-0.20201012.ebuild new file mode 100644 index 0000000..92c27db --- /dev/null +++ b/app-emulation/podman-compose/podman-compose-0.20201012.ebuild @@ -0,0 +1,28 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit git-r3 + +PYTHON_COMPAT=( python3_{6,7,8} ) +DISTUTILS_USE_SETUPTOOLS=rdepend +inherit distutils-r1 + +DESCRIPTION="a script to run docker-compose.yml using podman" +HOMEPAGE="https://github.com/containers/podman-compose" +EGIT_REPO_URI="https://github.com/containers/podman-compose.git" +EGIT_COMMIT="f6a3cb0aff7acd7f36b87f39da0e9959060f8039" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DEPEND="" +RDEPEND=" + ${DEPEND} + dev-python/pyyaml[${PYTHON_USEDEP}] +" +BDEPEND=""