Bugfixes: - Fix SSH port parsing when shelling out to the ssh client Signed-off-by: Javier Marcet <javier@marcet.info>
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
include $(TOPDIR)/rules.mk
|
||
|
||
PKG_NAME:=python-docker
|
||
PKG_VERSION:=4.4.3
|
||
PKG_RELEASE:=1
|
||
|
||
PYPI_NAME:=docker
|
||
PKG_HASH:=de5753b7f6486dd541a98393e423e387579b8974a5068748b83f852cc76a89d6
|
||
|
||
PKG_MAINTAINER:=Javier Marcet <javier@marcet.info>
|
||
PKG_LICENSE:=Apache-2.0
|
||
PKG_LICENSE_FILES:=LICENSE
|
||
|
||
include ../pypi.mk
|
||
include $(INCLUDE_DIR)/package.mk
|
||
include ../python3-package.mk
|
||
|
||
PYTHON3_PKG_SETUP_ARGS:=
|
||
|
||
define Package/python3-docker
|
||
SECTION:=lang
|
||
CATEGORY:=Languages
|
||
SUBMENU:=Python
|
||
TITLE:=A Python library for the Docker Engine API
|
||
URL:=https://github.com/docker/docker-py
|
||
DEPENDS:=\
|
||
+python3-light +python3-distutils +python3-logging \
|
||
+python3-openssl +python3-paramiko +python3-six +python3-requests \
|
||
+python3-websocket-client
|
||
endef
|
||
|
||
define Package/python3-docker/description
|
||
A Python library for the Docker Engine API. It lets you do anything the
|
||
docker command does, but from within Python apps – run containers manage
|
||
containers, manage Swarms, etc.
|
||
endef
|
||
|
||
$(eval $(call Py3Package,python3-docker))
|
||
$(eval $(call BuildPackage,python3-docker))
|
||
$(eval $(call BuildPackage,python3-docker-src))
|