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.

51 lines
1.2 KiB

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=docker-compose
  3. PKG_VERSION:=1.26.2
  4. PKG_RELEASE:=1
  5. PYPI_NAME:=docker-compose
  6. PKG_HASH:=576b0f81d1a1325941b3ce3436efd51f28b9ecd85b10dd6daa7d51793e187b30
  7. PKG_MAINTAINER:=Javier Marcet <javier@marcet.info>
  8. PKG_LICENSE:=Apache-2.0
  9. PKG_LICENSE_FILES:=LICENSE
  10. include ../../lang/python/pypi.mk
  11. include $(INCLUDE_DIR)/package.mk
  12. include ../../lang/python/python3-package.mk
  13. PYTHON3_PKG_SETUP_ARGS:=
  14. define Package/docker-compose
  15. SECTION:=lang
  16. CATEGORY:=Languages
  17. SUBMENU:=Python
  18. TITLE:=Docker Compose
  19. URL:=https://github.com/docker/compose
  20. DEPENDS+=+docker-ce \
  21. +python3-light \
  22. +python3-cached-property \
  23. +python3-distro \
  24. +python3-distutils \
  25. +python3-docopt \
  26. +python3-docker \
  27. +python3-dockerpty \
  28. +python3-dotenv \
  29. +python3-jsonschema \
  30. +python3-logging \
  31. +python3-openssl \
  32. +python3-pkg-resources \
  33. +python3-requests \
  34. +python3-texttable \
  35. +python3-websocket-client \
  36. +python3-yaml
  37. endef
  38. define Package/docker-compose/description
  39. Multi-container orchestration for Docker
  40. endef
  41. $(eval $(call Py3Package,docker-compose))
  42. $(eval $(call BuildPackage,docker-compose))
  43. $(eval $(call BuildPackage,docker-compose-src))