28 lines
626 B
Bash
28 lines
626 B
Bash
# Copyright 2020-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit git-r3
|
|
|
|
PYTHON_COMPAT=( python3_{7,8,9} )
|
|
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="6289d25a42cfdb5dfcac863b1b1b4ace32ce31b7"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
DEPEND=""
|
|
RDEPEND="
|
|
${DEPEND}
|
|
dev-python/pyyaml[${PYTHON_USEDEP}]
|
|
"
|
|
BDEPEND=""
|