2021-05-09 14:56:21 +02:00
|
|
|
# Copyright 2020-2021 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2021-10-27 17:36:40 +02:00
|
|
|
EAPI="8"
|
2021-05-09 14:56:21 +02:00
|
|
|
|
2021-12-19 21:13:43 +01:00
|
|
|
COMMIT_ID="49fe6e7e0f35dd5db8fe46edf29ec5e60848e7d6"
|
2021-09-13 07:49:12 +02:00
|
|
|
|
2021-12-02 21:27:16 +01:00
|
|
|
PYTHON_COMPAT=( python3_{9..10} )
|
2021-05-09 14:56:21 +02:00
|
|
|
inherit distutils-r1
|
|
|
|
|
|
|
|
DESCRIPTION="Run docker-compose files without root with podman"
|
2021-05-15 23:59:47 +02:00
|
|
|
HOMEPAGE="https://pypi.org/project/podman-compose/ https://github.com/containers/podman-compose"
|
2021-05-09 14:56:21 +02:00
|
|
|
|
|
|
|
if [[ ${PV} == *9999 ]]; then
|
|
|
|
EGIT_REPO_URI="https://github.com/containers/podman-compose.git"
|
|
|
|
inherit git-r3
|
|
|
|
else
|
|
|
|
if [[ ${PV} == *_p* ]]; then
|
|
|
|
SRC_URI="https://github.com/containers/podman-compose/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
|
|
|
|
S="${WORKDIR}/podman-compose-${COMMIT_ID}"
|
|
|
|
else
|
|
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
S="${WORKDIR}/qTox-${PV}"
|
|
|
|
fi
|
|
|
|
fi
|
2021-12-21 07:20:02 +01:00
|
|
|
KEYWORDS="~amd64"
|
2021-05-09 14:56:21 +02:00
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
|
|
|
IUSE="test"
|
|
|
|
RESTRICT="!test? ( test )"
|
|
|
|
|
|
|
|
RDEPEND="
|
2021-12-21 07:20:02 +01:00
|
|
|
app-containers/podman
|
2021-05-09 14:56:21 +02:00
|
|
|
dev-python/pyyaml[${PYTHON_USEDEP}]
|
|
|
|
"
|
2021-12-25 14:41:13 +01:00
|
|
|
DEPEND="
|
|
|
|
${RDEPEND}
|
|
|
|
!app-emulation/podman-compose
|
|
|
|
"
|