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.

50 lines
1.2 KiB

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=docker-compose
  3. PKG_VERSION:=1.28.4
  4. PKG_RELEASE:=1
  5. PYPI_NAME:=docker-compose
  6. PKG_HASH:=681aca74e70e238ae43c810a62f471b645942f0ce97b6a0ca375fcb64f3aca85
  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:=utils
  16. CATEGORY:=Utilities
  17. TITLE:=Docker Compose
  18. URL:=https://github.com/docker/compose
  19. DEPENDS+=+docker \
  20. +python3-light \
  21. +python3-cached-property \
  22. +python3-distro \
  23. +python3-distutils \
  24. +python3-docopt \
  25. +python3-docker \
  26. +python3-dockerpty \
  27. +python3-dotenv \
  28. +python3-jsonschema \
  29. +python3-logging \
  30. +python3-openssl \
  31. +python3-pkg-resources \
  32. +python3-requests \
  33. +python3-texttable \
  34. +python3-websocket-client \
  35. +python3-yaml
  36. endef
  37. define Package/docker-compose/description
  38. Multi-container orchestration for Docker
  39. endef
  40. $(eval $(call Py3Package,docker-compose))
  41. $(eval $(call BuildPackage,docker-compose))
  42. $(eval $(call BuildPackage,docker-compose-src))