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.

46 lines
1.2 KiB

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=awscli
  3. PKG_VERSION:=1.16.75
  4. PKG_RELEASE:=1
  5. PYPI_NAME:=$(PKG_NAME)
  6. PKG_HASH:=8d96ec0de325ea8271cc6aa95b7392bbf548ec4aabd3ffbcdc0619b64edd4a45
  7. PKG_MAINTAINER:=Daniel Danzberger <daniel@dd-wrt.com>
  8. PKG_LICENSE:=MIT
  9. include ../pypi.mk
  10. include $(INCLUDE_DIR)/package.mk
  11. include ../python3-package.mk
  12. define Package/python-awscli/Default
  13. SUBMENU:=Python
  14. SECTION:=lang
  15. CATEGORY:=Languages
  16. TITLE:=awscli
  17. URL:=https://github.com/aws/aws-cli
  18. endef
  19. define Package/python3-awscli
  20. $(call Package/python-awscli/Default)
  21. DEPENDS:=+PACKAGE_python3-awscli:python3 \
  22. +PACKAGE_python3-awscli:python3-yaml \
  23. +PACKAGE_python3-awscli:python3-pyasn1 \
  24. +PACKAGE_python3-awscli:python3-botocore \
  25. +PACKAGE_python3-awscli:python3-rsa \
  26. +PACKAGE_python3-awscli:python3-colorama \
  27. +PACKAGE_python3-awscli:python3-docutils \
  28. +PACKAGE_python3-awscli:python3-s3transfer
  29. VARIANT:=python3
  30. endef
  31. define Package/python3-awscli/description
  32. This package provides a unified command line interface to Amazon Web Services.
  33. .
  34. (Variant for Python3)
  35. endef
  36. $(eval $(call Py3Package,python3-awscli))
  37. $(eval $(call BuildPackage,python3-awscli))
  38. $(eval $(call BuildPackage,python3-awscli-src))