26 lines
515 B
Bash
26 lines
515 B
Bash
|
# Copyright 2020 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=8
|
||
|
|
||
|
DISTUTILS_USE_PEP517=setuptools
|
||
|
PYPI_NO_NORMALIZE=1
|
||
|
PYTHON_COMPAT=( python3_{8..11} )
|
||
|
|
||
|
inherit distutils-r1 pypi
|
||
|
|
||
|
DESCRIPTION="A script to run docker-compose.yml using podman"
|
||
|
HOMEPAGE="https://github.com/containers/podman-compose"
|
||
|
|
||
|
KEYWORDS="~amd64 ~x86"
|
||
|
LICENSE="GPL-2"
|
||
|
SLOT="0"
|
||
|
|
||
|
DEPEND=""
|
||
|
RDEPEND="
|
||
|
${DEPEND}
|
||
|
dev-python/pyyaml[${PYTHON_USEDEP}]
|
||
|
dev-python/python-dotenv[${PYTHON_USEDEP}]
|
||
|
"
|
||
|
BDEPEND=""
|