docker-py-4.0.2didos
download
# Copyright 1999-2019 Gentoo Authors
# Copyright 2019 Jan Chren (rindeal)
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit rindeal
## git-hosting.eclass:
GH_RN="github:docker"
## python-r1.eclass:
PYTHON_COMPAT=( py{py3,thon{2_7,3_{5..7}}} )
## EXPORT_FUNCTIONS: src_unpack
## variables: HOMEPAGE, SRC_URI
inherit git-hosting
## EXPORT_FUNCTIONS: src_prepare src_configure src_compile src_test src_install
inherit distutils-r1
DESCRIPTION="Python client for Docker"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64"
IUSE_A=( test
ssh
)
CDEPEND_A=( )
DEPEND_A=( "${CDEPEND_A[@]}"
"dev-python/setuptools[${PYTHON_USEDEP}]"
)
RDEPEND_A=( "${CDEPEND_A[@]}"
"dev-python/urllib3[${PYTHON_USEDEP}]"
"dev-python/requests[${PYTHON_USEDEP}]"
"dev-python/six[${PYTHON_USEDEP}]"
"dev-python/websocket-client[${PYTHON_USEDEP}]"
"$(python_gen_cond_dep '>=dev-python/backports-ssl-match-hostname-3.5[${PYTHON_USEDEP}]' 'python2_7' )"
"$(python_gen_cond_dep '>=dev-python/ipaddress-1.0.16[${PYTHON_USEDEP}]' 'python2_7' )"
"ssh? ( dev-python/paramiko[${PYTHON_USEDEP}] )"
)
inherit arrays