# 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 ~arm64"
IUSE_A=( doc test )

CDEPEND_A=( )
DEPEND_A=( "${CDEPEND_A[@]}"
	"dev-python/setuptools[${PYTHON_USEDEP}]"
	"doc? ("
		"dev-python/recommonmark[${PYTHON_USEDEP}]"
		">=dev-python/sphinx-1.4.6[${PYTHON_USEDEP}]"
	")"
)
RDEPEND_A=( "${CDEPEND_A[@]}"
	">=dev-python/docker-pycreds-0.4.0[${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' )"
)

inherit arrays

python_compile_all() {
	if use doc
	then
		sphinx-build docs html || die "docs failed to build"
		HTML_DOCS=( html/. )
	fi
}