30 lines
980 B
Bash
30 lines
980 B
Bash
# Template file for 'python-docker'
|
|
pkgname=python-docker
|
|
version=3.1.1
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="docker-${version}"
|
|
build_style=python-module
|
|
pycompile_module="docker"
|
|
replaces="python-docker-py>=0"
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python-requests python-six python-websocket-client python-ipaddress
|
|
python-backports.ssl_match_hostname python-docker-pycreds"
|
|
short_desc="Python2 library for the Docker Engine API"
|
|
maintainer="Sergi Alvarez <pancake@nopcode.org>"
|
|
homepage="https://github.com/docker/docker-py"
|
|
license="Apache-2.0"
|
|
distfiles="${PYPI_SITE}/d/docker/docker-${version}.tar.gz"
|
|
checksum=462165ca6367f802280684ab44e581cd2efba8995d78d07ea994e42194927c3b
|
|
|
|
python3-docker_package() {
|
|
noarch=yes
|
|
pycompile_module="docker"
|
|
replaces="python3-docker-py>=0"
|
|
depends="python3-requests python3-six python3-websocket-client python3-docker-pycreds"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
}
|
|
}
|