You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
923 B

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=python-dockerpty
  3. PKG_VERSION:=0.4.1
  4. PKG_RELEASE:=3
  5. PYPI_NAME:=dockerpty
  6. PKG_HASH:=69a9d69d573a0daa31bcd1c0774eeed5c15c295fe719c61aca550ed1393156ce
  7. PKG_MAINTAINER:=Javier Marcet <javier@marcet.info>
  8. PKG_LICENSE:=Apache-2.0
  9. PKG_LICENSE_FILES:=LICENSE.txt
  10. include ../pypi.mk
  11. include $(INCLUDE_DIR)/package.mk
  12. include ../python3-package.mk
  13. PYTHON3_PKG_SETUP_ARGS:=
  14. define Package/python3-dockerpty
  15. SECTION:=lang
  16. CATEGORY:=Languages
  17. SUBMENU:=Python
  18. TITLE:=Python library to use the pseudo-tty of a docker container
  19. URL:=https://github.com/d11wtq/dockerpty
  20. DEPENDS:=+python3-light +python3-openssl +python3-six
  21. endef
  22. define Package/python3-dockerpty/description
  23. Python library to use the pseudo-tty of a docker container
  24. endef
  25. $(eval $(call Py3Package,python3-dockerpty))
  26. $(eval $(call BuildPackage,python3-dockerpty))
  27. $(eval $(call BuildPackage,python3-dockerpty-src))