app-emulation/podman-compose: add script
Package-Manager: Portage-3.0.8, Repoman-3.0.1
This commit is contained in:
parent
e08c13b76d
commit
9c3e742f58
3 changed files with 37 additions and 0 deletions
2
app-emulation/podman-compose/Manifest
Normal file
2
app-emulation/podman-compose/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
EBUILD podman-compose-0.20201012.ebuild 621 BLAKE2B 93aff5406689b47e5db960db715d1dfb3f5991c1a9d0bc985fcece22ccb928f1d6a3d6f67c6e599643a41cc8f6de924c7fb3506d4bc7ca1cea472935d303c0ca SHA512 acae887b525a831c3625566e94c9db48e51a912c69298101d0962e19678b1db1c96044dbe844066608c88f6c857e5b3050111fcb03bb086024f2d825f43e414b
|
||||
MISC metadata.xml 216 BLAKE2B 98b55d77f4255ca20a41fef0a66299cf6baec1df788810e210ecad6a6352c642ca652c2d404e24ff181f3c34cee7ef750d7985d7826e9c6ee7765dd657dc765c SHA512 6eacf7815e19e9e770cad73069181bdd082df3996c1cba2c1eead43fff8d001390152049f0f50d8bab7b3554873918f2ffeb972bbd2698243e5a0ffd33a6af1b
|
||||
7
app-emulation/podman-compose/metadata.xml
Normal file
7
app-emulation/podman-compose/metadata.xml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>ischluff@mailbox.org</email>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
|
|
@ -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=""
|
||||
Loading…
Add table
Add a link
Reference in a new issue